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. Terminal Program
  2. Client/Server
  3. Bitmap on CButton in dialog box
  4. ATL derived Class
  5. LineDDA
  6. Visual C++
  7. ScrollBar Funtion
  8. path-setting in Visual Studio 6
  9. Visual C++ 6.0 DLL
  10. How to connect to the SAMs database ?
  11. don't work HScroll in ListBox
  12. background application?
  13. This will make you think!
  14. BSTR, CString
  15. A Dialog File transfer
  16. filpped shape
  17. How do I make a office-like shortcut bar?
  18. BSTR-content in CodeView
  19. Stop that view opening on exe of MDI app!
  20. I cannot use SetDlgItemText in InitInstance
  21. COM
  22. CEdit in MDI in run time
  23. interaction with DOS-programme
  24. sorting
  25. Using Radio Buttons
  26. Language codification
  27. Openning an Excel file using VC++
  28. Printing multiple copies to a dot matrix printer
  29. Non Ole Drag and Drop
  30. Creating new thread
  31. Rotate bitmaps
  32. Get Machine IPAddress
  33. What is microsoft resource compiler?
  34. help..unresolved externals while linking
  35. Auto Code Completion Pain
  36. this pointer
  37. Debugging
  38. How to disable CFormView's controls' keyboard input focus?
  39. How to load GIF image?
  40. COM/DLL: Challange Question
  41. Fonts Please Help
  42. Function with variable list of arguments
  43. How to create a control that is not a rectangle???
  44. Redraw CListbox
  45. Processing Events - ActiveX
  46. Looking for dialog editor’s source code
  47. DATE Conversion
  48. Update or redraw Listbox
  49. Source Safe versioning
  50. binary file
  51. All Guru, please I need your help urgently!
  52. Batch file to edit registry?
  53. getting the windows directory and copying files
  54. Heeelp
  55. Controls inside a CView
  56. Some controls not refreshing on restore from maximize/minimize.
  57. Drawing bitmap on window
  58. new menu items in doc/view architecture
  59. C++/DataBase
  60. Change Windows time
  61. question about classes
  62. Finding files
  63. need to pass massage to HWND
  64. displaying formatted text in multiline CEdit
  65. CComboBox
  66. Help with SubclassWidow... what's wrong with this code?
  67. Initializing a CEdit control in a propery page
  68. How do I register a com server on my NT workstation
  69. Finding IP Call attribute in Address Book
  70. Multiple projects in a workspace
  71. Disabling Controls
  72. vbasdk
  73. CAsyncSocket and CSocket help
  74. How to load bitmap from other locaiton to Dialog
  75. Using FindWindow to check and running application and kill it.
  76. Multi table outer join
  77. Integrating javascript and c/c++
  78. Help with some stuff
  79. "operator new" behaviour on alloc. failure
  80. Multithreading
  81. Virtual-key Codes definitions
  82. Mutimedia real-time sound?
  83. ? and :
  84. UpdateData(FALSE)
  85. Read only combo box
  86. C++ CGI
  87. Compiling
  88. how to convert from WORD to char?
  89. Multi-clipboard program, WM_PASTE or else?
  90. any body tell me which tech in best for object modeling
  91. Urgent!
  92. Win32 API on-line manual
  93. LoadLibrary fails
  94. using createthread with a class's private function
  95. Custmoizing function keys
  96. Modifying a pointer.
  97. About DBLib
  98. LoadLibrary fails with "Invalid Access to memory location" - URGENT
  99. about stored procedudes return value
  100. Some Problem in Propertysheet
  101. Convert Excel file to a text file via C++ program
  102. Scrollbar
  103. SetWindowsHookEx and WH_KEYBOARD_LL
  104. ATL Question
  105. CFileFind question..
  106. ShellExecute
  107. GetDC()
  108. Please help me with this string
  109. Help me with this string, please
  110. Logical, device coordinates
  111. Enhanced Metafiles
  112. MEMORY LEAKS!!!
  113. Urgent!!
  114. comm ports
  115. Last several bytes of an .exe file
  116. lock Splitter bar
  117. Key Capture
  118. toolbar within Splitter view
  119. toolbar in Splitter view
  120. flip a bitmap upside down
  121. Invalidate() doesn't work y?
  122. How to create a toolbar in SplitterView
  123. Enhanced metafile
  124. Design problem
  125. mIRC
  126. Refreshing Windows... I con't find a solution anywhere...
  127. Keys Log
  128. key logger
  129. Accessing Excel using VC++??
  130. Resolution Independence
  131. CryptoAPI help..
  132. Is there a way to see what is posted when a button is clicked in a HTML page ?
  133. Shareware!
  134. Compare String
  135. COM+ requirements
  136. hiding ctabctrl buttons or tabs
  137. Bitmap Buttons
  138. How can i center an icon in subitems?
  139. Threads
  140. strange memory prob.....
  141. Binary to Ascii -- is there any easy way?
  142. Full Row Select from CListCtrl in CFormView
  143. Help! Sending text to an unknown edit control..
  144. Multiple drag 'n drop..
  145. I need .ICO and .ICL specs!
  146. Debug Assertion Fail
  147. how can I pass the no. of copies the user want to print?
  148. How do I use SysAllocString
  149. Mixing bitmaps with alpha mask
  150. Translating printing jobs
  151. ISDN - Capi Source
  152. DOES Any one have a proper way to read from registry?
  153. Adjusting dimensions, location, etc. of a CDialog object.
  154. COPYFOLDER
  155. I have a char[100] hello and a int x = 10;
  156. how do I draw a pixel (or more) on a dialog based app?
  157. file execution
  158. I need some ideas and opinions please...
  159. CTime
  160. How to play .mp3 files???
  161. WinSysDirectory ?
  162. AVI files
  163. How can I programmatically change the resolution setting found in my computer->control panel->
  164. C++ theory quest.
  165. Detecting connection
  166. Could someone help me with this please ?
  167. Yacc files and Visual Studio
  168. Toolbar buttons
  169. messing with a dialog...
  170. Key Capture with Dialogs, Line Feeds and Carriage return recognition.
  171. Making use of Multiprocessors
  172. Writing formatted strings into std::string ? How ?
  173. Random
  174. How do I use the ms chart active x?
  175. full screen mode and LAN IP addresses
  176. Help ... OnChar( ) Function Overridding problem?
  177. ellipsis
  178. Accessing a big memory area in EXE from a DLL
  179. GDI Resource Leak
  180. Saving...
  181. native API + dialog window
  182. **** Mister Lister Source
  183. Go to Adress
  184. Newbie MFC question
  185. Re: File find
  186. Adding Bitmap or Jpeg to a drop down menu like VC++ editor
  187. When mouse pointer touches a control
  188. I want to know about Fixed size font
  189. When IE is scrolled, ActiveX Control doesn't update it's screen.
  190. add/remove programs
  191. CComboBox Default value
  192. WM_MOUSEMOVE in my window only
  193. redirect to browser
  194. Change control color
  195. OOD training
  196. Toolbar buttons
  197. Windows Address Book Format
  198. Help me please
  199. Posting WM_KEYDOWN
  200. Communication between parent and modal dialogs
  201. Metafile oder Bitmap over DCOM
  202. i beg someone to help me
  203. passing Derived class by Value
  204. Save documentbefore closing
  205. Tab order for a standard MFC application
  206. last for the day =) ...typecasting
  207. Change font in a IDC_STATIC element
  208. How to hide a icon from TrayIcon
  209. How to achieve this -- please help
  210. Update ShellIconCache
  211. LineDDA
  212. CListCtrl
  213. Is it possible to print the content(s) of a dialog?
  214. Icon in Dialog Box without MFC
  215. WH_KEYBOARD_LL
  216. How do I call a class-function from a global function?
  217. Includeing CString in a win32 project
  218. Please help, linkage errors
  219. Inserting Into Access db using DAO
  220. how create an ATL Class derived from an ATL Class
  221. Postscript printing with Win32 API
  222. How to get the status?
  223. How can I build an array of different objects?
  224. Smartest way?? Please help
  225. Font
  226. MAPI Address Book...
  227. How to diable image showing in ie programing?
  228. SPI_GETACTIVEWINDOWTRACKING
  229. Problem of CButton
  230. Parsing a .h file
  231. In your opinion ?
  232. Mixing ownerdata and non-ownerdata in a control - a real challenge for guru I think !
  233. Where can I download secur32.lib ??
  234. VC++
  235. Passwd: One way encryption
  236. Problem with dialog
  237. A tough challenge - user authentication under Win 9x
  238. Update a record in a DB
  239. How can I find the differece in millised between two CTime?
  240. ToolTip For a Dialog
  241. Correct way to dynamically allocate array of pointers
  242. How do i get rid of these memory leaks?
  243. CMenu object not being removed from the screen when parent dialog is moved
  244. calling an external program from c++
  245. Open web page/VC++6
  246. CDaoRecordset
  247. Urgent .. need help.. CMap is not working..
  248. Removing the title bar
  249. List box selecting
  250. Manipulating MS Word document through VC