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. Reading a Image File.
  2. Send a file via FTP
  3. Dialog
  4. process creation time in win95
  5. how can I automate it(e-mail)?
  6. How can I add a close button to a CWnd derived class ?
  7. Changing Font Size and Colors
  8. Need help with CAnimateCtrl please..
  9. MFC without Doc-view
  10. OnNewWindow2
  11. How to select text from more than one control in a dialog box
  12. Memory Leak
  13. Validation Problem with ActiveX
  14. ScrollBar in a List View
  15. How can I serialize a CBitmap object?
  16. AVI PLAYER
  17. CHtmlView or Web browser control
  18. How to create a background window for multiple dialogs?
  19. TOOLTIP TROUBLE AGAIN!!!!!!!!!!!!
  20. PLEASE HELP ! How to: Passing info from modal dialog to parent COM object?
  21. Serialize a CBitmap
  22. How can I perform transactions using RDC control?
  23. Disabling NT shutdown temporarily...
  24. Adding string to ComboBox
  25. Icon isn't shown
  26. Off: Icon and program name
  27. How to make *.bak file of *.cpp in VC6.0 while saving?
  28. How to work with COPY-CUT-PASTE?
  29. Listbox background color
  30. Notification of a spawned process that has been terminated
  31. Documentation to OLE Automation
  32. C++ and Delphi
  33. Remote Logon
  34. Games developing
  35. icons
  36. How do I make an array of CStrings?
  37. Add variou controls dynamically to a dialogbar
  38. GetMenuItemInfo function
  39. Need a Simple Example Please
  40. Modeless dialog appears, then dies
  41. saving simple graphics data
  42. Rubber banding
  43. CHtmlView & IE5 problem
  44. Problems with Deriving CStatic Class
  45. Oracle ODBC and LONG RAW field
  46. Serial Port and keyboard blocking...
  47. Excell as an embedding control...
  48. Mouse Position
  49. Parallel port access...
  50. Scan Key
  51. Rich Edit Control Selection Color
  52. Property Pages
  53. MRU List in Dialog Menu?
  54. How to initialise a timer in a SDI
  55. DLL : integer in export : unresolved external symbol error LNK2001
  56. Print
  57. Menu bar
  58. insert some information in microsoft excell
  59. Maximize a Child window in an MDI app on startup
  60. SendMessage from Thread
  61. wav files
  62. Need a little help -> please read inside...
  63. DLL linking twice in the same process
  64. Urgent : import a function in a DLL
  65. Control Inherited from CWnd, while resizing...
  66. Distributing WebBrowser control
  67. reversed z-order?
  68. File Locking
  69. problem
  70. Get Office Template Folder Location
  71. Determine if computer is high or true color
  72. Very Urgent
  73. OnKillActive/WM_KILLFOCUS
  74. Need help! (Ole DB Templates).
  75. CFile Error?
  76. change color depth of desktop
  77. Passing Parent Member Data to Child Window in MFC
  78. How to put one object in front of another object?
  79. Getting Hooked?
  80. ReadDirectoryChangesW ???
  81. File Access time in Windows 95 and 98
  82. V Urgent
  83. How can I implement the browe butter to select several file's name?
  84. How can I implement a browse butter to select several files?
  85. TerminateProcess(...) NOT WORKING???????????
  86. SendMessage with WM_CLOSE
  87. Variable height lines in a TreeControl?
  88. Mostest fastest bestest sort
  89. Bitmaps in the output screen
  90. DB2 Connection in an NT Service
  91. shared MFC
  92. how can I get a public member variable value from a different class?
  93. Rich Edit Control Help
  94. Comm Port Address
  95. Comm Port Address
  96. spiders
  97. How to Replace IE 4/5 Connect To Internet Screen?
  98. EditBox and focus
  99. VBAJET32.DLL fail to initialise
  100. integer 2 CString ???
  101. Getting the available Bins on printer on Win 95/98
  102. Reading Text From a File
  103. unwanted variable checking
  104. Please Help-Sending To Notepad Question
  105. Dialog based application
  106. buttons how?
  107. deleting files in VC++ 6 using wild cards.
  108. File Compression
  109. Clipboard Graphics
  110. Are there any good VC++ Chat rooms?
  111. Terminating thread - a better way
  112. How to change color for CDateTimeCtrl
  113. Template Link Error!!!
  114. Loading drivers
  115. How to watch data between 2 computers
  116. i'm sorry for being long.. but..
  117. Adding Icons to CListCtrl Report style
  118. Sort again
  119. Need help extracting text in CString
  120. Network programming via visual C++
  121. How can I show desktop in NT
  122. ActiveX Controls
  123. Where are shortcuts(program item or program group) stored in Windows95
  124. CallNextHookEx not working
  125. my own dialog editor?!!
  126. >>>>> ActiveX ComboBox control - PROBLEMS - HELP <<<<<
  127. How limit mouse cursor in special area?
  128. RButtonDown
  129. Creating an install wizard
  130. Intercepting WM_SETTEXT Messages from other apps
  131. Where to initial a timer in a SDI?
  132. CMyDlg dlg; crashes my app
  133. Urgent Help
  134. Install Shield question.....
  135. URgent Urgent Colr text in CListCtrl
  136. I need a Broadcast winsock sample in MFC
  137. CToolBar - Font
  138. How can i make SDI App with Tray Notification??
  139. KeyDown, KeyUp, How can I trap left right up down cursor ?
  140. How to close an application using a timer event!
  141. Problems with ComboBox control subclassed in an ActiveX
  142. >>> Problems with COMBOBOX control subclased in a ActriveX. HELP <<<<<<&l
  143. urgent, just one question
  144. Call a dialog AFTER background window appears???
  145. about global variable
  146. Deleting classes from Project
  147. Modem/Server Connection
  148. Shortcuts(Program items and Program Groups) in Windows NT 3.51
  149. Creating Handle
  150. Unable to Call the Methods of the Component
  151. Emulating keystrokes for other Apps
  152. MFC - Database Access
  153. getting the application directory
  154. I would like to know about ADO.
  155. CListBox::MeasureItem with LBS_OWNERDRAWVARIABLE
  156. Jet Parameters
  157. Multilanguage fails
  158. Could someone help me please? Simple Question SetWindowText()
  159. GURUS HELP !!!!!
  160. want a selection box routine
  161. after painting
  162. User Name
  163. How to deal with keyboard message???
  164. Why can i not execute the sample "drawcli"??
  165. Is it possible to get rid of "Server is Busy" message?
  166. Emergency... please help
  167. Application name
  168. how initalize my splitter windows's size
  169. How to change dialog's font dynamically?
  170. printing a txt file in code
  171. Proper way to access DLL functions
  172. Passing parameters to byref in MFC COM object ??
  173. CreateWaitableTimer...Help
  174. How to change backg colo of selected section in RichEditView?r
  175. cant delete memory allocated in dll in my app
  176. Dialog-moving problem
  177. Hide page in a CTabCtrl
  178. [q] Hiding Cancel and Help on a PropertyPage
  179. API
  180. Getting HTML Source Code To CString
  181. Simple Question: CEdit control on CFormView
  182. Calling DLL function from Visual FoxPro app
  183. Debug/Release differences
  184. Process Creation time in Win 95
  185. Problem in printing a doc in landscape
  186. How to change the date of a file
  187. Add icon (bitmap) to menu
  188. The RPC server is unavailable?
  189. CMap and sorting?
  190. VC++
  191. Win32 Security on Win95
  192. COM - Marshaling across threads
  193. Multiline tooltips
  194. URGENT, How to bypass the Print Dialog box
  195. Passing a function as a parameter for another function
  196. Close All Other Programs Other than mine
  197. Setting printer attributes - SetPrinter()
  198. WCHAR to char conversion
  199. Can Somebody help
  200. Disabling LIB file generation
  201. Viewing HTML
  202. ShellExecute
  203. Screen Saver Development
  204. Making a menu option invisible
  205. Utility to print source code and header files
  206. linking error
  207. Help: CGI for File Upload
  208. MSHFflexgrid
  209. How do I add an API in Visual C++
  210. how disable button ?
  211. How to change title font of CTabCtrl in this sample ?
  212. Access problem
  213. Toolbar background
  214. FTP Client
  215. modem traffic monitor
  216. 32-Bit Colour Bitmaps
  217. Record wav From Web
  218. How to change tab label font in this sample ?
  219. edit box to invisable.
  220. SetDialogBkColor without MFC
  221. Q: How to get mouse events from non-MFC window
  222. child dialog window
  223. Splash Screen
  224. GUI/Bitmaps
  225. vc60 service pack
  226. CEdit Not Working Correctly
  227. How can i send mail from ASP
  228. Can someone Help me on the SQL, Urgent...
  229. zip files with long file name
  230. Where to get WinObj.exe ????
  231. Update Edit Box with Numbers
  232. How to change font color?
  233. CListCtrl
  234. how to use accelerator
  235. how to get keyboard events for a dialog
  236. Multiple UI threads/dialogs
  237. volatile keyword
  238. Spin button/edit control to display decimal numbers
  239. STL Vector Class
  240. How to get the Menu of the Main Frame
  241. Virtual Key Code?
  242. Looking for a OCX control (or class) to choose a range of time
  243. gif to bmp/jpg to bmp
  244. CD-ROM Sectors
  245. Set the size of the client area
  246. a runtime library error
  247. Possible bug(s) in console programs?
  248. Toolbar
  249. Socket Programming
  250. Multhreading