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. Pixeltrouble
  2. CFile & full disk crash me
  3. Differences in Code for different OS (ie. NT, WIN95, WIN98)
  4. Video Capture
  5. program to prefix member variables w/ 'm_' ?
  6. Ole Automation problem
  7. Code snippet for RegEnumKeyEx function
  8. Porting normal exe to MFC Appwizard (Dialog based)
  9. MFC ActiveX Events not captured in Power Builder
  10. Difference between Internet and Intranet?
  11. Invalidating a dialog
  12. How to register COM server.
  13. string class in C++
  14. string class in C++
  15. Distinct.com software?
  16. What is winoldap
  17. e-commerce Developers
  18. HTML Page Icons
  19. NT service debugging
  20. Is this more OOP
  21. Saving toolbar position
  22. Check Box in Tree Control
  23. MFC Gurus: Not fair. I'v helped many. No body helped me!
  24. make default button
  25. CPropertySheet wizard & Maximize button
  26. setfocus
  27. Getting a Files Version
  28. Maximize and restore
  29. TSRs
  30. DEVMODE STRUCTURE
  31. link problems ...
  32. email program
  33. HTML WorkShop
  34. [hook] Problems with ShellProc. Global variables freezed!
  35. Bitmap on a button
  36. Button on CDialogBar
  37. How can I load bitmap in dialog during runtime?
  38. Linking DLLs using implicit linking
  39. Changing Dialog Box Title
  40. control fails to register
  41. LoadToolBar() vs. LoadBitmap() + SetButtons()
  42. Toolbar position
  43. CHtmlview (Multiple Window, WS_VISIBLE style)
  44. Problems with WM_SYSCOMMAND and CPropertySheet
  45. Distinct tookkit
  46. Token rings
  47. dynaset
  48. How to autoplay a CD-ROM
  49. Message maps in derived base classes?
  50. HELP! Printing Nothing! Printing Something!
  51. LNK2005 help
  52. NT Event Logging
  53. Dedug help
  54. Navigating between CMainfram & CView
  55. CDialogBar
  56. Internationalization issues
  57. how to show folder options?
  58. special font display
  59. Animation Cursor
  60. ATL Shell Extensions
  61. Cannot Access ClassView Information File
  62. Quick Format Question
  63. how to Extend Static Text size limit
  64. HELP Get a List of valid COM ports??
  65. Change Hilight Menu color on mouseover
  66. ComboBox drop height
  67. How to use the CreateProcess function
  68. Parallel port access
  69. Debugging Problems
  70. Help on opening the default web browser
  71. Serialization Question
  72. How can I measure the time a algorithm need to execute?
  73. ISAPI question, how to upload file?
  74. SQL and Access files
  75. Locking An Array
  76. DirectX Components
  77. Releasing control to Windows
  78. Caption
  79. How to use Network connections between two (or more) Windows 9x PCs
  80. How and Where do i define CALLBACK functions in MFC?
  81. c
  82. Pointer to CApp, CDoc
  83. Windows HelpFiles .hlp
  84. How to convert MFC Application to MFC DLL
  85. Elegantly stopping a thread
  86. HELP!! Bitmap in DB
  87. CListCtrl
  88. ATL vs. MFC
  89. Searching for a specific directory??
  90. How to work with arrays of classes?
  91. Err: Unable To Create Empty Document
  92. Checking Menuentries
  93. Date and Time handling
  94. How to use LZCopy to decompress the compressed powerpoint picture stream?
  95. how I can draw simples x-y graph in Vc++
  96. How can I use some MFC classes(such as CObList) as parameter in my ATL method?
  97. How to set number of copies to print?
  98. Showing modal dialog in app ExitInstance()
  99. Debugging Component
  100. How get GMT Time?
  101. lcc dll, please help
  102. Object serialization
  103. VB-COM
  104. VB-COM
  105. retrieving file/version info
  106. Release version Problem
  107. Dialog with background bitmap
  108. ClistCtrl in a dialog
  109. variables problem
  110. How to show a Remote Server window!!!
  111. Accelerators for an ActiveX control
  112. Deleting Files
  113. Problems with ReBar
  114. How diable/enable an menu item? Troubles
  115. SDI with splitter
  116. Cedit & color
  117. Unicode in the string table
  118. Print file from code
  119. Weird question??
  120. Disk Format
  121. Calling an object method from a DLL
  122. CallBack
  123. Calling an object method from inside a DLL
  124. OLE Automation Limitations?
  125. VARIANTs
  126. How to make a LIB from an EXE file
  127. How to avoid creating multiple instance of an application.
  128. Accelerators in a property page
  129. Calling a COM Object from another thread
  130. Exceptions
  131. Need to visually simulate button press
  132. Activate Window
  133. Window Messages
  134. Context Help on Property Sheet
  135. Can do in VB... How to do in C++???
  136. Message Maps / ATL
  137. How do we create a Modal Window not Dialog Box.
  138. pressing ESC or Escape key should exit application
  139. Clearing the screen in a console windows
  140. MS Word 2000 Events
  141. OLE & Power Builder
  142. W4 warning - throwing CObject derived class as exception
  143. Strange.
  144. ISAPI and Sockets
  145. URGENT: Help for OpenFileDialog
  146. Avoid more than one process
  147. Memory question
  148. Imp: Converting to Access 2000 databases using MFC
  149. Registering file types for dialog applications
  150. Screen Saver
  151. Mouse-/Key-States
  152. Something with contructors
  153. IMP: Database Conversion
  154. Executable file
  155. Switching language on-the-fly
  156. HIWORD
  157. Free DBMS C++ class?
  158. Small Window to be displayed on same position, while background scrolls
  159. Any way for Combobox Dropdown Window showing a treeview ?
  160. Icon in the quick tool bar
  161. StarOffice(Sun) vs Office(Microsoft)
  162. Background
  163. Background
  164. RTF printing
  165. SplitterWnd
  166. Substitute open file dialog?
  167. What happens when user hit a hyperlink?
  168. Something with DEBUG_NEW
  169. keyboard input focus
  170. Property page with tabs at bottom -- initial tab show problem
  171. Compilation Options
  172. Print Dialog Questions
  173. Notifing MainFrane from a Spliiter View
  174. WIN32 file access problems
  175. VC++ Compilation
  176. EnableShellOpen() and DDE
  177. Text in Prop Sheet Highlited
  178. ListView Cotnrols
  179. fstream question ...
  180. DLL
  181. File Icons
  182. [h] Landscape only comes up the 2nd time around!
  183. Base Class
  184. How to get notified when toolbar docked/undocked
  185. Passing data between classes(Dialog)
  186. How can I get an owner draw button with BS_PUSHLIKE behaviour?
  187. CoInitialize, CoUninitialize, OLE DB
  188. How to use the CFindFile::FindFile() function?
  189. " why sometimes the window will close immediately? "
  190. MIDL question
  191. initializing value
  192. ATL and MFC
  193. Resizing controls with dialog
  194. Find in ascii files.
  195. Updating window after switching views
  196. Resizing a Form
  197. Load DLL
  198. Mysterious Recordset
  199. CAsyncSocket::OnReceive not called ...
  200. read edit boxes in windows
  201. system("cls")
  202. DLL in Win 95 and 98
  203. CPU temperature from VC++?
  204. URGENT: Sorting of Storages during persistence
  205. A Problem with dialogs
  206. CEdit & CListCtrl
  207. Disable Autorun
  208. Calling an ISAPI Extension
  209. NEW to VC++
  210. Problem? Cannot delete records from table using «SQLExecDirect» with ODBC drivers V4.x
  211. customizing fonts in edit boxes
  212. Number of sectors for a CD
  213. Programmatically Mapping Logical Drives
  214. Problem with ODBC Jet DLL Version 4.x
  215. Source code for Occurances
  216. C++
  217. frustrated with old code
  218. Artificially click
  219. static member function
  220. VC++ Libs
  221. How to cover the task bar with a window?
  222. determining what data you've received through serial port..
  223. TrackPopupMenu
  224. Single instance
  225. Is MSCOMM control interrupt driven?
  226. How to get the appliction's location just like App.Path in VB?
  227. Dialog in main thread deactivated ...
  228. WinInet images
  229. Help me - TAPI...
  230. 2 image lists for a listview
  231. NT User Creation
  232. Can you override the minimized function?
  233. Money
  234. How to make my view appear in a remote mode
  235. Using Edit control ??
  236. How to create a process as an document in MDI application.
  237. odbc and isapi extension
  238. CListCtrl Filters
  239. Network Access
  240. How to access registory of other machine on LAN?(winNT)
  241. Pointer from Frame to View
  242. Invoke a new window through the menu
  243. pass data from the CDocument to CDialog
  244. component (bmp image) can't be display on the print preview
  245. How can I get accelerators to work in Dialog-based app?
  246. Change button's caption
  247. Stop window moving
  248. Exceptions That Don't Catch?!?
  249. TreeControl View like the Explorer History
  250. how to create a shortcut on desktop in vc