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. Delete all records from CDaoRecordset
  2. SQLHDBC for CRecordSet object
  3. extracting decorated names from DLLs
  4. LIB->DLL->ActiveX ?
  5. Overlappedwindow problem...
  6. Add files to recent file list in menu
  7. Release build problem...
  8. Detecting mouse leaving status area icon
  9. How to pass MS defined interfaces as COM method parameters
  10. BrowserControl
  11. hide Taskbar button application for modeless dialog
  12. At the beginning and the end of H files???
  13. MessageBoxes with variables
  14. problems with LineScroll()
  15. instead of Control panel....??
  16. Getting available network printers
  17. dialog app based
  18. connection to sql server
  19. scrolling problem under directX
  20. set Toolbar icon from file
  21. Query Database
  22. Dev Studio
  23. CTreeCtrl (count under parent)
  24. Font creation
  25. Single Instance class and ParseCommand Line
  26. AddNew()
  27. Insert while deleting
  28. Reading CFile
  29. Urgent.Please Help!
  30. Status Bar
  31. clearing editboxes
  32. ActiveX called from html??
  33. Timer function doesn't work
  34. Dialog-like FormView
  35. Finding the drive letter of the CD-ROM
  36. Checkboxes in every column in a ListView
  37. Capturing screen bitmap without parent
  38. Linking 2 theads
  39. cprintf problems
  40. Always get the last selected item when selecting an item in a CTreeCtrl
  41. Always get the last selected item when selecting an item in a CTreeCtrl.
  42. DDX & Active X
  43. Idiot+MDI+MFC=Cannot even make a button
  44. Copying a CWinThread pointer !?!?!
  45. outlook express..HELP
  46. How can I access the existing ActiveX
  47. cursors
  48. Easy books
  49. SetWindowText( )
  50. WM_TIMER
  51. Plugin Architecture?
  52. Ruler in Scrolling view + other Q's
  53. COM port:Opening and Reading
  54. CHttpConnection problem
  55. How to create a form view dinamicaly?
  56. I need SourceCode to Install a printer driver on NT
  57. How to attach a view to a CFrameWnd ?
  58. Inheritance problem
  59. Changing Bitmaps
  60. Doesn't Work If Visual Studio 6.0 NOT Installed...
  61. poker hands
  62. NMAKE makefile
  63. DWORD error
  64. poker hands
  65. A personalized CToolBar control
  66. "system" command
  67. Set focus to another app
  68. Set focus to another app
  69. How to open a file
  70. Recover a deleted file?
  71. Small client/server app.
  72. How to convert CFromView resource to dialog ?resource
  73. OnKeydown msg in dialog box
  74. CrytoAPI
  75. OnIdle()
  76. Web Developer - Dallas, TX - Pre-IPO
  77. Configuration setting
  78. platform independent
  79. Sending a message from a child worker thread to the parent UI thread ???
  80. Can't get address of a class member function
  81. UDP Packets/Multicast/Events/Separate Processes
  82. *.LNK Files
  83. Changing the Background Color HELP!!!
  84. Access to Doc/View members from SetTimer CALLBACK function?
  85. How to click and get the handle of the clicked item in a CTreeCtrl
  86. Windows Socket Programming
  87. How to force CListBox to sort content again
  88. MFC AND ActiveX
  89. How use CDocTemplate?
  90. ToolBar/StatusBar
  91. Display Portion of Image
  92. Daylight Savings time
  93. Database Record Count (part 2)
  94. Non 3D Edit box
  95. BMP on Dialogs background
  96. Color conversion routines
  97. Read/Write binary file – platform indepentent.
  98. Urgent, How to use IHTMLElement2::attachEvent( ) ????
  99. Complaint about postings for binary-technologies.de
  100. DB Record Count with CDatabase, CRecordSet or SQL
  101. Colors in controls
  102. memory size
  103. Curves
  104. How to disable recyclebin delete confirmation dialog.
  105. Compress AVI file
  106. CAsyncSocket, threadspace, and collision detection
  107. DAO multiple row update
  108. COM and C++
  109. Memory allocation problem, please help!
  110. Directory functions
  111. Need the code for this program..Thanks
  112. MCI Audio / Level meter
  113. CRecordset and nchar of MS SQL Server
  114. Subclasses, templates and friendship
  115. Setting {any} variable
  116. Image Display
  117. Capturing screen bitmap without parent
  118. CDaoException
  119. MFC and Picture
  120. PropertySheet and SubclassDlgItem
  121. Creating views with different styles
  122. pApp->WriteProfileString(..)
  123. [q] for browser instance creation !!
  124. Error capture from Aumation objects in ATL
  125. display grayscale image
  126. Help Im new
  127. Register with ROT - can it be done from within an object
  128. Progress Bar
  129. String operation fail!
  130. macros
  131. Dialog
  132. Write to Excel file
  133. /Stack:num
  134. this pointer changes!!
  135. Drag/Drop
  136. need help with compileing
  137. Registry and Hardware Details
  138. sleep in C ?
  139. Time out in C
  140. True method of a control disabling
  141. Reading Variables from a static file?
  142. Slight problem with serialization
  143. about Edit Control in a FormView
  144. MultiThread Application
  145. IDL for an OCX - Please help
  146. Pressing toolbar buttons at runtime
  147. SetFileSecurity
  148. Pb with ActiveX control
  149. how to update the form without updating the buttons.
  150. UDP Services
  151. Problem accessing Document/View from OnIdle()
  152. vc++1.0 to vc++5.0
  153. SNIFFERS under W95/98 or NT
  154. LNK2001
  155. SCROLLING IN CListCtrl
  156. COM and Impersonation of process
  157. Context menu
  158. Showing dialog when starting application(DDE support)
  159. ActiveX
  160. Wierd Problem with CFileDialog
  161. Cursors are missing
  162. Bitmap in clistctrl
  163. When to repaint window area
  164. A new view
  165. Cast Problem
  166. Drag And Drop problem
  167. How can I add some files to external dependencies folder ?
  168. private and protected class members
  169. How can I develop a win95 application on WinNT?
  170. OCX without wizard
  171. I can't RegisterClass() !
  172. Application start before system shutdown
  173. Newbie: Creating a connection
  174. CTreeCtrl - Hiding a tree item
  175. Two classes knowing about eachother.
  176. Color setting in C++ 1.5
  177. Daylight Time-Offset
  178. CListCtrl sort
  179. Using AddPrinter() and AddPrinterDriver() functions
  180. mutex or semaphore in C
  181. Visual Basic to Visual C++ Conversion
  182. Email Retrieving .. using Visual C++
  183. CListBox and color
  184. How a Dll get the caller's information
  185. How to declare global variable in VC++
  186. ADO - VFP double data type
  187. menu bar, mfc
  188. Hide some header file in workspace?
  189. Language
  190. HELP microsoft
  191. Passing an array from COM server to VB client. HOW???
  192. Using VB COM components in Visual C++
  193. Thread function as a class member
  194. Printing bitmap
  195. Reading Outlook email
  196. Regarding Smtp Authentication
  197. Where can I find the enterprise manager icons
  198. Regarding Mail Server in Leased line of ISP
  199. Modify Internet Explorer ?!
  200. [Q] I don't wan to see system dialog. "You have run out of disk space on drive E."
  201. Defaulting Text in a Document
  202. Imaging
  203. help --> How to use IWebBrowser2
  204. toolbar
  205. HELP-browsing for a directory
  206. Dialog Bars
  207. Slider Control
  208. COleVariant
  209. THreads
  210. browser address input Hook
  211. Passing pointer of dlg to another class
  212. Font setting problem
  213. Communication b/w 2 apps
  214. Output problems
  215. ADOX Append Column Yes/No MS Access
  216. edit box
  217. Launching my exe
  218. DLL problem
  219. error lnk2001
  220. New&Delete vs. malloc&free
  221. How to use CRuntimeClass ?
  222. DOS BATCH FILES HELP!!!!
  223. DOS BATCH FILES HELP!!!!
  224. Communication b/w 2 standalone apps
  225. Dialog minimum size
  226. Hit testing?
  227. Viewing files in Notepad
  228. Message Handling on CEdit
  229. Adbout ODBC
  230. ActiveX & html
  231. Using class in different directory
  232. Newbie question about programming
  233. Cannot colorize text!!!
  234. Maximize Window
  235. Sending & Receiving mail using VC++
  236. read file .dat and drawing
  237. Serial port("COM2") programming under Win32 Console Application.How??
  238. Adding context sensitive help
  239. Anyone know why this happens?
  240. bitmaps with rectangles in a document
  241. MDI to SDI
  242. PeekMessage
  243. MS SQL Server database
  244. Would this be possible to have set up on CodeGuru
  245. context sensitive help
  246. radio buttons
  247. CListCtrl with mutliline entry
  248. print unsigned char?
  249. Is it possbile to obtain the hWnd (or CWnd*) of a Control from inside its message handler??
  250. Checking out if the active window is #2