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. Can anyone tell me why this function would fail?
  2. CMyRecordSet
  3. Inserting object to a PtrList
  4. Fatal error in release version
  5. Problem with CString::GetAt()
  6. readonly recSet
  7. readonly recSet
  8. Accessing value from edit box
  9. please help -- desktop screen
  10. File Dialog and Windows 2000
  11. using templates with STL
  12. Journal Record System Hook
  13. how to hook wndproc ?
  14. AVI Editor?
  15. A few rich edit control questions
  16. NT Devices
  17. internationalization & locale
  18. CDocument help
  19. Help wanted
  20. safearrays
  21. HTML help conversion?
  22. arrays
  23. Is this possible??
  24. arrays
  25. How can I programmatically auto hide the system taskbar ?
  26. NT Transfer limit?
  27. Dialog Scroll Bars
  28. Closing a dialog box automatically
  29. Urgent! Getting IP
  30. ToolBars
  31. How to convert Hex to Decimal
  32. Dialog box resize
  33. Appending context menu for CEdit
  34. Playing AVI movies using MCI commands
  35. How To obtain information about the window under the cursor.
  36. onMouseMove
  37. Returning COM object without calling CoCreateInstance
  38. interesting warning
  39. opening a file for editing
  40. Create a bitmap from a text
  41. Help! Cannot add page to control panel property sheet...
  42. Ondraw
  43. Serial Communication
  44. format cpnversion
  45. How to determine what version of Internet Explorer is installed
  46. where is 2 stored?
  47. ADO unhandled exception
  48. constructor pointer..
  49. Detecting MouseMove over button
  50. How do I use space
  51. Resource dll
  52. Console application
  53. Using dao or ado in dll?
  54. CPropertySheet & vertical tabs
  55. Macro Processor for VC
  56. File properties and Help info
  57. How to..
  58. help me
  59. help me, please
  60. Variant from BSTR
  61. Identifying any file being deleted in a dir
  62. CString in worker thread -> memory leak!
  63. Set Font for CDC
  64. Catching the Control Shift event in an edit control
  65. Greek Capital letter Fi
  66. Design Pattern
  67. How to change Menu Item's text
  68. Implementing Callback
  69. Question about the foucus change
  70. How can I encipher a txt file?
  71. Memory device context ?
  72. Array of Classes
  73. What is MFC not good for?
  74. Dialog bigger than the screen
  75. How get Yesterday Date?
  76. Initialization of ATL Control
  77. Changing Views
  78. Displaying Bitmaps
  79. MySQL and VC++
  80. Latest Release of VC++ ??
  81. Changing Views
  82. Koti -- How to add a tab to control panel / display
  83. Koti -- How to add a tab to control panel / display
  84. Koti -- How to add a tab to control panel / display
  85. how to set the keyboardfocus on a control
  86. display properties
  87. CEdit & multiline mode
  88. Bitmap in CComboBox
  89. Installing files on WinNT
  90. Z -order of floating toolbars
  91. Csocket::Recieve
  92. Width of the Edit control
  93. How to capture screen(desktop) picture
  94. Windows CE and VC++
  95. Bitmap converting code
  96. CMenu!
  97. Adding a base class in the Wizard?
  98. Can I see the vtable in the Visual C++ Debuger of a deviated class include the vritual funktion of t
  99. "system()" under Linux?!? or wrong compile
  100. Using LDAP with C++
  101. How can I make a edit cell class of a CDateTimeCtrl with the CGridCtrl class?
  102. Trapping Windows Messages
  103. Open file in HtmlView when double click on the document
  104. Capture screen (desktop)
  105. Display of comms data to Modal dialog in Formview SDI app
  106. DAMAGE: before CRT block (#59)!!
  107. convert-problem
  108. SAFEARRAY
  109. COleControl window
  110. How can I know that there is a button pressed?
  111. OnIdle()
  112. Check Boxes
  113. Calling a Variable from another Variable
  114. Problem with CoInitializeSecurity and CoCreateInstanceEx
  115. Problem with CoInitializeSecurity and CoCreateInstanceEx
  116. how to read
  117. communication using modem
  118. Close Button "X"
  119. Close Button "X"
  120. Passing a IDisp interface from an ActiveX to an other in a HTML page
  121. What is difference with Window NT and 9x for systray icon
  122. Why does my program need W95-SCM.DLL?
  123. what is wrong here
  124. horz scrollbars in CRichEditCtrl
  125. Header files problem
  126. system date format
  127. desktop
  128. Searchbutton PLEASE HELP ME!!
  129. modifying window styles
  130. Charts
  131. self resizing dialog
  132. Changing Tab spacing wih CRichEditCtrl
  133. Audio Streaming and wave structure question?
  134. How to write database monitor program
  135. ATL Events with free threaded marshalling
  136. print setup
  137. database access in dialog based application
  138. Sending mail from my program using Socket
  139. CListCtrl (horizontal scroll size)
  140. Why would a release executable behave different from it's counter part debug executable?
  141. Get OS version (win2000 or win NT)
  142. C++ and Access 2000
  143. Looking for a Good Grid Control
  144. checking the values in side safearray
  145. tab Control
  146. GetOpenFileName
  147. Checking in DCOM
  148. VS 6.0 (SP4) Debug Bug
  149. Searchbutton - NEW QUESTION
  150. CreateIpForwardEntry
  151. readonly recSet
  152. Drawing to listbox area where there is no data.
  153. CRecordset::dynamic
  154. std::string to _bstr_t
  155. Is somebody succeeded to add toolbar into IE 4 ?
  156. How to allow for moving a window?
  157. HELP! Dialog vertical scroll bars
  158. Toolbars and Controls HELP!!
  159. MK_MBUTTON
  160. infinite loop
  161. WinME & Visual Studio
  162. simple question
  163. please help me with database
  164. AfxMessageBox is Freezing my program?!?!?!
  165. Mouse NOW!
  166. Listboxes with Flat Scrollbars?
  167. Password & DAO Access
  168. How to Call an ATL COM .dll from a C program?
  169. CStatusBar
  170. Post binary data use IWebBrower::Navigate
  171. ListCtrl problem
  172. CSocket, HELP!!!!
  173. Adjusting privileges for ReadDirectoryChangesW
  174. managing GIF files
  175. IE , What events are fired by user ?
  176. icon in explorer
  177. CWnd::FromHandle
  178. How to save MSFlexGrid contents to file ?
  179. Write to Network Port
  180. How to implemets contextual help on the controls of a form view
  181. How to catch a mouse click on non button control
  182. How to include rtf file?
  183. Problem with Hi-color toolbar / palette
  184. Z Order, Z Order, my kingdom for some Z Order!!
  185. control creation and visualization
  186. Windows screen display locks up
  187. Owner drawn control not drawing in common dialog box CFileDialog
  188. manipulate cursor
  189. HELP! Adding new device
  190. Clear To Send????
  191. Hi!
  192. Hi!
  193. Word automation
  194. URGENT HELP PLEASE!! POST MESSAGE TO A CWnd WITH NO hWnd
  195. How to make a char *Func()
  196. Playing two sounds simultiounsly using DirectSound how?
  197. MDI
  198. Worker thread
  199. How to hadle event-handler function of ActiveX?
  200. CSocket Clear To Send???
  201. DLL Versions
  202. How to Change Num Lock on Keyboard?
  203. Urgent - CSliderCtrl
  204. Cedit multiline LF,RC sending ?
  205. VRML
  206. Accelerator table
  207. Dynamically creating multiple controls
  208. DataSource problem!
  209. geting vector stl to work
  210. Changing line colors
  211. Screen Scaping
  212. SHBrowseForFolder !!!!!
  213. Debuging in DCOM
  214. How to get ahold of an open browser (ie)
  215. MS Chart
  216. Handling Selected Text Color in Edit Control
  217. How can I hide the child window in an MDI appn>
  218. Using the CDateTimeCtrl and Visual C++ 6.0
  219. updateable join
  220. Using Visual C++ to open a log file (in fact a text file) and sort out data, then using the data to
  221. SetText doesn't work on TextBox?
  222. Problem in using RFX_Binary
  223. default browser
  224. resource overflow
  225. resource overflow
  226. Message Handlers (Proc)
  227. Is there a way to Implement a Screen/capture Print Function ??
  228. Printing Problem
  229. insertion to BLOB field
  230. Unicode/Static text control
  231. IF EXIST ... ????
  232. Retrieving a record with NULL values.
  233. First-chance exception in sdi.exe (GDI32.DLL): 0xC0000005: Access Violation.
  234. MDI with Delphi style???
  235. Dynamic connection whith ODBC
  236. anyone please help
  237. ActiveX (OCX) registration into web page automatically when user download page
  238. Getting executable name from window handle
  239. System Idle process
  240. SELECT statment
  241. Simple Dialog Bar Question
  242. Spin Control
  243. hello some body help me please
  244. DirectDraw
  245. RightClick in RichEdit - got a CPoint, how to get character pos?
  246. Scientific notation
  247. DCOM network problems
  248. Getting the window color
  249. Worker Threads
  250. ADO -- MFC or #import