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. Edit control
  2. Subclassing buttons
  3. createing Shortcut on Desktop
  4. R6025 Error Message
  5. Edit control
  6. finding drive info
  7. char to CString
  8. CTreeCtrl
  9. Q: Changing font size in CDialogBar control.
  10. Hexadecimal values
  11. utility to convert exe to assembly
  12. ArrayConvertingCurrency
  13. CBitmapButton and 24bits pictures
  14. CEdit Control
  15. Question about mapped files without MFC
  16. Changing the active language FROM a MDI
  17. C++ programming
  18. bitmap pixel manipulation
  19. How are two controls CONTGOUS?
  20. CAnimateCtrl "freezed"...
  21. Help for selecting textediting library or control
  22. How to read CD-ROM sectors in Windows?
  23. the game of life
  24. How to debug COM DLL
  25. What time is it?
  26. MS-DOS graphics?
  27. LisrCtrl Containing a DaoRecordSet
  28. twain
  29. Function Keys and Virtual Codes
  30. DAO and ORACLE
  31. Webbrowser and Dial up Connection window
  32. VC++
  33. how do i run the code profiler?
  34. Dialog based CArchive problem
  35. ShellExecute
  36. Setting Focus
  37. Scroll Bar
  38. IIS 4 ATL DLL just won't register
  39. PreTranslateMessage: how can I get the handle of the edit box the cursor is in?
  40. CTreeCtrl
  41. CTreeView
  42. PopDown Menus
  43. URGENT: Opening a Database table
  44. Using VC++ generated DLLs in Borland C++ 5.0
  45. Need your help. Extended Combo Box
  46. Assembly language
  47. Does anybody know how to hook any WIN(32bit) API function?
  48. Does anybody know how to hook ANY WIN(32bit) API function?
  49. Installing Two Applications
  50. Adding MyIcon to System ImageList on Windows NT v4.0 --> Works on Win9x
  51. "Save me"
  52. How to identify the validity of a class pointer
  53. Custom Appwizard Creation
  54. How to get Domain Name ?
  55. Coloring readonly edit control
  56. Opening multiple MS-Office applications in ASP.....
  57. ms office api? spell-checker, ...
  58. Error "Fail to create empty document", MSCOMM32.ocx problem
  59. How to Implement the Align property so that a control can be placed onto a VB MDI form
  60. Reading filenames from directories...
  61. Getting printer info (printing ENVELOPES)
  62. TRACE0 ("What is this?")
  63. Strange warning when compiling dll.
  64. How to tab views in the bottom scroll bar as in Microsoft Dev. Studio
  65. How to initialize structures inside a class?
  66. how to find email id in rich edit view
  67. set up program
  68. A strange error as -1.#IND0
  69. postscript & c++
  70. MFC fullscreen application
  71. how to use fwrite() in VC++?
  72. test, don't bother reading this
  73. test, don't bother reading this
  74. print event & windows NT
  75. about "win32 Release" error
  76. How to go through proxy?
  77. ShellExecute - only one instance???
  78. Telephony properties with RAS api ...
  79. A strange error
  80. Threads and Sockets
  81. internet application programming
  82. Project dead line is near. help me out please.............
  83. OLE Server InPlace Activation
  84. How to use FOF_WANTMAPPINGHANDLE flag on SHFileOperation()?
  85. About setmapmode
  86. MULTILINE IN LISTCTRL???
  87. Tiff to PDF !!!!!!!
  88. ShellExecute - only one instance
  89. Removing mouse focus
  90. How can I get selected files in explorer?
  91. Creating Access DataBase?
  92. How Can I get Ethernet Card 48bits Address?
  93. Assertion error with CEdit
  94. apvector & apmatrix
  95. C++ Swap / Memory Alloc
  96. A peoblem about using OpenGL in Windows NT
  97. HROW.
  98. Getting ID for menu item highlighted
  99. Printer - Job_Status_?
  100. Trying to create a new folder using a CFileDialog
  101. CSokets
  102. Splitter window with different views on the same pane
  103. Programming
  104. MFC ControlBar View
  105. One Instance only
  106. Thunking
  107. UserName
  108. How do I simulate a mouse click.
  109. CPrintDialog
  110. ZoomIn And ZoomOut ForBitmaps
  111. DOS <-> Windows Communication
  112. rcs with Developer Studio?
  113. Does NT send logon messages?
  114. Create relation in a database
  115. HOWTO:Maintain the source code and exe file
  116. C++ Drive List
  117. How to hook into NT CTRL_ALT_DELETE
  118. Dyamic html to WebBrowser control
  119. How to store data with items in a virtual listview?
  120. MTS, stack overflow error
  121. CListCtrl ::URGENT
  122. How do I write an exit function for an MFC dialog app?
  123. Keeping font size custom when changing window/viewport size
  124. Does NT send logon messages?
  125. Implmenting Custom-Interface Inheritance
  126. COM vs. DLL
  127. Standard Toolbars using CToolBarCtrl::LoadImages()
  128. Sizing a listview control on a dialog bar
  129. Problem with distibution of JET 3.5
  130. removing directory
  131. NT driver giving problem
  132. Help needed in implementing Ticker Bar
  133. SUBJECT: NCPAINT doesn't work proberly
  134. GetButtonStyle() return incorrect values
  135. NT Event Log Question
  136. Serializing STL Map/Vector
  137. Menu Item Check
  138. SDI -> MDI
  139. reading the file systeme
  140. Debugging a Release build
  141. Mouse Pointer
  142. Different Images be to List View Control
  143. CTabCtrl with CListBox, all resizable. How?
  144. SAFEARRAYs
  145. Launching DOS Applications
  146. CALLBACK Phenomenom
  147. how can I update the value in an edit box without using UpdataData(FALSE)
  148. Statically Linked MFC Modules
  149. Type of Build
  150. PCMCIA card
  151. Dynamic Controls
  152. Edit controls
  153. Bitmap, 5 or 6 bits for Green
  154. Disable one Button of a CSpinButtonCtrl
  155. Problem manipulating selected values in ComboBox's edit control.
  156. Tooltips in the List ctrl
  157. GetUserName()??
  158. How to get the running applications?
  159. Determine if an HTREEITEM is valid...
  160. File I/O
  161. Knowing when the computer receive an Internet Packet.
  162. Using ActiveX Control
  163. Set primary key
  164. Need latest comctl32.lib and head file
  165. Splitter window
  166. Need Samples:
  167. CPU Usage
  168. Need Sample Code for Creating A MDI Window and a Dialog Box automatically when application starts up
  169. Virtual Functions in Reusable Controls
  170. How to erase background while drawing text
  171. Erasing bkground while drawing text
  172. How to erase bkground while drawing text
  173. Newbie: How do I create a DIB from an array ?
  174. CRichEditCtrl on MM_LOENGLISH
  175. Chris M's CSystemTray Problem
  176. License key to use OCX on client PC, Help me!
  177. Windows NT Service
  178. Ric, please read this
  179. How to pop out dialog box inside an existing window (screen saver) using win32?
  180. How to create custom explorer bar
  181. CTreeCtrl/CTreeView
  182. CTreeCtrl/CTreeView
  183. Drag n' Drop? SOMEONE PLZ!!
  184. how to display one digit integer to two or more digit
  185. How to put wait cursor while connecting to database
  186. Run several SQL scripts
  187. A Simple Text Editor
  188. MTS stack-overflow
  189. COM Error Handling
  190. Having a Report View attached to the Frame inDoc/View Architect
  191. Scrolling Bitmaps
  192. How to get dispatch interface to running Excel Application
  193. Keystroke capture
  194. Redrawing while scrolling
  195. setting time
  196. Interaction b/w ASP and APPLET
  197. How to get KEYDOWN message in COM running in IE
  198. Date operations
  199. Doubleclick causes multiple start of my application
  200. How Can I Send File use CSocket In Thread Mode
  201. help me please!
  202. Registering screensavers
  203. Copying a bitmap in one memory dc to another memory dc
  204. edit control
  205. CSocket /CSocketFile/ CArchive -> Archive is always empty
  206. clipboard problem
  207. Unwanted break points
  208. ! SQL help with Update! (I think)
  209. No parent notification of dynamically created controls
  210. How to add a tlb file into a ATL project and implement an interface define in this tlb
  211. How to make parallel communication on WinNt???
  212. How to insert a OLE into a RichEditCtrl
  213. MS_COMM32
  214. ATL COM Client ?***(Urgent)
  215. How do I change the caption of a PropertyPage
  216. Math Parsing
  217. How to get network path from local path?
  218. Removing Frame from App
  219. changing file from C to C++
  220. TAPI
  221. URGENT -How to use AddToolSetting in VC++
  222. GUI
  223. Folder copying
  224. DNS configuration
  225. CListControl
  226. File events?
  227. How do I initialise all pages in a property sheet?
  228. Print whole screen or window ?
  229. Stingray Chart - A special chart. Please help!!! I'm a beginner
  230. Subject: Stingray Chart - A special chart. Please help!!!
  231. Dialog box with file descriptor
  232. Abnormal program termination
  233. Simulating a Form POST request using WinInet
  234. Activate Dialog without menu option
  235. password/login dialog
  236. MFC - CSocket & CAsyncSocket
  237. Status Bar in MDI
  238. Keystroke problem...
  239. Locking an Application
  240. NT Service
  241. COM-linking problem
  242. Urgent : Self-extracting binaries
  243. What is <dynamic_cast>
  244. Tabbed view
  245. A new window?
  246. regarding compilation of help project
  247. CTreeCtrl/CTreeView
  248. Communication betweens apps on two different NT machines
  249. About GUID
  250. ADO