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. CProgressCtrl colors
  2. Edit Box / Threads
  3. "Record and Play"
  4. How can I export Functions with proper funktionnames ? (no '@@??')
  5. CScrollView::SetScrollSizes() - How to reset?
  6. UnInstall
  7. How to i can add button in CPropertySheet?
  8. How to: Get index of CTreeCtrl item ?
  9. random integers
  10. Printing to edit box from threads
  11. PLEASE HELP ME!!!!!!
  12. File properties
  13. LoadBitmap Debug Error
  14. Modeless Messagebox
  15. Question. Urgent. How to insert the control over 255 into CFormView
  16. Pen problems
  17. max filename length in NT 4.0
  18. enable/disable close button
  19. scrollbar problem!
  20. About dev. Studio help
  21. Display a graphic in a windows program
  22. dlgdata.cpp line 43
  23. Need some help with InsertMenu!
  24. Property Sheets
  25. Display a Graphic in a window
  26. How do you get the "referenced domain name" under Win 95?
  27. Selected Menu's Text
  28. database design using vc++
  29. new project/database project..
  30. Sharing data between classes
  31. registration and licensing software
  32. DirectX & MFC !URGENT!
  33. Reuse Access modules
  34. List Control with more than two tick boxes
  35. Copy Control into Bitmap - how?
  36. Copy OpenGL Scene into Bitmap - how?
  37. How do I force a dialog to the middle of the screen?
  38. How to: Pop menu without resource?
  39. Where do I find the resource of bmp?
  40. Collection Classes
  41. Howto: Get access to user defined Visual C++ Resources
  42. Changing Desktop Background
  43. resizing
  44. File Dialog: How to change button caption?
  45. Q: How to remove ICON from Taskbar and Put one in the System Tray?
  46. Redirecting Output to a File
  47. BYTE ORDER
  48. Embeding tree control in dialog
  49. Another WM_GETDLGCODE msg looping
  50. Custom Scroll bars???
  51. Post Message
  52. Treectrl
  53. Loading file on program start (MFC app)
  54. Finding a running app
  55. Resizing avi from large to small fonts.
  56. AfxBeginThread
  57. MS ListView Control Version 6.0 problems
  58. Help with RichEdit
  59. Accessing Excel Spreadsheets in MFC
  60. CListCtrl with multiple checkboxs
  61. Drag and Drop non-files
  62. Image on the screen
  63. Please help - Question on communication between two VC++ instances
  64. SimpleMAPI
  65. C++
  66. Message Interception like SPY++
  67. Industry Magazine
  68. Threads
  69. Printing - can i indicate a COPY number
  70. Can I use an ActiveX without it's WRAPPER class ????
  71. OLE Control Question
  72. MIME TYPES
  73. Bitmap transparent background color
  74. speed with StretchDIBits
  75. Buttons On Property Sheet
  76. Dialog Bar messages
  77. Call Stack
  78. Changing names within the MRU list...
  79. Disabling/Enabling drop-down menus
  80. LoadBarState Problems
  81. CMenu::GetClientRect?
  82. Splash Screen
  83. how can i create a docking transparent window?
  84. Sort a list control box
  85. Auxiliary Input Control
  86. changing the text on a button
  87. Inserting a hyperlink in my document
  88. help PLEASE deadline.. insert text into document in mdi
  89. Dialog Apperances
  90. Getting Left/Right keys
  91. CTRL+ALT+DEL
  92. drag and drop
  93. Error spawning
  94. TAB ORDER in DLG app
  95. I almost die, please help me!
  96. How to capture Mouse Curosr?
  97. What is the use of OPT extension file ?
  98. getting file names selected in the explorer
  99. Visual Interdev IDE Extensiblility
  100. Problems faced while developing an activex control using the Doc/View Architecture
  101. using the zlib compression library
  102. Problem with CComboBox :: URGENT ,Please help
  103. Q:Scroll the listview
  104. Changing mouse cursor
  105. Socket Programming
  106. API for IIS?
  107. Help! How to get index of an item in CTreeCtrl ?
  108. Font Problem with CPropertySheet::URGENT
  109. Ping utility
  110. Databases and COM, ErrorMessage Memory can't be written.
  111. The background gets dirty.
  112. Changing project name
  113. enhancing string class
  114. VB5
  115. Inserting control itself?
  116. Date Format??
  117. Quick Question on Worker Threads....
  118. RGN in a dialog in a dll
  119. Looking for GOOD Internet-MFC book
  120. RGN in a DLL
  121. Drawing in a dialog box
  122. SQL_TYPE_TIMESTAMP & SQL Server
  123. urgent:Msvcrt40.dll and install shield
  124. Urgent: Getting a "data truncated" error message while accessing a large database
  125. Localising Strings
  126. IRQ/IO Details Using VC6.0
  127. want to change format
  128. Urgent !!! Want to change format
  129. List of open child windows
  130. Problem with MRU File List--HELP!!!!
  131. Help Files
  132. How can I access user defined resources?
  133. getting icons in dlls or exe in MFC
  134. Help Me!
  135. SLEEP GRANULARITY???
  136. Calling the same dialog twice?
  137. CFileFind
  138. Bmp information
  139. ShellExecute
  140. Seriously frustrated-->End of File Error...
  141. Linking FORTRAN and C; intrinsic functions
  142. dynamic number of cursor in a slider
  143. Help need on MS Word file creation
  144. About SQL Server ODBC driver and its functionality
  145. Property Sheet
  146. cdonts.dll Where is it?
  147. Colors don't display in 8bit mode
  148. Creating Controls at runtime
  149. Netscape style progress bar
  150. Hiding Windows
  151. Converting DWORD to CString
  152. How to print listbox contents
  153. DbGrid on a dialog inside a com object. Don't work?
  154. inline doesn't work like a macro?
  155. CDaoDatabase::GetTableDefCount()
  156. COM Application model
  157. InsertFromFile fails
  158. TreeCtrl
  159. Dialog boxes..
  160. Changing the View-class to another class
  161. Changing a class to another
  162. how can I move to next edit box when user hit enter
  163. Inserting multiple view in container
  164. Getting Disk Manufacturer
  165. ActiveX Controls using ATL
  166. Finding text in a CListCtrl
  167. Responding to menus
  168. Dynamic menus
  169. Wrong info on CreateThread fuction from Microsoft SDK
  170. How to send and receive user defined message in Doc Class
  171. CTreeCtrl and RButtonUp
  172. pointers from one Cdialog to another Cdialog
  173. socket source code
  174. Help on pointers, form Cdialog to another CDialog
  175. About ListCtrl
  176. CListCtrl Multiline Items
  177. Installation Wizard for my Applications?
  178. Active Scripting and Array passing
  179. How to get TCP/IP header
  180. Inserting MessageBox Exclamation icon into my own Dialogbox
  181. CDib Class from Programming Visual C++ 5th ed.
  182. Question about a CEdit control which is used to input password.
  183. Ofstream/Basic Ofstream
  184. about toolbar
  185. ShellExecute in Console App?
  186. Registry Stuff
  187. How to pass multiple parameters to ASP client from COM Server
  188. Creating NT Accounts
  189. Icon not showing up in explorer correctly
  190. NT Service and COM.
  191. Database objects
  192. NT Services
  193. how to use an object in a OLE server without a class wrapper?
  194. Creating a new database file
  195. Toggle full screen in DirectX
  196. Flickering mouse when using DirectDraw
  197. DLL Socket Shutdown
  198. Accelerators in MDI
  199. pointers and accessing difficulties....NEED HELP!!
  200. C++ and VB
  201. File Dialog - Why can I change caption on "Open" button but not "Save" button?
  202. CListCtrl multiline (sub-)items
  203. Shell_NotifyIcon
  204. Are there any mfc or api functions working with mail files? (*.msg for example)
  205. How to convert int to a String object?
  206. CDib Class, Programming Microsoft Visual C++, 5th Ed. repost
  207. get text from dropdown combo??!
  208. info on dynamic menus
  209. how can i close a blocked socket thread
  210. I am facing problem in using the CRectTracker in a CScrollView ??
  211. If you use windows 95a
  212. How to compile ASM file
  213. How do I remove the titlebar of Application in MFC SDI project code?
  214. Non_continuable exception,please help!!!
  215. How to improve speed to input record? need help.
  216. spin controls...?
  217. Simple C++ program with graphics.
  218. How to make FTPTREE faster?
  219. MAKELPARAM
  220. calling and executing a dialog box
  221. calling and executing a dialog box
  222. TIMER: HowTo use SetTimer and OnTimer in Document class?
  223. VB5
  224. Learn C++
  225. TLS(thread local storage)
  226. EventLogging?
  227. Toolbar
  228. Fonts
  229. Problem creating Dialog under COM (Exe) Server
  230. Help with CalcWindowRect()
  231. Needed FAT32/NTFS specifications/descriptions/headers for low-level disk I/O!
  232. Installing Printer Driver programmatically
  233. how to obtain the "Window rect" of a floating pop-up menu?
  234. DLL's
  235. MultiThreading
  236. URGENT: Cryptation
  237. Using an object of one process from other process.
  238. How I can do absolute disk sector read/write (int13h) under 95/98?
  239. Text Scaling
  240. LPT port address
  241. Hard returns in RichEdit
  242. Printer and Page Setup Common Dlgs
  243. Control arrays
  244. Advanced File save and open question?
  245. Playing wav files simultaneously.
  246. Moving Directories and contents
  247. Refreshing the screen of a transparent window
  248. Disable controls in a dialog box
  249. AppName and AppVersion
  250. Microsoft Excel 97 Events Using VC++