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. menu item update
  2. OpenClipboard() fails with error = 0?
  3. problem with cWnd:GetForegroundWindow
  4. edit boxes
  5. basic CSplitterWnd question
  6. Creating threads
  7. draw with mouse_move - need help!
  8. passing String parameters from VB
  9. Spliting File into 2 or more files
  10. Dangling Pointers & MSRD3x40.DLL
  11. Image in combo box
  12. char[1024] to CString
  13. FORM VIEW -CREATION
  14. CList always complain!!
  15. Loading DLLs
  16. Message routing...
  17. Dialog mysteriously popping up in middle of desktop
  18. VC6 violating the rules of inheritance???
  19. Explore-style program with closing button on
  20. Asynch File Transfer
  21. How to catch key stroke in dialog box?
  22. How can I programmatically change the printsize from letter to legal size?
  23. migrate MFC *.exe to DLL (including controls)
  24. VARIANT
  25. Retrieving Local Hostname
  26. How can I access the private variable?
  27. How to use IShellWindows?
  28. Close parent dialog from child dialog
  29. Resizing CToolBar in a CReBar
  30. Dll entry point
  31. PlaySound
  32. How to call OnDraw function from another class?
  33. why can't convert a data?
  34. Capture Enter keystroke?
  35. formview
  36. Fast access to a Device Context.
  37. can anyone help a newbee??
  38. Problem in FUNCDESC
  39. open/view text file
  40. How do i embedd an IE 4 control in the right pane of the explorer
  41. Can anyone help a newbee?? in c/c++
  42. C++ and API
  43. clistctrl and scrollbar - help me pl....ase!
  44. clistctrl problem
  45. CStatic text color
  46. Howto read a set of subkeys from registry?
  47. Assocating class with menu/toobar resource
  48. Using ADO.Recordset pass Paramerter?!
  49. Misc
  50. Serial Com Port Event?
  51. Works on the same machine but not on the other machine.. Help me !
  52. Strange behaviour
  53. Property sheets embeded in Dialog Box
  54. Property sheets embeded in Dialog Box
  55. How to use "Accelerator" to control the other process?
  56. Edit Box
  57. BUG
  58. Excel & OLE
  59. treeview
  60. What is Palette ?
  61. Mutexes
  62. Sizing Dialog
  63. Displaying updated numbers on edit box
  64. FreeRegSpace
  65. CSocket MFC class and NT service application
  66. How best can I implement hidden surface in a 3D framework display?
  67. Command Line
  68. Box Copy
  69. Possible to change a DLL without exit App ?
  70. How to Write a Program to Edit Pictures
  71. Serilization
  72. ofstream/ifstream failing
  73. Simulated Hyperlink
  74. SOS in CToolBar
  75. Getting real thread handle
  76. Doc Creation Crashed (AfxIsValidAdress)
  77. about MSComm
  78. Current App Directory
  79. array of arrays
  80. Save As
  81. Help: Menu and Bitmap
  82. Display a message box before a view is closed
  83. New ActiveX control
  84. DirectDraw
  85. Animation using GDI only
  86. ATL PropertyPage
  87. PropertyPage (ATL)
  88. How can I get the list of all registered ActiveX controls on the system?
  89. cout in color?
  90. How to be clean? (new/delete)
  91. System tray
  92. Animation: GDI only
  93. Grid Control and read only property error
  94. Resizing MAinFrame
  95. CDBVariant and DBVT_BINARY
  96. Documentation/ANSI
  97. Project not recognized by Source Safe
  98. strange problem: no match between same types;
  99. IP data monitoring
  100. About VC++ and DB
  101. Runtime error R6025( pure virtual function call) with Jet 4.0 OLE DB provider.
  102. Getting a list of files at a url
  103. COM+ events
  104. Getting the right document
  105. About VC and DB
  106. Problem with SetRedraw
  107. Please Help, I'm begging you all. I need help
  108. Please Help
  109. ActiveX CheckBox
  110. Programming for NT
  111. What's wrong Navigate2(_T("http://ig/tt/item.asp"),NULL,NULL,NULL,form_parameters); ?
  112. How to call routine when Palm is connected.
  113. Please Help Me!
  114. What's wrong Navigate2(_T("http://ig/tt/item.asp"),NULL,NULL,NULL,form_parameters); ?
  115. Display a message box before a view is closed
  116. CListBox columns
  117. MFC Printing Questions
  118. How to set a directory to a child process
  119. Font prob on far east applications
  120. DataBASES - Help me!
  121. Starter's VC book
  122. Urgent -DCOM
  123. ADO
  124. Controlling which document template is used...
  125. Timer Help
  126. CListCtrl: Selecting Item Programatically
  127. Close SDI application
  128. Writing an IME
  129. password Dialog
  130. Working with columns in CListCtrl and need some help
  131. [Q] new "handler" in Explorer possible ?
  132. Help, Please.....
  133. If you know anything about CListCtrl I could really use your help!!!!!
  134. LoadImage in DLL from resource ?
  135. CStatic Backround color
  136. Custom Messages
  137. Listing Project settings
  138. Disable Show window contents while draging
  139. Child Windows losing their titles?
  140. ADO error EMERGENCT
  141. Help, please!
  142. Minimizing to the systray
  143. Windows control
  144. Mixed data reply from cgi
  145. input without focus
  146. Is This end of VC++
  147. Newbie needs help creating StatusBar
  148. Accessing Document Variables?
  149. flow charting
  150. Why WM_DESTROY message handler doesnt display my message before the view is destroyed
  151. Access to document class
  152. SUBSTRING
  153. Display numeric data for slider bar control...
  154. Escape/EscapeExt funcs
  155. Disable a Item in the toolbar
  156. Tray Icon
  157. using RasGetConnectionStatistics() on Win2k
  158. CBrush & Resource leaks when handling OnCtlColor
  159. VC++ Tutorials?
  160. Sybase Embedded SQL + Visual C
  161. How do I change items in a list box based on column?
  162. sending messages from one app to another
  163. Making a bitmap as background to dialog box
  164. design advice needed
  165. Union Structures
  166. DV Camera via Firewire (IEEE1394)
  167. Something similar to Edit box!
  168. warning C4700: local variable 'Buf used without having been initialized
  169. MFC Window Splitters
  170. Help with bitset warning
  171. Child Window Messages Not Getting Through
  172. ID_HELP versus WM_COMMANDHELP
  173. Windows Installer
  174. How can I use sndrec32.exe in my program
  175. Creating an MFC Static Library
  176. How can I convert this value type?
  177. How can I convert from 'const int' to 'class CWnd *'
  178. Data Server, Need Some Advice Please !
  179. Load Automation Object
  180. Basic Functions
  181. ExtCreatePen
  182. va_list problem: Avoiding/trapping bad formatting.
  183. Capture all windows events?
  184. So basic. How to read one line from the console?
  185. Double Buffering
  186. Problem in Visual C++
  187. Visual C++
  188. Toolbar Resources
  189. Long vs Short File Names
  190. ADO.Recordset in VC++??
  191. Noway to convert from CPoint to CObject*?
  192. How to Invalidate my desktop back after I used it for a Bitmap display ?
  193. Search for multiple files
  194. Console vs GUI Applets
  195. toolbar within a splitter window
  196. How can I call a member from outside of CDoc class?
  197. Tree control
  198. How to have a bitmap in the right corner like in Windows Explorer
  199. running a program periodically without using WM_TIMER
  200. How do I display .Jpg , .gif images
  201. CString to (WPARAM)
  202. How to import toolbar/menu resources?
  203. print date in image file
  204. URGENT: jpeg/gif encoder/decoder
  205. Using dao without installing odbc
  206. Calling SP vs BOOL parameter on Oracle 8 using OLE DB
  207. About DLM
  208. why URLDownloadToCacheFile() cannot work?
  209. Messages
  210. is wininet.dll staticaly linked?
  211. ListBox
  212. ICollectionOnSTLImpl
  213. CList
  214. Easier CHtmlView
  215. Opening CD Rom Drive on click
  216. BSTR ------> wstring
  217. Unable to Disable Toolbar button
  218. Libraries
  219. System tray icon menu
  220. Help on Flexgrid
  221. How to use CList ?
  222. Such a newbie, I cant figure tis out
  223. Passing & Returning a string from VB to C++ DLL
  224. Dragging MainFrame
  225. CRichEditView20 in Document/View Architecture?
  226. How I use this function Navigate2(...) for post data to asp ?
  227. How I use function Navigate2(...) for post data to asp ?
  228. CCoolDialogBar
  229. Edit box Control
  230. How can I programmatically draw a bevelline or any horizontal or vertical line in a CFormView/CDialo
  231. Show HTML pages in program
  232. Newbie needing serious help w/ MS Visual C++ 6.0 Introductory
  233. How to Create Common File Dialog in ATL COM Component
  234. Issues with a Dialog Box
  235. Opening CD Rom Drive
  236. Removing the Help and Apply button in a CPropertySheet
  237. Midi playing
  238. CListCtrlEx
  239. ListBox/CMapStringToSting
  240. virtual functions
  241. Prevent sorting while inserting a item.
  242. DirectDraw small Q:
  243. Problems with a DLL... Ned some very basics about it
  244. IHTMLFormElement events..
  245. how can I get a member variable in CDoc class from another class(not CView class)?
  246. Help with basics about creating DLL
  247. create a shortcut in the statr menu
  248. How do I use CListCtrl::SetBkImage ??
  249. Protocol's + Host's question
  250. Destruction Before Construction