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. DLL problem
  2. Matrix
  3. Help!?!
  4. Let modem make music
  5. Let modem make music
  6. Sorting in a list view
  7. Urgent Again: How to Get a Domain List?
  8. MoveNext in ADO.
  9. Can't set breakpoint
  10. How to hook keys in ActiveX com control running in IE?
  11. Security ID
  12. PE file format
  13. Using CreateProcess
  14. Fileupload thru DCOM
  15. Edit Control in Direct X
  16. how do i use this code
  17. Printing ASP Pages
  18. Help with Errors, Please!
  19. Help File
  20. Messages and timing
  21. Check list box
  22. Navigating Records in ODBC
  23. How to let my voice modem play wave file
  24. How to let my voice modem play wave file
  25. how can I set a double to 0 without getting the warning 'conversion from double to float, possible l
  26. Can we use icon as column heading in ListControl?
  27. FILE_BACKUP_SEMANTICS question
  28. Using registry...
  29. trees trees help me im goin nutz!
  30. afxdump - swallowed lines
  31. How to use devstudio for other compiler
  32. Install dlls - Admin or not?
  33. Changing Dialog Fonts - GREEK
  34. Changing Menu of IE through an ActiveX control
  35. Compiler Error
  36. OnDraw
  37. VC++ Unhandled Exception Error
  38. printing and copies
  39. CLongBinary
  40. Menu
  41. Parallel Port
  42. Problem about load bitmap on a button
  43. How to implement function overloading within an interface
  44. I need help, please!
  45. Windows taskmanager manipulation
  46. A simple Modem question.
  47. Accessing view member functions from another class
  48. Tool tips
  49. How to lock a record by using odbc api?
  50. RTTI -> strange behavour -> cam somebody help?
  51. Network Adapter Enumeration
  52. ADO Transactions
  53. CSinleLock assertion failure
  54. Startup banner like Netscape. How to ?
  55. Generic control event message handling
  56. Dialog browsing directories.
  57. How can I make drag and drop between list controls ?
  58. Dual CPU system - does VC use it ?
  59. PRINTER DRIVER
  60. Loading a resource string...
  61. Change Desktop Background
  62. String Manipulation
  63. Messagehandler for WM_EXITSIZEMOVE
  64. Problem using a CDialog derived class in a DLL
  65. Need to check Processor and Mem requirements
  66. MSFlexGrid
  67. Eliminating flicker when using a custom resize function
  68. network connection
  69. do-while loop & UpdateData(FALSE)
  70. Hiding Menu
  71. [Q] How to create child frame window in view?
  72. How to create child frame window in view?
  73. date format ms project
  74. Windows98 How?
  75. Cab Question
  76. Convert a buffer to WAV format?
  77. Tray icon for a NT service
  78. How to create a simple *.dbf file ?
  79. Smart Proxy
  80. Sockets and consoles
  81. MFC Class CRgn
  82. BIOS checksum
  83. Dialog with property sheet hangs when opening modal dialog
  84. How to write a member function that will cause ALL objects of that class to execute it?
  85. CListCtrl adding second header
  86. help! ATL Link error
  87. Can't include Document header file in new class!
  88. how to change the dialog box'class name
  89. how to change the dialog'class name
  90. how to change the dialog' class name
  91. Converting EUC,JIS, SJIS from/to Unicode String
  92. My DLL are not exporting the functions
  93. How to get the fonts of the control Panel's Display section?
  94. Howto Get Video Adapter & Memory
  95. Help with output window message...
  96. Random Number Algorithm
  97. Kill processes
  98. Inheriting from Active-X Controls
  99. Is that some kind of heap Problem
  100. Using only one instance of an SDI application
  101. Need a Debug Window
  102. Screen Saver
  103. .DEF file works but __declspec(dllexport) method still gives compiler decorated name
  104. 32-bit Dll
  105. CListCtrl
  106. DHTML view
  107. Rich Edit Control Problems
  108. HTML view
  109. Recording Dialog
  110. 2 simple CListCtrl questions = )
  111. Attn: RIC OR ZULFI....dialog box and database problem
  112. CAnimateCtrl Problem WinNT
  113. Opening files of different formats (ie. txt)
  114. How to change font of a cell in a CListCtrl?
  115. How do I change button states via SW (rather than mouse)
  116. Printing the ListCtrl from the Dialog
  117. Read anonym on FTP - like port 80
  118. How do I know when there's data available...
  119. How to get handle of an icon????
  120. How to Custamize SDI application View???/
  121. IS bringing up a Console Window from a DLL?
  122. ActiveX array persistence
  123. Using Richedit for Reporting
  124. PGP - Pretty Good Privacy
  125. Combobox in List Control
  126. ATL Object Wizard
  127. How to change NAME of the title bar??
  128. new/delete array of objects
  129. Problems upgrading from Visual Studio 5.0 to 6.0
  130. CHtmlView
  131. Exporting a class (--> .def file)
  132. FlexGrid
  133. simple handling of functions
  134. Get a CBitmap from a CWnd
  135. MFC
  136. Why need MFC Extend DLL
  137. ODBC's SQLBindParameter
  138. ADO Custom Providers
  139. NT Registry
  140. AT Command Document?
  141. AT Command Document?
  142. Drag n Drop Out side of a window
  143. How to use odbc api to detect whether a record is being changed by other programe?
  144. How to call add Printer Wizard
  145. Importing forms of VBA to VC++
  146. How do I get the length of printed page?
  147. Using BINARY_REG in registry.
  148. C and C++ and MFC
  149. Listboxes on a dialog...
  150. Can I change my EXE into DLL ?
  151. Tree control Serilization
  152. How do I override DoPaint in VC++ 6.0
  153. How to check current screen resolution
  154. Ado not connection. help~~
  155. [ADO] MS/Oracle ODBC driver's bug
  156. Tool tip
  157. Macro to ADD FILES TO PROJECT
  158. Sharing a Win NT drive...
  159. How to copy a binary file?
  160. create lnk-files
  161. DMA under Windows?
  162. Loading a resource string with FindResource
  163. SQLConfigDataSource SQL Server Configuration gives problem when UID and PWD Parameters are specified
  164. pointer to member function
  165. How to disable the ENTER key
  166. How can i make a listview control transparent?
  167. Dial up
  168. change color for only one character in a string
  169. Grit
  170. How can i use a dll, from the beginning
  171. Config a datasource to be System DSN
  172. DCOM
  173. Can We Change the Colour CListBox Member?
  174. Which API to use to Upload files from client to server.
  175. StatusBar
  176. Reading from floppy...
  177. Pointer to Member Function
  178. Too tip of the Toolbar
  179. Windows Message capture and resend to another instance of the same application at some other time.
  180. True Type Fonts
  181. Configuration location
  182. VC++ : program's size
  183. How to send ButtonDown message
  184. Polygon Dialog
  185. Tree Control in a dockable dialog bar
  186. User Interfaces.
  187. CListViewCtrl, setting color of a row?!
  188. code documentation
  189. PING !
  190. Printing with Word 95 (automation)
  191. folding editor
  192. How to use bulk row fetch
  193. printf & exponent
  194. Dynamic Editbox
  195. convert in a non-const type?
  196. <bitset>
  197. Forcing a user to drop during a drag
  198. CScrollView problem
  199. Can someone confirm this?
  200. how to deal with db and Thread?
  201. How to wake the computer?
  202. Formatting Excel Cells via Visual C++
  203. Notify the parent
  204. Mfc generated Help files
  205. Full Screen
  206. Quoted constant as compiler argument
  207. HTML Help.
  208. DDE in C
  209. ALERT! DlgDirList/compiler problem(?)
  210. ODBC
  211. copy constructor (very basic thing)
  212. C (very basic)
  213. I/O with C++
  214. Help Files - Corrupt RTF file
  215. Setting a minimal resize for columns, BUT without making a new class that inherits from CListCtrl...
  216. Problem with multiline CEdit created dynamically
  217. Full name of owner of a file - Finding out programmatically. (WindowsNT Server)
  218. Prevent Window Move
  219. Using classes in COM
  220. I hate bill gates
  221. Shell32.dll
  222. Setting cin and cout to use a Console
  223. Flickering Problem
  224. How to efficiently blt a bitmap and draw on it?
  225. RichEdit textcolor help please...
  226. brackets in CRecordset
  227. ODBC - text files - schema.ini
  228. Outlook Express Programming
  229. SDI to MDI
  230. Serializing a CObject derived class
  231. I can't seem to subclass the inplace edit control of a CListControl
  232. CComboBox
  233. Database Engines/Advice
  234. DLL do not unload of memory
  235. text files
  236. WinInet
  237. from SDI to MDI ?
  238. listview icon
  239. VB Implements keyword in Atl Project?
  240. CMap compile error
  241. unexpected EOF while looking for precompiled header directive Error->>when adding files to a p
  242. MainFrame Pointer?
  243. real player protocol?
  244. Serializing CStringArrays...
  245. ODBC Restriction
  246. Information on ADO
  247. Does there exist a PostCreateWindow() or something similiar
  248. Has Anyone Run Into This One?
  249. Showing View #2 in MDI App
  250. How to determine if file is binary or text?