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. WM_TIMER and endless-loop
  2. galri
  3. Adding a caption to CListView
  4. Optional variables in OLE in C++
  5. Attaching a toolbar to each view of the splitter window
  6. Checking for other computers
  7. Wait for process /reboot
  8. Combo Box: make ellipsis with text (path and filename)
  9. map and pair
  10. extern and typedef problems
  11. 0x80020009
  12. X is not a method
  13. Easy question on linking dll
  14. RS 232 communication
  15. USB port in NT4
  16. BCD / string arithmetic
  17. MFC and DLL...
  18. Eventlog access remotely
  19. CListView
  20. How to pass Variant parameter to VBScript
  21. How to transfer ULONGLONG data through VARIANT in WMI?
  22. Downloading the comvcs.h file
  23. searching for functionallity...
  24. NM_DBLCLK can not be captured in CTreeView, but can in CTreeCtrl
  25. NM_DBCLICK can not be captured in CTreeView, but can in CTreeCtrl
  26. What is MFC and ATL
  27. CBitmapDialog
  28. Mapi
  29. Problem: Running program from server
  30. VC++ Document Size
  31. Adding Data into Combo Box
  32. How to print an HTML File
  33. CCeSocket server
  34. File moving process : overwriting existing files if it exists
  35. How does one create a multiple dialog based application?
  36. How to find the path where a program is executed from?
  37. Opengl in Doc/View
  38. Waiting for Launched application to terminate
  39. Click an Image
  40. CListCtrl
  41. don't want to move toolbar..
  42. like the Capture of PaintShopPro
  43. sorting in a CListCtrl
  44. Loading an icon from an .ico file
  45. Drawing a line that dissapears
  46. Size of commandline in PIF file
  47. Hooks
  48. Using SetBitmap on a dialog with a DIBSection
  49. CListCtrl Problem
  50. .....PLEASE HELP!
  51. CDateTimeCtrl Callback
  52. creating an excel style spreadsheet, but not activex or ole embedded
  53. Tooltips
  54. modeless propertypage
  55. Using ASCII characters like µ and all others in my programm
  56. XML
  57. Template problem
  58. RedrawWindow
  59. How do I get access to an activeX control (property) if I just have a pointer to a CWnd that embeds
  60. First time creating GUI...
  61. ATL Wizard doesn't see the dispinterface in TLB
  62. Destorying a control
  63. Highlight text in Rich Control
  64. Writing to file
  65. textfile handling
  66. How to change Icon?
  67. put a window into a window
  68. FileRead Issue... PLEASE HELP!!
  69. Convert BYTE* to CString
  70. Properties Sheet
  71. Resize a CStatic field based on its text content
  72. How to create a queue?
  73. CSocket: BIG problem with constants...
  74. Manipulation the counter of the documents
  75. Thread parameter
  76. how to measure the window caption width to write a title without "..." ?
  77. ID_FILE_SAVE
  78. Need some help with help files (.hlp) :)
  79. Are there any thread ID's that are reserved ? --GetCurrentThreadId()
  80. DLL not Being Loaded in Window 98
  81. Setting a TabControl background color.
  82. Odd or Even?
  83. Error Help
  84. File Format
  85. F1 Key Processing
  86. OLE help
  87. How can I catch all messages in windows?
  88. Maximize/Restore Button
  89. COM with Win32 SDK
  90. Hook and dll
  91. Modeless Dialog created in a DLL
  92. Problems with overrides
  93. serial communication
  94. Implementing classes
  95. Weird Problem
  96. Reading boot sector
  97. A Question on the SDI?
  98. MFC OCX safe for scripting
  99. CE Sockets - How to detecting lost connections? How to detect timeouts?
  100. ATL Interfaces and the ActiveX Control Container
  101. Edit box in Dialog Based
  102. CCeSocket::Attach
  103. Coefficient accounting
  104. Reg EnumProcesses
  105. Displaying integers in AFXMessageBox()
  106. vector::iterator - how do I reference the element from an iterator?
  107. voice recording
  108. Problem with Source Safe
  109. UI Thread
  110. Sockets are slowing down
  111. getting the hwnd of a diffrent process
  112. A question of "MFC ActiveX ControlWizard" project
  113. Excel Automation
  114. Covert MFC App to ATL COM
  115. several modeless dialog and propertypage
  116. windows hooks
  117. windows hooks
  118. Https Component
  119. CSocket / Browser help
  120. Modifying MS Calendar Control
  121. The atrocities and war crimes of CopyFile
  122. Topmost Window and 2000
  123. Array of singly linked lists
  124. Tab Control and Docked Dialog Bar in the CMDIChildWnd
  125. Making ToolTips into Starbursts (re-shape the tooltip control)
  126. Displaying Strings as Text
  127. Adding Images in tooltip's
  128. Dev Studio like but in CMDIChildWnd
  129. What interface is {342D1EA0-AE25-11D1-89C5-006008C3FBFC}?
  130. using CADORecordBinding
  131. Alpha setting.. Transparency..
  132. _rmdir : an undeclared identifier in the Modern Times?
  133. A Csocket Beginners headache
  134. Can a control's method which will be called by VBScript has two output parameters?
  135. Trouble with sockets
  136. socket headache
  137. Custom Events in DLL?
  138. Special char in MultiByteToWideChar
  139. Fixed Window Size
  140. SafeArray question
  141. Merging ProxyStub Code
  142. Modify ClassID
  143. Console App from window programme
  144. Checking Excel and Word Excution Path.. then Launch..
  145. Problem with time assertion
  146. Why lost the focus?
  147. trouble in finding the header file "comsvcs.h"
  148. Creating COleVariant array !
  149. How to Trap events using Window Handle
  150. Prob on splitter window and Onopendocument
  151. Load Bitmap From File
  152. linking library in GINA
  153. MMC problem?
  154. class wizard
  155. MsDataGrid coordinate mapping system
  156. ActiveX vs DLL
  157. ComboBox & its text
  158. spreadsheet
  159. CListBox autoscroll
  160. feature extraction
  161. FTP Client without MFC
  162. Qusetion regarding ON_EN_CHANGE()..
  163. Child Dialog Problems
  164. Combo with registry
  165. Opening a recent file
  166. Pb to add a second button in Property sheet
  167. How to lock keyboard & mouse?
  168. searching for Compiler-options
  169. Error while linking
  170. Creating Start Menu entries with Visual C++
  171. Help
  172. How can I register an OCX control ???
  173. Trapping Events of a control array
  174. Adding text at the end of edit control
  175. How to programatically add events/tasks to palm desktop To Do list.
  176. ON_EN_CHANGE()..
  177. Access to an ActiveX control of annother application ?
  178. Install Network component for client Programatically
  179. Surrogate
  180. Fixing the document size
  181. Data exchange between two views
  182. Lock F2 keyboard
  183. convert CTime varianble into time_t
  184. Custom shaped Push button
  185. Keyboard Input in dialog applications
  186. Urgent : Multiple dialogs
  187. Access a ClistCtrl from the another dialog
  188. Access a ClistCtrl
  189. Random
  190. Start menu icon !
  191. Retrieve focused combobox
  192. bad_alloc
  193. about Linux
  194. MessageBoxIndirect
  195. serial communication
  196. Crystal Reports 7 wihtout DSN?
  197. Templates
  198. Text name of an interface
  199. Menu items
  200. SetQueryTimeout function of CDatabase class
  201. user defined messages
  202. OnKeyDown doesn't work
  203. Tooltips are sluggish
  204. Is there anyway we can get the path of the Windows folder in Windows?
  205. Is there anyway we can get the path of the Windows folder in Windows?
  206. Searching for text in richedit view or control
  207. Radio buttons question!
  208. Remote Debugging
  209. ParseDateTime of COleDateTime
  210. How to use the ado-grid control?
  211. Playing 2 waves file
  212. I don't understand Warning when compiling my DirectX project
  213. Drag&Drop to a PropertySheet Wizard
  214. How to change the caption of a child frame?
  215. Enum in switch statement??? How in Gods Name????
  216. Var to CString
  217. Finding COM components on a LAN
  218. Audio Data in Wave and MP3 files?
  219. Generic Thunks, please help!
  220. Modal dialog doesn't expose control over KEYDOWN messages
  221. Tab Key does not work
  222. Looking for source/hint how to create read/write thread lock
  223. can someone take a look at this please
  224. CCombobox....reaction on SelChange?!?
  225. wierd error
  226. CreateProcess
  227. Virtual CComboBox
  228. Sending Messages to dialog
  229. Code Help !!!!
  230. Writing to registry
  231. Setting a default font for a DC
  232. Paper orientation and Jumping page
  233. How to use UpdateResource in a dll
  234. Autodial DLL problems on Windows 2000/XP
  235. Fill From various Tables
  236. Load bitmap into dialog box
  237. what means thread priority?
  238. what means thread priority?
  239. Save Dialog
  240. Creating a bitmap
  241. How can I lock toolbar?
  242. CControlBar ??????
  243. Sharing Resources
  244. No MsgBox or DoModal working after the main DoModal (dlg based app)
  245. Outlook contact view Rolodex
  246. MultiThread
  247. I need a way to call the OnDraw() function of the new view while keeping the previous view still sho
  248. Read and print big file
  249. Dropdown populated from text file
  250. CRichEditCtrl Question