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

  1. How to cancel during serialization on CDocument
  2. DeleteAllItems SOLUTION
  3. ATL COM
  4. Calling VB DLL from VC++ 4.0
  5. Nudging a CD-ROM drive to spin up
  6. ODBC connection
  7. SHGetFolderPath
  8. using a derived class in a dialog
  9. files
  10. Does my socket application affect TCP/IP (Ethernet) performance?
  11. hdc and function
  12. Information about Video Card
  13. COleVariant
  14. Help on using ON_UPDATE_COMMAND_UI in CFileDialog
  15. [Help] add Auto Scroll onto IE band object.
  16. striked text
  17. How to read incoming midi data from a keyboard(YAMAHA)
  18. Printing
  19. Windows CE - Strange crash
  20. ?-new user Visual C++ help-?->bitmap game board
  21. help on CDO/MAPI
  22. Help me if you can, I'm feeling down and I do appreciate you being round!
  23. Checking Video Memory
  24. DCOM
  25. EnableMenuItem
  26. Color
  27. Hooking
  28. How can I create a table with a memo field by using SQL ?
  29. Windows Messages
  30. Disabling Specific ToolBar Btn
  31. Sending and Recieving
  32. Bring window to foreground!
  33. NT services question
  34. MDI Frame
  35. About HotKey define?
  36. Data from Mic
  37. ShellExecute
  38. What do PROFILE can do?
  39. How to view a TGA file?
  40. must use cpp ??
  41. Dialog data exchange problem
  42. Protected array error C2558
  43. Failed to Startup Program in IE 3.X
  44. picture in a dialog
  45. How to run in DOC
  46. inter-process comm
  47. Have to call OnDraw twice?
  48. How to run in DOC?
  49. Calling sytem beep in VC++ in MFC
  50. Appbars-like window
  51. Center text
  52. Finding MX IP address
  53. What's wrong with this code? (center on clientRect)
  54. one View, one Doc, different datas
  55. Migrating From MS Access to SQL Server
  56. Can we get the password of the user or owner running a process?
  57. ActiveX problems
  58. CObject::AssertValid()
  59. List Control & Colors
  60. Urgent!! How do i filter the directories in a dialog?
  61. Seriell port UART16550 controlling via shared-interrupt
  62. Getting File Path.
  63. Why it cannot run well on Win98(japanese version)?
  64. union
  65. printing
  66. a problem about using editview to load text file
  67. URGENT !
  68. Retyping dialog buttons
  69. Is Workstation Locked on NT
  70. Resource tool
  71. Getting text datatype from SQL Server with MFC ODBC library
  72. Case-Sensitivity in Jet Databases
  73. fpieee_handler
  74. WebBrowser context menu
  75. WebBrowser IDocHostUIHandler
  76. Synchronism problem with CListView
  77. How to receive drop notifications for the DHTMLEdit control ???
  78. Scrolling
  79. Game Port
  80. I am "shell execut"ing another application..I need to know the life time of the second application!!
  81. Printing a Dialog
  82. COM models
  83. Binary Behavior "direct access"
  84. System global classes
  85. Creating patches
  86. Accessing the Dialog-Frame from child
  87. HELP! remote watching
  88. How to set the Printer settings
  89. Best way to dynamically change the tooltip text of a toolbar?
  90. DCOM Proxy doesn't make sense
  91. Developer Studio Add-In
  92. Registry questions
  93. Menu Item
  94. Regular Expression
  95. Regular Expression
  96. ScrollBars for a CListCtrl or CListBox
  97. Serialization and CObList problems
  98. spawnl
  99. EM_GETSEL does not include newlines ;(
  100. lost accuracy
  101. CTreeCtrl / CTreeView
  102. Modal CFormView inside MDI app
  103. Stack Overflow
  104. Application Setup Wizard
  105. ActiveX - help needed.
  106. Urgent SetTimer Problem ...
  107. Adding something to right-click menu
  108. #### Does anyone have the command language spec for PCL 6?? ####
  109. Dialog Based App and CToolBar
  110. Switching between stringtables
  111. How do you set the selection in a single selection List control
  112. Dynamically loading ActiveX control
  113. Execute another app
  114. Regarding Serialization.
  115. Serialization using CObArray.
  116. Selecting app by clicking on document
  117. Arrays & Vectors in C++
  118. CDatabase in CHttpFilter
  119. Need Help Printing MFC
  120. ActiveX Problems...
  121. How to know if a ListBox has a scrolling bar or not ?
  122. Hacking API Calls
  123. VB ActiveX Distribution
  124. Edit control inside CFormView
  125. Tab order
  126. Making a CWnd a drop target
  127. VB ActiveX Help
  128. how to capture the mouse click on browser hover
  129. Sending message to CDocument derived class member
  130. ClassView
  131. unsigned char
  132. games in C++
  133. _variant_t question
  134. Multiple view displaying !
  135. Modal Dialogs
  136. nafxcw and nafxcwd
  137. creating a web browser
  138. extern "C"
  139. How to Create a WINDOWS Control Panel Application?
  140. very big problem
  141. Passing array of floats to Com server.
  142. Please Advises - checkers like game board
  143. ATL Object wizard showing the empty window
  144. ScrollWindow/Printing
  145. CHtmlView and "Server Busy" dialog
  146. PAINTing Problems
  147. How to do this ???
  148. CString to _variant_t problem
  149. Hiding Applications from Taskbar
  150. WIN32 Printing help needed
  151. preventing certain values in cin >>
  152. clipboard and windows ce
  153. how to recognize clients in internet market?
  154. How do I create a Multi Undo in a dialog format?
  155. How do you I open Outlook?
  156. Question about ClassWizard
  157. Threads with dialog
  158. global variable
  159. text color in listbox!
  160. Help With Console Apps
  161. Coloring text in multiple edit controls
  162. CFile with struct?
  163. mfc dll
  164. fill out forms
  165. how to change dir
  166. Debugging Release-Version
  167. CComboBox question
  168. MFC classname???
  169. Problem with InitiateSystemShutdown
  170. C strings (char *) vs C++ <string>
  171. Interface
  172. Tooltip differences between win95 and win98?
  173. Did you encounter the this ATL object wizard problem
  174. interface
  175. tree control
  176. DialogBox
  177. Circular Buffer?
  178. Japanese characters in CEdit or CRichEditCtrl?
  179. Id for a row in CListCtrl
  180. how to access the different frames of animated gif
  181. How do I find out version of MSOutlook installed in the system?
  182. Scroll Bar appearance
  183. SetTextColor doesn't respond
  184. Optimizing Redraw/Refresh When Displaying High-resolution images
  185. how to distinguish messages from two dialog of the same type
  186. how to distinguish messages from two dialog of the same type
  187. Message handling of CDocument
  188. NON MFC Methods
  189. CoCreateInstanceEx(..)
  190. Connecting two databases
  191. Displaying the dialog in maximize form
  192. COM Server Shutdown
  193. CoCreateInstanceEx(..) Headache!
  194. about Free rotation by mouse, GL
  195. Can i get no. of bytes received and sent information(modem).
  196. TCP/IP Sockets
  197. MSMQ on Win2000 Beta 3
  198. Key Codes
  199. Notifications of ListView control URGENT!
  200. dialog message
  201. getting video string
  202. Display bitmap in MDI mainframe window
  203. code of CDBException error
  204. code of CDBException error !
  205. Display a DIB in 65536 color mode
  206. How to bring popup help on click
  207. Windows Sockets and Subnet Mask (TCP/IP)
  208. why i can't call the func?
  209. Toolbar and child dialog and Messages ??
  210. TFTP-Server / BootP-Server for Windows
  211. Accessing DSO from Visual C++
  212. cannot free !
  213. Problems with child dialog and toolbar Messages
  214. CWnd modal
  215. Static Splitter
  216. How to create an animated scrolled list?
  217. Problem with a ListView
  218. Passive FTP
  219. read/write file
  220. How to implement IDocHostUIHandler ???
  221. Print to fit page??????
  222. CreateFile() Problem
  223. roguewave
  224. CDaoRecordSet
  225. ListView & Keyboard Intercept
  226. Printer drivers in Visual C++
  227. Resouces in dll's and exe files
  228. About Microsoft help workshop
  229. file update w/o rewriting the big whole file
  230. How to detect if Active Desktop is installed
  231. Accelerator!
  232. Detecting an active application
  233. Radio MenuItem
  234. PropertyPage/PropertySheet
  235. Update Briefcase programatticaly?
  236. Invisible to NT Taskbar
  237. VB Dll in VC++ 4.0
  238. TCP Keepalives
  239. Converting CString to int.
  240. Dialog,Listbox system fonts
  241. Calling VB Dll from VC++ 4.0
  242. Drop problem with CRichEditCtrl
  243. IShellBrowser Interface on Explorer
  244. CListCtrl
  245. Playing wav file.
  246. Where can I find of the Control Class Name for MFc ?
  247. string to BSTR conversion
  248. MFC40.DLL not found
  249. SMTP...
  250. Implementing connection points