Click to See Complete Forum and Search --> : Visual C++ Programming


Pages : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 [649] 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013

  1. Deleting Files in MFC FormView
  2. CListCtrl+Sort
  3. CListCtrl
  4. Trouble indexing thru bmp pics in CImageList:(0,4,8 not 0,1,2)?
  5. linking mfc
  6. XML schema
  7. pMainFrame->LoadFrame(IDR_MAINFRAME) problem
  8. "Cannot Open Any More Tables"
  9. Unable to open recordset
  10. Using CImageList: can't drag pictures.
  11. SendInput Query?
  12. string is not updated
  13. Getting path from current document from PPT
  14. disable device in win2k and winxp
  15. enum type in class
  16. Moving Objects
  17. SetConsoleCtrlHandler() problem
  18. plz help with CListCtrl sorting
  19. I have a problem about ID_FILE_SAVE and ID_FILE_PRINT
  20. could you help me ?thanks
  21. splash problem
  22. How to link a library statically?
  23. WaitForSingleObject
  24. Invoke a CView from a Dialog
  25. How do I change the minimal size of a popup window
  26. how to send response from a server?
  27. where i can get the events ids of MSWord
  28. Question about Window position...
  29. error message
  30. CListCtrl::SortItems
  31. printing raw printer codes to a serial printer
  32. hw to video from vc++ appl without saving it into file but displaying it directly ..
  33. How to use 128-Bit Crypto-API?
  34. Example of SetWindowshookex
  35. CHtmlView memory leak
  36. A problem with GetActiveObject()
  37. CDialog consuming a lot of ressources (memory)
  38. Ownerdrawn listbox gives me ASSERT
  39. for error debugging
  40. CPropertySheet & tab control
  41. mp3 player
  42. How 2 get fast input from user (password)
  43. Print Problems...
  44. Defining how a class behaves as an expression?
  45. WM_ERASEBKGND Handler
  46. Getting the Day of the Week Problem
  47. How to prevent menubar greying?
  48. declaration help...
  49. How do I find cursor position in a edit box
  50. looking in 2 ListCtrl
  51. Minimizing modeless dialog to taskbar
  52. Array of a class in a class
  53. Child Dialog on SDI App
  54. Why does this work on NT but not on Win95?
  55. Accelerators stopped working
  56. can't find any info on <memory> which is on a program I am studying
  57. CSplitterWnd
  58. GetWindowPlacement() help
  59. adjusting the view size
  60. Suggestions for Moving Objects
  61. TCP Socket
  62. MYSQL ++ Wrapper
  63. Child modal dialog goes behind the parent window ????
  64. graphics function definitions in MFC
  65. Activate main Menu Bar w.out clicking the root item
  66. keep-alive mechanism
  67. Can I make the Edit's background white when I set its property:Only-Read
  68. socket
  69. Implementing TabIndex
  70. Smart Card Routines
  71. WM_PAINT handler
  72. static text question.
  73. Proxy and winsock.I've posted it for many days.No one help me?
  74. Porting unix socket app to Visual
  75. plese help with class
  76. Company name?
  77. sql_create in header file
  78. static caption
  79. change property at runtime
  80. subclass a button fail :(
  81. RegCreateKeyEx
  82. Probs with testing serialization
  83. Global SetWindowsHookEx for WH_MOUSE
  84. Printer Font
  85. can I handle the handle
  86. How can I effectively change a string into HEX?
  87. Errors declaring an object
  88. Thread
  89. STL Map A Warning and maybe more...
  90. Read & write file
  91. Why does my icon get black BG where it should B transparent ?
  92. about SMS Gateway
  93. How to Convert CString to char[]
  94. Can I let each item in my ListBox have an Icon in front of the Item text
  95. ATL How to retrieve variant data?
  96. Modal child dialog goes behind its parent window ?????
  97. socket binding failed
  98. Help Needed!!
  99. Wm_copydata
  100. Wher is my Share?
  101. Html view
  102. doubts in initinstance and cwinapp instantiation
  103. Using "Drag and Drop" in Extended Selcted ListBox.
  104. moving controls
  105. Howto insert CEdit in static splitter?
  106. CListControl
  107. Why IExtractIcon fails?
  108. ReadOnly!
  109. Lost ClassView
  110. problem about shellexcute!
  111. Html problem
  112. How can I capture screen with dragging image?
  113. Default EMail handler
  114. CString problem
  115. CListCtrl selecting items
  116. ATL Composite control's view
  117. GetParent/Container in ActiveX
  118. How to use 128-Bit Crypto-API?
  119. How to get booting disk information?
  120. Mf_separator
  121. How can I capture screen with dragging image?
  122. Sdi Html
  123. how to do plugin to my VC++ project's application??
  124. component creation in C++
  125. Synchronization data
  126. delete file
  127. How to get the color values for a dib with 16 bits-per-pixel
  128. application-crash caused by filecopy
  129. Static linked library
  130. COM optional paramter
  131. Image Sharing
  132. sscanf, white space question
  133. Sending text(string) as popup message
  134. Shell Hooking
  135. How to disable the "All" radio button in Print dialog?
  136. Connect to database
  137. Reading sectors from hard disk in Win NT...??
  138. Load a data file as a matrix
  139. CHtmlView events
  140. win32, listview and dialog box please HELP !
  141. Creating OLE controls in the BE
  142. String to function
  143. LoadIcon question
  144. Language code 2 language name
  145. Language integration
  146. How to put file in a resources of exe?
  147. Error:80004003 (Invalid pointer)
  148. hw to set the Yield member of the CAPTUREPARMS structure to TRUE
  149. Window Position
  150. need help for writing callback functions
  151. How to open a process in a MDI
  152. RClick on CListCtrl
  153. Diet 4 my app...
  154. Adding new section (empty or anything) into PE File(exe or dll)
  155. I have two choices in the menu
  156. Trap Ctrl+Alt+anyChar in Dialog app
  157. how do you read a font file (.fon) type?
  158. Message Trapping
  159. Recursive search
  160. Case study #3 : First chance exception in map serialization
  161. output: console -> window
  162. slider control
  163. Simple One
  164. CEdit, how can I know what current positon while editing ?
  165. TrackPopupMenu works in WinME and above but no in Win98
  166. Toolbar position
  167. Mappoint Control with VC++
  168. do i need accept in this source code?
  169. How to automate file upload?
  170. CListView with CRichEdit view
  171. windows.h
  172. CTreeCtrl Searching
  173. Debbuger Application Using MFC ?
  174. COM+ object contexts
  175. Date Time Control
  176. Theads, why won't they compile???
  177. make a HELP in VC++
  178. Adding My App to Firewall Whitelist
  179. Question on pointer functions
  180. Active Document Servers
  181. ActiveX version update
  182. 0xb300 0xd55c 0x00-> string
  183. Dialog sizing and system menu
  184. Retrieve the name of a server
  185. Problem with SetWindowPos
  186. toolbars on the same line
  187. Client Server Architecture
  188. I'm in doubt :( plz check
  189. Dumb Question - Please Excuse
  190. accesing a WinNT running process
  191. Real time plots and meters
  192. application-crash caused by filecopy
  193. retrive CPU temperature/Fan speed etc
  194. Uses_conversion
  195. class array:public fraction
  196. Unable to SetBitmap on a CButton
  197. winsock problem
  198. How to make that button catch the Enter button
  199. Listbox to appear upside down (like quake3 console)
  200. Encounter a obstacles,Can you help me?
  201. How to Delete the current record using ADO..
  202. How to know about the number of instances of a Dialog
  203. Creating a hash-function for CMap<CString, CString, UINT, UINT>
  204. How 2 get rid of mfc70.dll ?
  205. about font
  206. Implementing Context Sensitive Help
  207. How can I send images to browser from ISAPI
  208. MFC Common Dlg question
  209. How to convert my birmao files to ASF?
  210. How can i call parameterized function of ISAPI Application
  211. How to manage big VC++ Project
  212. How can i get responce from ISAPI App in MFC Application
  213. winsock over ras
  214. DTD Parser
  215. Multitasking
  216. diff. between <cstring> and <string>
  217. Mcp,mcsd?
  218. Convert MMI from English to Japanese
  219. main Application question
  220. Thread problem
  221. Calling non static in a static function
  222. Write text/.ini file with embedded VC++
  223. Inserting ActiveX Controls in non MFC application
  224. GDI grow very fast
  225. how can I make dockable for toolbar on dialog box
  226. For MFC Gurus
  227. Control initialization
  228. Help me solve this problem
  229. Call to a funtion
  230. Version number for .Net dlls/exes
  231. Deleting DC and Bitmap deselecting
  232. Idiots Guide to direct show
  233. urgent: question about Word Automation
  234. Spying browser controls ?
  235. MoveNext problem with MDB
  236. Problem with updating mdb
  237. How to clear a memory bitmap (CDC)??
  238. loading HTML page
  239. dynamic report creation
  240. Logical error?
  241. ICQ Lite - Buttons
  242. Printer dialog
  243. SendMessage Notifications accoss Network
  244. typedef not working
  245. logical drives
  246. owner of a file
  247. ShellExecute question
  248. Thread and serial communication help
  249. Optional parameters facility in methods of COM DLL
  250. I need help on combo boxes, im a beginner