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

  1. Debug Window
  2. Open file by dragging on exe
  3. Wierd Message Box
  4. image conversion app
  5. CD-Rom
  6. Parse the command line
  7. Writing COleDateTime to CArchive object
  8. Multi include
  9. Handle to MenuBar ?
  10. ATL ActiveX in microsoft Office?
  11. Projects Icon
  12. Threads
  13. write CString to file
  14. Serial communication with Win32 API
  15. ntdll.dll
  16. Process when Workstation is locked.
  17. Delete file
  18. COM component (beginner)
  19. Renaming registry keys
  20. Graphics Printing
  21. DAO foreign key
  22. Changing the characteristics of a Dialog
  23. Using keyb_event() and SendINput
  24. Urgent, need help for Windows explorer style scrolling menu
  25. Disabling monitor power down
  26. Changing color of text selection in CRichEditCtrl
  27. friend function and friend of a class?
  28. Trapping when exe is killed from Task Manager
  29. Mouse Position
  30. Changing Cursors
  31. Embeded COM in ASP
  32. How can I joint a data file along with the exe ?
  33. Operating System
  34. Print Preview
  35. Default Dialog Behavior
  36. Appending text to RichEditCtrl without resetting the formatting
  37. FFT(Fast Fourier Transform)
  38. PALINDROME
  39. write 3 bytes of an int into a binary file.
  40. CHTMLView read only
  41. detecting ODBC DSNs
  42. Have HINSTANCE need HWND
  43. Q. what's the way to...
  44. button border
  45. Setting Virtual File Path
  46. Problems with HotTracking in CTreeCtrl
  47. Using view to display settings
  48. ToolTips
  49. Re: Compiling errors in CRichEditCtrlEx - Advanced Rich Edit Control by Steve Dunn
  50. ActiveX and Popup Answer worth $$$
  51. TcpWindowSize
  52. Sizing Windows/Dialogs
  53. BITMAP Data Access
  54. Sizing Windows/Dialogs
  55. Change cursor to hourglass
  56. How can i Avoid multiple instances of MFC Appliocation
  57. CClientDC and Fonts
  58. Cannot hiding vertical scrollbar on CListCtrl (reappears when scrolling)
  59. Registering ActiveX controls
  60. Problems with CView Background
  61. Self adjusting timer
  62. How to display bitmap in a dialog
  63. CString to char*
  64. MSFlexGrid
  65. Capturing covered window contents (AGAIN)
  66. How do I create a CView inside a CView?
  67. BITMAP resolution
  68. DCOM and C Runtime Routines
  69. Extract data from COleVariant?
  70. SDI question
  71. How do I copy a string from a file into a char*?
  72. printing HTML without View_Doc
  73. How do I print a text string to an inactive child window?
  74. Toolbar with win32api
  75. Coordinates on toolbar
  76. ATL Properties and ADO Connections
  77. SDI and Dialogs
  78. CheckBox
  79. Freezing a Popup Dialog
  80. Print Preview
  81. UNload/Loading Dlls
  82. Is it easy to create an editor?
  83. DLL members not there
  84. ADO Problem Help!
  85. VC and DB2 on AS/400
  86. Link Problem
  87. Taskbars and hiding buttons(Dialog App)
  88. Checking Network Activity
  89. How to calculate size of a control according to system font settings?
  90. Encrypting a File
  91. ListView TreeView
  92. Change Dialog Controls' Text and background's color
  93. CRichEditCtrl palette updating
  94. Powers of 2 bugs #$@%
  95. Change Dialog different controls' text and background color
  96. HICON to ICO file
  97. Help! DirectPlay
  98. Tab Order
  99. I want to save the variable in memory to C grammared file...
  100. Handler of Dynamicly Created Button?
  101. Help: CMultiDocTemplate
  102. Detecting clicks outside a modal dialog
  103. How to convert CString to OLECHAR FAR* ?
  104. Unable to create a Instance of a COM Object in a DLL.
  105. Please help: insert object
  106. How to get Network Host names.
  107. Just how to remove the 'untitled' and fit the name of the program
  108. ms visual c++ 6.0
  109. Disable selection in a non-ownerdraw listctrl
  110. VB properties like list control
  111. rectangle handle
  112. CEdit text highlighting
  113. 50 Real World examples of C++ Design and Implementation
  114. Is it possible: a system modal CPropertySheet?!
  115. Problem calling a COM Exe from an ISAPI Dll - Very URGENT
  116. Disable the Enter key
  117. MFC
  118. HOW TO FILL COLOR IN A EDIT CONTROL
  119. CAsyncSocket and User-Interface threads
  120. who know how to make a winroute
  121. Urgent-> clip 2 objects
  122. complex programming in VC++
  123. help file
  124. Title bar name and size of start window.
  125. Does anybody know this?
  126. Message mapping
  127. Any good book on ADO?
  128. Scroll-o-mania in CRichEditCtrl
  129. override OnFileNew and OnFileOpen? How?
  130. integrating *.chm with msdev help
  131. How to simulate a mouse-clicking in Visual C++?
  132. Printing to bitmap ???
  133. Window Ownership
  134. CreateBitmap
  135. how to use enter in CEditView
  136. Notify grid's parent
  137. Windows NT Username
  138. how to open file
  139. CJ Dock Windows Splitter Bars
  140. Unresolved External
  141. How to show contents of listbox all the time
  142. Please Help! Urgent!! Error message 'Failed to create empty document"...
  143. CComBSTR & BSTR problems
  144. write multi lines to ini file
  145. NT User Manager
  146. Round a float!
  147. ado/com
  148. ado/com
  149. CCheckListBox
  150. VC++ SSL Implementation sample ?
  151. CEdit: how to cancel initial text selection in propPage?
  152. Desktop Icons coordinates
  153. Altering windows look
  154. Why CreateProcess doesn't work?
  155. Opening Recordset using a remote DCOM connection
  156. How to disable or to cancel in CControlBar...
  157. Sharing an object between two processes
  158. How to do Tabs?
  159. StretchBlt problem
  160. Get the handle of window
  161. Trying to print dialog!!
  162. DirectX in Window
  163. help! Child window?!!
  164. How to create LIB file from DLL
  165. Spin
  166. ADO connect string?
  167. Help: Question about Outlook style
  168. Converting Dialog App to Service?
  169. MSCOMM32.OCX on NT Terminal Server
  170. Member function
  171. windows CE
  172. statusbar text gets truncated
  173. how to use DirectSound?
  174. Enter Key in Formview
  175. HOT TO:Accelerators
  176. How to disable the Start Menu ?
  177. Displaying a Bitmap
  178. Get Dll Version
  179. HELP! OnCtlColor() - can't get background of control to match rest of the system colors.
  180. where is the ODBC driver?
  181. CBitmapButton and ATL
  182. ? CAsyncSocket and CArray
  183. Migrating mdb based apps from Access97 to 2000
  184. How to save a string into a file (such as .dat file)
  185. Check/Test Connection Speed
  186. How to get size of a control in dialog units?
  187. Problems using Remote ADO Connection!
  188. HOW: launch java from C++ application
  189. Customise input panel on Windows CE powered P/PC
  190. DirectX and Windows_NT
  191. STL-map
  192. Problem with VC++ package built in Windows-98, during Deployment
  193. Mouse messages
  194. Printing
  195. Popup Menu
  196. Window (Re)sizing
  197. pretranslateMessage and Editbox
  198. How to place MessageBox *always* in center of screen?
  199. Why GlobalMemoryStatus function doesn't work ?
  200. untagged class???
  201. Release the control of parallel port
  202. How to get a Dialog Template from a dialog?
  203. Print Preview in ChildWindow instead of MainFrame
  204. Displaying jpg or gif in a Dialog app
  205. Create a Bitmap file using data array
  206. Calculate time in milliseconds
  207. services
  208. LPCTSTR to unsigned short*
  209. Using AddItem w/ MSFlexgrid
  210. Shell IDList Array
  211. file exist
  212. Cann't type in Edit controls in a child dialog
  213. CWnd::ModifyStyle problem
  214. Is it possible to interact my VC++ application with wordpad?
  215. Display Text
  216. CButton in CListCtrl
  217. non square windows
  218. changing directories
  219. Saving
  220. Move Window by Client Area
  221. Redrawing document background?
  222. FileDialogBox using ATL
  223. _rmdir
  224. Deselect all items in a list box control
  225. Can I receive an event from the application lauched by ShellExecute ?
  226. Adding a CRichEditCtrl to a dialog?
  227. CDC *pDC in a Dialog Application Framework
  228. Need online help for SQLServer stored procedures.
  229. Funny problem...
  230. <<<<<<<ChangeDisplaySettings Problems!!>>>>>>>
  231. date
  232. HELP!: how to make an item hidden in CListCtrl??
  233. get window messages
  234. Property Pages
  235. Attaching an HWND to a CWnd
  236. Calling external running process from dll
  237. Diable Menu Items?
  238. how to embed a CHtmlView in a dialog
  239. two questions...
  240. big problem with proxies
  241. Owner drawn menu works in win98/NT4.0 fails in 95 ??
  242. Webbrowser control OR CHtmlView
  243. IP Address
  244. Mouse click
  245. I'm Lost
  246. newbie witha quick question
  247. What exactly is ENUM and how does it work?
  248. Window size
  249. Converting a BMP to GIF source code
  250. Problem Finding a string in a binary file