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. Creating hyperlink in a C application
  2. Color Problem in Control
  3. Difference between Java and Java script
  4. how to detect wich operating system is 95 or WindowsNT
  5. how to change background color of property sheet
  6. Visual C++ 6.0
  7. Serialize with CView
  8. Arrow Keys in OnKeyDown?
  9. Arrow Keys in OnKeyDown?
  10. getting file pointer
  11. UpdateBatch()
  12. How can I determine which files my executable will call?
  13. Unknown file
  14. Need help with getting the desktop's path
  15. How Do I Get the Mouse Messages from Desktop windows to my application?
  16. Where can I get Group 3 FAX source code
  17. Playing midi files
  18. InstallShield
  19. How to get the the file pointer with only file name known?
  20. Help with registring hotkeys.
  21. TAPI programming
  22. Drawing directly on the screen
  23. question about file pointer
  24. Plotting and getting pixels from the screen
  25. Extracting the Resource
  26. the HUNTING !!!
  27. deactivate the ability to print
  28. How do we implement the Print & PrintPreview in ATL objects
  29. REGISTRY SeARCh
  30. window resizing
  31. CFileFind
  32. Is it possible to limit a WM command?
  33. I have made an appwizard for creating System Tray apps. Check it out!!!
  34. multithread exit error
  35. Do we have a way to detect the Whole Screen Update ?
  36. how to write the timer countdown program
  37. Standard Windows File / Properties Sheet
  38. Disable all Desktop programs while my application is running
  39. HTML Help F1 Problem?
  40. This should be easy
  41. Help Error
  42. WriteFile(
  43. LINK Error
  44. Howto: delete the executed file?
  45. How to send a file to IIS Server
  46. Javascript Menu HELP!
  47. Ascii file
  48. use inputbox in Visual C++
  49. Need help w/CreateProcess
  50. Error when Accessing Database from within Thread-Function
  51. RasDial and leave connection open??
  52. disabling/enableing button control
  53. Setting CPropertyPage caption
  54. F6 NOT WORK !
  55. RasSetAutodialEnable
  56. Hiding the application in the taskbar
  57. VC++
  58. Can we send CArchive Objects across a Named Pipe?
  59. MFCGridCtrl
  60. OwnerDrawn Menu problem
  61. Debugging Com DLL
  62. How to access the pointer of a DECLARE_DYNCREATE class
  63. How to disable ESC in CDIalog based applicarion
  64. Problems with GridCtrl from CodeGuru
  65. rbm1
  66. How do I attach an MFC control object to a set of radio buttons?
  67. DCOM Server
  68. Progress Control
  69. writing text to a file
  70. Access PARAM tags in ATL Control
  71. Converting an int to a string
  72. Getting two views to access one DaoRecordset
  73. Printable CTreeView
  74. Application crashes when I assign a member variable to AnimCtrl
  75. Text file resource
  76. Please give codes for RS232C serial communications.
  77. Beginner DCOM/ATL Question
  78. "A required resource was" error message box
  79. FONTS
  80. view file through double click on filename
  81. Can someone tell me why this doesnt work?
  82. Newbie: How to draw on top of a listview common control
  83. New at This Please Help
  84. SQL-92
  85. Still cant login in to codeguru???
  86. ADO
  87. Serialization
  88. ofstream and serialization
  89. How can I change mouse cursor in IE5 window
  90. Using AfxLoadLibrary() to load dlls and instantiate unknown derived classes (plugins) dynamically...
  91. Sending Mail Thru VC
  92. Getting a active window
  93. Codeguru is not secure!!!
  94. Quastion
  95. Changing fonts in SMTP mails using winsock??
  96. change title name of CFileDialog
  97. Hiding console app on startup?
  98. Customizing System menu of ControlBar in Floating state
  99. Header Control
  100. How to open word file(.doc) file in CRichEditView
  101. Link/Email in About box
  102. Painiting CTabControl background
  103. Install RDO
  104. textchange
  105. Q: (D)COM and C++ exceptions ?
  106. A CEdit insdie a CButton??
  107. msjter32.dll for WinNT
  108. Print preview
  109. Urgent!!!!Scrollbars
  110. warning: locally defined symbol "_wcslen" imported ..??!
  111. Is there a limit on how many times one can load (and free) the same DLL in a process?
  112. Waiting for the end of a child process
  113. Please Help me !!!!!! ( Date Picker )
  114. Common Dialogs boxes. How to??
  115. About CString class
  116. Mapping a file into memory
  117. remove caption of MDI mainframe
  118. Own designed buttons i property sheet
  119. Changing Window Font
  120. Cut&Paste in TreeView
  121. PCM <->MPEG
  122. Accessing physical memory
  123. How to use VB 2D array in VC DLL.
  124. How to get file path?
  125. Tracing MFC function calls
  126. Where can I find a table with a HRESULT's code errors description?
  127. Print. How to do it?
  128. how do i open doc file in VC++6.0?
  129. Error when Accessing Database from within Thread-Function
  130. My first program..
  131. Toolbar Buttons
  132. edit control in IE5 can't use backspace, cursor keys
  133. Virtual constructor
  134. ISAPI Filter Tutorials?
  135. ISAPI Filter Tutorials?
  136. HELP : Specified driver could not be loaded due to system error 5 (Microsoft Access Driver (*.mdb)).
  137. HELP : Specified driver could not be loaded due to system error 5 (Microsoft Access Driver (*.mdb)).
  138. How can the number of doc/view be limited?
  139. CDialogBar
  140. Documentation for Excel automation?
  141. mouse pointer
  142. Printing a file to a LPT device
  143. cdovbs.inc
  144. Send email
  145. mail
  146. Disabling menu items
  147. resising desktop
  148. Send WM_CHAR
  149. Toolbar
  150. File search
  151. How can I catch the URL from the web explore?
  152. ISummaryInformation
  153. CRectTree
  154. TOOLBAR
  155. capture mouse click on child ctrl in parent dialog
  156. I did mistake: not CRectTree - CRectTracker
  157. Where is WIN32 defined????!!!
  158. Urgent
  159. Access controls between Property Pages?
  160. Internet Explorer - Problem
  161. How do I mark a region for line
  162. OpengGL
  163. IE-style bars
  164. The icons on the desktop.
  165. How to detect a sound card
  166. Fast Array Looping (Badly Needed)
  167. VxD programe help needed
  168. char[] = ???
  169. What does Guru stand for?
  170. Workaround for 16MB bitmap size limit in Win95/98
  171. Message Handlers
  172. Windows Explorer
  173. How can I save points of pixel in my client area...
  174. Count Connection (ODBC)
  175. Change the Image at BitmapButton
  176. serialization
  177. writing to disk
  178. angle between two vectors
  179. NT domain name
  180. HOW TO KILL APPLICATION???
  181. DLLLL???????????
  182. How to automate control panel settings through code?
  183. Wizard does not have a Finish button!! Help Please
  184. Reusing IE favorites band in separate application
  185. How to insert Columns into Listbox??
  186. how to put a gif image on a dialog?
  187. File Open
  188. Serialize Document/View App?
  189. [Q] how to do 2 Scroll Bar control?
  190. Subclassing the edit control of a CListCtrl
  191. Calendar Control
  192. serialization
  193. HELP WANTED !!! EASY FOR YOU
  194. Com Ports, Simultanouse use by 2 apps.
  195. WM_PRINT
  196. Inheritance
  197. Panel Stack ala Property Sheet in a Dialog
  198. Trying to move one CWnd ...
  199. How can I Load Picture to Dialog?
  200. CREATE TABLE!!
  201. Transparent Forms
  202. Multiline ListBox
  203. test: To find my own posts.
  204. commun print dialog
  205. CBN_CLOSEUP Message in ComboBox
  206. Again some cool free stuff written by me. Everyone must check this out!
  207. Setting Statusbar message
  208. Using Windows' standard compression dll
  209. NT Service
  210. How to Change the Height of the List Box in DropDown (Combo Box)
  211. JPEG PCX GIF
  212. Wizards
  213. Problem with try - catch: infinite loop?
  214. Trial period
  215. Help with HOTKEYS PLEASE!!!
  216. windows printing
  217. ToolTips in Dialog based application
  218. Changing the mouse cursor
  219. Here I come again with my stupid questions :) hehe
  220. Any idea how to create my own combo-box?
  221. ActiveX Controls
  222. Help Dialog color & position
  223. Icon of files
  224. Oscilloscope control
  225. WinHelp!
  226. PARAFORMAT2 in Dialog Box?
  227. Checking for Registry Key
  228. tooltips(toolbar)
  229. CEdit
  230. C++ CGI code
  231. printf() implementation
  232. Resolution Independence
  233. serialization
  234. CFileDialog
  235. VC++ AddIn
  236. Is it possible to have multiline headers in CListCtrl report view?
  237. destroying CWinThread object
  238. Access delete query not working
  239. overloading operator[]
  240. SysDateTimePick32
  241. Getting CPU Usage Info
  242. File Change Notification
  243. time() Y2K safe?
  244. Is it important to overload stream operators?
  245. How to attach new form control in the view
  246. About Fonts
  247. Help!! Question about OCX on Win NT
  248. Accessing Classes
  249. .gif and WinInet
  250. URGENT Mainframe and View