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. How to bind columns at runtime
  2. SQL: No columns bound prior to...
  3. How can I change the date on a file
  4. WORDPAD
  5. How can I detect a ftp transfer
  6. Can't send email via NT Service
  7. Microsoft Word, EXCEL interfaces...
  8. Add a button to Rebar
  9. Problem with CHttpFilter
  10. Number Conversion
  11. pthread_create() of unix to vc++ call
  12. pthread_create() of unix to vc++ call
  13. Popup banners
  14. Export enums to client
  15. What is this called?
  16. CacheSize & Insert
  17. What is the meaning of "using namespace"
  18. Allocate memory
  19. Passing Large Amounts of Data to Control
  20. *.exe file and OLE
  21. C++
  22. print preview
  23. Mouse capture with dialog hided
  24. Problem with inline assembly calling mouse interrupt
  25. Setting print properties
  26. Unexpected End of File while searching for precompiled header directives
  27. To create a several line ToolTip (litte help item displayed when cursor over a button in the tool ba
  28. Learning C++
  29. How to know if there is a child window?
  30. Debugging Com
  31. Linked list
  32. Positioning a CHtmlView control in an SDI window
  33. How to retrive
  34. jpg&exe
  35. How to create a bar to add the URL like in Internet Explorer.
  36. Getting filesize, modifydate through ShellNameSpace?
  37. Visual C++ Building error,Urgent!
  38. Memory/stack cleanup
  39. How mutex get shared
  40. Visual C++ Building error!
  41. Sending big buffer in one 'send' or breaking the buffer and sending it in small parts, Which is effi
  42. ISAPI & ASP ??
  43. How to render e-mail messages using CDO Rendering Lib?
  44. Anyone knows what WFCTRACEINIT AND WFCTRACEVAL means
  45. what is ? and : mean?
  46. REG_MULTI_SZ and WriteProfileString()
  47. Renaing DB in Windows CE
  48. System language
  49. How to remove and change text buttons on PropertySheet Page ?
  50. SendMessageToDescendants
  51. Getting Download Status using WinInet?
  52. Disable radiobutton
  53. Threading problems in Windows-95
  54. problems in editing the registry with sample.reg in win-95
  55. console application and ODBC
  56. How to Right Align Sub item text into List Control
  57. How to maximize a View within the frame window?
  58. How to change the size of a Toolbar?
  59. COM Spy
  60. How can get a window handle without specifying a exact title?
  61. How can get a window handle without specifying a exact title?
  62. RichEdit, Flat Scrollbars and other Forms 2.0 with Win32
  63. FILEVERSION
  64. Why does my bitmap disappear ?
  65. BitBlt makes garbage.
  66. Any one knows how to add ActiveX control in a DialogBox in dll?
  67. How to convert a VARIANT FAR* to CString variable
  68. CPropertySheet
  69. Trying to convert strings into numbers
  70. Problem: Dialog with ADO&Grid disapeared! Help me !
  71. Trying to make LPBYTE point to a string value of "1"?? How?
  72. IPictureDisp
  73. Adding Buttons to a Modeless Property Sheet
  74. Default Constructor for a CPropertySheet derived class
  75. How to play DVD using VC++ or VB?
  76. Delphi-like properties
  77. Dropping Files
  78. Fade
  79. Database Filter - Numeric Setting
  80. Problem with CEdit & Focus
  81. Change the title of a property page
  82. Custom AppWizard
  83. Screen Resolution for Screensaver
  84. how to implement property page functionality without the tabs
  85. Dragging Windows
  86. Printing Dialog Based
  87. Save PropertyPage states in file
  88. Bug report on MFC's CDialog
  89. MCI, CD Audio and Changing Playback Speed
  90. Please Help with BITMAP Urgent !
  91. GetFileVersionInfoSize
  92. Simple ping method?
  93. I can't add function into dll !
  94. Assetion with DLLs
  95. Can't register CDOHTML.DLL
  96. Which MFC lib does the CString belongs to?
  97. Does the dump in CException gives the stack information?
  98. SQL_DESC_TABLE_NAME doesn't work
  99. CDaoRecordset
  100. Getting the call stack
  101. pci bus interface
  102. News server
  103. Help!! When Debugging, going into dissassembly
  104. List
  105. dummy question about ActiveX control
  106. Bug of CInternetSession ?
  107. How to kill crashed process?
  108. Owner Draw Static Controls
  109. Single File Run
  110. Saving more than one line
  111. OnKeyDown Function
  112. Problem changing font in a edit control.
  113. Combo Box
  114. Another SQL Update Issue???
  115. losing interface pointer
  116. simulate cgi-bin directory !!!
  117. LoadLibrary and AfxLoadLibrary
  118. LoadLibrary and AfxLoadLibrary
  119. How to test connection of an IP and port?
  120. Debugging multithreaded applications in VC++ 6
  121. ASSERT_VALID fails inside a thread in the DLL
  122. Wrapper?
  123. link error
  124. move mouse
  125. appending to edit box
  126. Getting Error in Saving DIB Please help its Urgent !!
  127. having trouble adding a project to another one
  128. MDI
  129. dc to bitmap?
  130. How to show integer in a AfxMessageBox()
  131. runonce
  132. Simple question about cursors.
  133. Internet Server Extensions...
  134. History List
  135. C++ math
  136. How to get a printer Device context?
  137. VC++: Search in Files
  138. Calling Word Doc from COM
  139. How to get hold of controls in a FormView
  140. Strange problem with AfxRegisterWndClass().
  141. Specifications?
  142. CArchive exceptions
  143. Sending a file to a printer
  144. Drawing Window in OCX
  145. ATL COM Object creation
  146. Read and write files with C
  147. How to use different fonts on the same dialog/property page
  148. C++ User defined type in VB und Java
  149. Where can I find good royalty free icons
  150. Systex error
  151. New in C++ Class & variables
  152. COM
  153. setup a program
  154. Splitter ....
  155. Multiple objects using same Interface
  156. Crash in CWinApp::~CWinApp when getting AfxModuleState()
  157. how to call "open with" dialog
  158. Overloading << operator
  159. adding help?
  160. adding help?
  161. Drawing Icons
  162. message box disabled
  163. Trying to change a colour in a dc. problems with SetPaletteEntry..
  164. CListCtrl inside CPropertySheet
  165. Deleting an uninstaller file
  166. How to add a bitmap to a button with text?
  167. Popup Menu Problem
  168. Immediately required: When I manually create a class for my RecordSet Object
  169. Screen Capture
  170. MSComm ActiveX VC++
  171. How to prevent a process to be killed
  172. ListBox Columns
  173. Timing resolution better than time()?
  174. Detecting Browser Closing
  175. OCX
  176. Anyonr remembers the MIN/MAX algorothim??
  177. Text Edit Control with different background color for different lines
  178. Picture in RichEditCtrl
  179. Hyperlinks
  180. Service program opening file cannot find it.
  181. External tables
  182. CSerialPort Class
  183. Drawing
  184. VC++ ActiveX in HTML Page
  185. Clock Ticks
  186. ARP Table
  187. Screen Savor (Rename EXE?)
  188. Volume Serial Number
  189. connection points info
  190. CRichEditCtrl& rRichEditCtrl = (CRichEditCtrl&)GetRichEditCtrl
  191. Using VB ActiveX with Variant in VC++
  192. ADO OCX vs ADO DLL
  193. Objects Problems
  194. Detecting listening ports and the apps that do it on the local machine
  195. How to dynamically change the title of a CDialogBar
  196. Parallel port Interface
  197. View
  198. Load window in MDI frame!
  199. Help! Can I do this different?
  200. OLE printing
  201. How do I serialize my Dialog?
  202. Icon on a Button
  203. routing table
  204. Printing a rendered image in a device context
  205. CDaoDatabase
  206. Please help on Saving of runtime DIB !!
  207. Porting project, compiling MFC headers
  208. Date problems
  209. Updating Static Text Boxes with Variables (float) with text
  210. How to put bitmaps on a submenu
  211. how to implement property page functionality without the tabs
  212. converting from ODBC to DAO
  213. More Object Problems
  214. Ado - creating indexes
  215. Access to CMyDoc from a modal Dialog ??
  216. Speed Up/Slow down time
  217. Scrolling down in a CRichEditCtrl programmatically
  218. Thread Scheduler
  219. How can I change or set the order how controls are selected by the TAB key
  220. SQL statement help
  221. Simulated splitter
  222. How do you get the IP address of the incoming socket connection
  223. Tool tip position
  224. Any one knows how to add ActiveX control in a DialogBox in dll?
  225. How to use CreateProcess?
  226. Sound alerts
  227. ActiveX Control - CRichEdit Control
  228. Reading from the keyboard buffer?
  229. Please help me. Why my dialog does not showup
  230. Virtual Lists
  231. Finding an item in a Tree Control
  232. ADO Recordsets
  233. trouble when casting...
  234. External modem
  235. Help! External modem
  236. Getting started
  237. How to use CreateFile?
  238. CreateFile/External Modem
  239. MFC MCI CD Drawer
  240. how to use the external modem by CreateFile?
  241. Help in CString
  242. detect modem
  243. Denis Voitenko
  244. need help!
  245. Floating on top dialog box in MDI
  246. How to Monitor Socket traffic?
  247. URGENT: what do I need to add DVD playback to my app?
  248. Detecting the use of precompiled headers
  249. ClistCtrl (Changing the font of one row)
  250. How to display a .bmp file during runtime on a dialog-based app?