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. CArchive question...
  2. How to write/read a image (icon) to/from a DB (SQL Server) ???????
  3. ScrollWindow problem
  4. WM_KEYDOWN
  5. ERROR Message
  6. Colors & Depths
  7. C
  8. Scroll child windows ?
  9. Images in ATL/ActiveX
  10. How to remove the GPF message box
  11. Windows
  12. ctreectrl
  13. How can I change the background color of a CStatic ??
  14. Please Help :-(
  15. Please Help :-(
  16. Terrible Exception
  17. Visual C++, file location for newly added classes
  18. Question about Unicode..
  19. OO Problem
  20. CString in Class Definition (Header File)
  21. GetVersion() method for Win16
  22. Server busy
  23. In place activation
  24. I have trouble with maximided window
  25. Hello, gurues..
  26. How to write a string in a TXT file
  27. Controlling a running IExplorer
  28. .operator += Converting to CString type ??
  29. Only one running instance at a time
  30. ListCtrl grays selected Items when loosing focus????
  31. How can I gen & link free dll's?
  32. stop screen saver
  33. Extension dll behavoiur in release and debug mode
  34. How to make an editfield to update when a variable that is connected to it gets new values?
  35. Container classes in Win32 console prog
  36. Trapping Logoff on Win98
  37. How to write a string at the end of a TXT file
  38. Problem VC++ (Active-X)
  39. How can I know which SHIFT key, left or right, was pressed?
  40. calling isapi extension dlls?
  41. calling isapi extension dlls?
  42. cards program
  43. dynamicly creating MDI document/view templates
  44. color of cprogressctrl
  45. 2 interface pointers
  46. ASP Session variables in ISAPI filters
  47. Manipulating the View class from the Frame class
  48. Searching some value or string inside file.. (created with CArchive)
  49. SERVICE in WindowsNT
  50. ODBC without UNICODE
  51. Launching another program from a menu bar button
  52. How to Create a Font (.fon or TrueType.ttf) with VC++ 6.0 Standard
  53. How do i ensure a fresh page from IE
  54. C++
  55. Reading sectors
  56. HELP! Please! Problem with Winsock!
  57. CWebBrowser in a dialogwindow ?
  58. Grids
  59. CreateFile Failing for COM1
  60. string.h
  61. script class/application
  62. Checking for repeated instances
  63. Vertical Edit Box
  64. printing error in Windows NT
  65. Help! ActiveX control on Dialog Locks up
  66. Keyboard handle
  67. VC submission style was changed?
  68. Scroll bars on the ListView control
  69. a component that is always active in the bacground
  70. Help! Is VStudio 6 incompatible with VC++ 5 generated apps?
  71. MSCOMM32
  72. HTTP Response
  73. Problem with CDaoTableDef - Append
  74. Help!!!!!!!!!!
  75. Derived class of TreeView ActiveX
  76. modifying a stream - filter- video capture
  77. Where to download Visual C++ Studio Modeler
  78. Minimizing a PropertySheet
  79. ClistCtrl multiline column header
  80. Help : more than one color in CEdit control
  81. task list
  82. How do I know if the <Enter> key has been pressed in a Combo box which has and edit box.
  83. Radio buttons
  84. How can I get module name from process ID?
  85. How to have an ATL COM object use an already created interface and its code
  86. HELP HELP Visual C++ 2.0 upgrade to VC6
  87. ListBox
  88. Convert Int to BIN
  89. Simple DLL and EXE code
  90. ClassWizard bug?
  91. How can i send my problems through email.
  92. How to find which group the current user is belonged to in NT40?
  93. WebBrowser License
  94. create table sql
  95. Need Help Using SubclassWindow()
  96. [Q] How to scale dialog according to the screen size and resolution of the Monitor?
  97. MDI app without initial child window
  98. How to create a Relation between tables in a MDB
  99. Windows
  100. Adding an Item in the popup menu
  101. Merging Files
  102. How to copy from a CD - track / sector wise
  103. error C2491
  104. toolbar dragable
  105. Help with deleting profile strings
  106. PLEASE, HELP ME
  107. MDI and Dynamic Template Loading
  108. How to import views in SQL 7.0
  109. CFormView - HELP
  110. Virtual Func Problem
  111. #pragma comment....(use it to share data_seg?)
  112. Posting a message from MainFrame to View
  113. Printing
  114. WinCE Sync
  115. Flickering of MSHFlexGrid control
  116. How to resize a window with property sheet.
  117. task bar
  118. CreateProcess() watching
  119. Unwanted Pixels in Toolbar
  120. CSplitterWnd Problems
  121. Some small questions
  122. definitions
  123. definitions
  124. HANDLE for hDIB
  125. flickering
  126. Makefile modification
  127. Excel File Format
  128. Visual C++
  129. Copy VGA Image to 1/4" VGA
  130. help with linking error?
  131. Maximum no of Threads?
  132. Finding the cdrom drive
  133. Property Sheet control with tabs at bottom ?
  134. Hi, gurues..
  135. Why can't derived from some class
  136. How to register an Automation Exe as single instance server?
  137. Property sheet control with tabs at bottom ?
  138. How to send a message to a Pushbutton
  139. Info on registry functions
  140. bitmap check button
  141. CFileDialog Saving
  142. Using CFileDialog to prompt for directories
  143. Default Radio Button
  144. Memory Leaks !!!
  145. Initializing variables...
  146. VC++ Toolbars
  147. Terminate a blocking thread
  148. How to trap the item of a tree control when user double click on it.
  149. So many problems in OLE DB
  150. erro message
  151. CallNextHookEx not working
  152. App crashed when doc is sent to it!!
  153. How to get the address of function member of class
  154. WriteFile Control
  155. How to send a BEEP to the sound card. MessageBeep doesn't work
  156. Mulitple views in SDI application
  157. DAO vs. ODBC
  158. CFormView as a PropertySheet?
  159. How to compare COleDateTime with Date/Time field using SQL
  160. How to create a program gruop?
  161. What's the difference between DEBUG_NEW and new
  162. CTreeView
  163. WriteFile
  164. can't assign time to CTime
  165. Trouble with CDC::DrawText/CDC::TextOut and japanese Windows
  166. Why fflush() did not work with network?
  167. Creating ActiveX Controls Dynamically and...
  168. Get selected date in a CMonthCalCtrl
  169. Multiple Test programs
  170. Problem using BSTR in ActiveX-function
  171. Warnings i Release but not in Debug?
  172. profiler option in Visual C++ IDE
  173. Converting a MFC SDI app into an Active-X Control
  174. Need some help out here please.....long question :-)
  175. Change the backgroun in a CStatic in the Toolbar.
  176. Static include of afx dll
  177. Modal dialog don't get mouse input
  178. VC++ dll with VB GUI
  179. About Bitmap, CToolbar and CStatic.
  180. problems allocating memory for structs
  181. Transparent CAnimateCtrls?
  182. Animated Gifs in an MFC app?
  183. How to use a Dll loaded by LoadLibrary?
  184. mime types in isapi extension?
  185. mime types in isapi extension?
  186. Create Application Shortcut
  187. a very good job center for VC++ developer
  188. help on cpi-c communications
  189. Enhancing WINAPI DLL to MFC based DLL
  190. HowTo limit the minimal size of window during the usage of a program???
  191. CDateTimeCtrl without seconds??
  192. volume control...
  193. volume control...
  194. Reading OleObject from AccessDB
  195. Adding call back messages
  196. ip address
  197. How can i get pointer of CDocument in my CMainframe??
  198. Printing from the IDE in color
  199. ListBox control and horizontal scroll bar
  200. stdafx and deque<int>
  201. using CRectTracker into CFormview
  202. class for managing very big files
  203. Fontsize in dialog ?
  204. CString
  205. A Trignomentory Question
  206. Why does the scrollbar disappear after the window is minimally resized??
  207. recordset of csv at run time
  208. File Handling
  209. class function problem
  210. Text in dialog being cut
  211. Subclassing a class derived from cview??
  212. convert a short FAR*
  213. Custom wizards in MSVC
  214. Auto Build No for dependent projects
  215. MSDN
  216. A Question to Math Gurus
  217. How can I enumerate all excel instance in windows.
  218. Item selection in CListView
  219. Continuously updating my view
  220. Checkboxes inside a Cricheditctrl?
  221. Checkboxes inside a Cricheditctrl?
  222. FormView & member var's
  223. sequential text file and Edit Box
  224. Crystal Reports 7 and MFC
  225. simple "build" question ...
  226. FileVersion
  227. Find a string beginnig with....
  228. First-chance exception in IEXPLORE.EXE (GDI32.DLL): 0xC0000005: Access Violation.?
  229. Handling Context Menu
  230. Floating Menu
  231. START MENU... how do I add my program shortcut?
  232. NT question
  233. Drag and drop from MsFlexgrid To TreeCtrl
  234. CRebar and CRebarCtrl
  235. App crashes because of CTime
  236. DLL
  237. "Always On Top" window
  238. Desktop icon animation with VC++
  239. GetTextExtent
  240. Rich Text Extended Characters
  241. Window Focus
  242. CSplitterWnd
  243. quicktime player
  244. Getting Button ID
  245. how to make an lnk file on desktop in VC
  246. How do I set the disable color of a component ?
  247. Pictures
  248. simulate button click
  249. CDC
  250. Login Dialog