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. ImageList and IE
  2. Customized(Resizable) Dockable Tool Bar???
  3. Is it Theft?
  4. To Schedule a task
  5. Active Desktop
  6. AfxMessageBox()
  7. $120 For Help!
  8. Does anybody have any sourcecode for how to programm a screensaver?
  9. System Tray
  10. Reading file
  11. Put a bitmap on the mainframe ( without extra classes)...
  12. WinExec on NT
  13. Row counts after executing a stored proc
  14. DirectDraw/dvp question
  15. Change Project Option
  16. CString concatenation
  17. Windows Shell Programming
  18. How do I display scrolling text in a multi-line Edit Control ?
  19. How To: ActiveX Serial Port Communication
  20. default HTML editor
  21. Save SCREEN as a bitmap from an application
  22. C++ / CORBA ??? NEw section in Code GURU
  23. Insert / read COleObject in a DB
  24. Vertical ToolBar
  25. Black window
  26. Text from CRicheditCtrl
  27. Text from CRicheditCtrl
  28. Right-click on Header
  29. Strings
  30. Most recently used file
  31. Error LNK2005 with global variables
  32. Saving data in a dialog class
  33. Printing Landscape
  34. How to change a combo box from Drop List to Dropdown?
  35. Retrieving Email
  36. more on stack
  37. Anyone have h263 source can work faster
  38. I/O parallel port on NT4
  39. ActiveX document Server
  40. Jpg Active-x
  41. Help Type double
  42. Closing Dialog
  43. Help changing jpg´s
  44. Editable / Drag and Drop Menus
  45. HELP
  46. CEdit Ctrl.
  47. How to obtain HINSTANCE using HWND?
  48. Dialog/Bitmap layout independent of system font settings
  49. Print screen
  50. ImageList
  51. Converting LPCTSTR to string...need to convert back?
  52. Gibberish in CRichEditCtrl / CEdit
  53. ListBox: changing the default size of font
  54. Default Radio Button
  55. Failing the constructor
  56. multiple view class
  57. Controlling a vb4 program.
  58. Thread Problem in NT4
  59. OLEDB with Visual C++ writing to Sybase DataBase
  60. Compiling MFC
  61. Whats the simplest way to connect to the iexplorer/netscape
  62. Single line CEdit control w/ different color text
  63. size of Propertypages
  64. Do you Know HOW??? to Slide a ToolBar???
  65. What about an OpenGL program with 4 viewports done with Splittbars
  66. edit control
  67. How to retrieve the number of opened documents?
  68. Reading a file into a Rich Edit Controls
  69. Wizard-like Property Pages
  70. Mouse Move in Nonclient area of SDI app
  71. Can't hook WM_CHAR in window subclassed in CDialog
  72. Can I delete file with ShellExecute
  73. Progress bar on Status bar on another thread
  74. Doc/View work-around..appropriate?
  75. THIS SITE
  76. Drawing a User Drawn Button
  77. color
  78. Where are Start menu's "Recent Documents" stored under Win95?
  79. Service Pack 3 -- 24 bit button problem
  80. HowTo RasDial()
  81. Change Windows Appearance by programmation
  82. Thread Termination causes invalid Page fault in Release Built
  83. Sleep for < 10 ms ?????
  84. Tab Control
  85. CATCHING ACCESS VIOLATIONS DURING RUNTIME
  86. Syntax problem
  87. Help::create dib problem
  88. Abnormal Program Termination
  89. Hide/Show Toolbar
  90. is the taskbar auto hiding?
  91. [Q] Large Size File Handling.
  92. Release Files
  93. DLL Version information
  94. Creating an FTP Directory and getting it's date
  95. Dialog and Button Paiting
  96. Using ADO with an Access DB
  97. Switching window styles
  98. Belly up
  99. Getting the folder Icon
  100. encryption
  101. Throwing an alert on Session_onEnd
  102. OnApply()
  103. H.263 video codec
  104. I need a good sound sdk and video conferencing sdk
  105. Height of textarea
  106. Faster H.263 video codec
  107. How to prevent dialogbox destroy when you press enter key?
  108. GetObject
  109. SystemFunctionXXX
  110. How if statements are really handled
  111. Blue Screen
  112. HWND prob
  113. Can the DC be changed from painting to printing
  114. Need a good algorithm for transparency blitting
  115. taskbar problems
  116. How to Draw to Front and back buffer simultaneously in Opengl..
  117. Info
  118. NT Services
  119. How do I change the window size relative to the View size?
  120. http://www.codetools.com/
  121. Monitoring Keyboard Input
  122. Get App Object
  123. Input Device Problem
  124. Modeless dialog always on top ?
  125. out
  126. Best way to check existence of file or directory..
  127. include ActiveX Components in *.exe file
  128. How to show a class into the Class View window?
  129. Printing .txt using wordpad
  130. Change Bckgrn. Color of CStutusBar pane.
  131. Printing with ActiveX control
  132. Tooltips on toolbar
  133. Performance problem with CRecorset.
  134. where to find transfer call
  135. How to Bind Columns in ADO
  136. Aborting a Print Preview
  137. Urgent! Seeking help on video conferencing using netmeeting 3.
  138. Add text to CRichEditView?
  139. Looking for the right even Of ListView DESPERATE!
  140. Win32 API
  141. LIBC.lib(crt0.obj) : error LNK2001: unresolved external symbol _main.
  142. TabStopWidth
  143. STL list question
  144. Dynamic Menu Insertion
  145. Window's top left icon
  146. Remote Automation
  147. Add a new record in a Access in ODBC
  148. How to read Data with CLongBinary
  149. OnClose ABORT drawing proccess...
  150. Send a mail in a Network
  151. multi(ple/level) Interface
  152. Redrawing on a View
  153. A breakthrough for Windows CE developers
  154. RuntimeControl Creation
  155. Problem:A ListCtrl in An Activex Control
  156. CDC / CClientDC in function
  157. Alternative Button Highlighting
  158. How to add a new record in an Access Db
  159. toolbar--->Very Very Urgent
  160. Crypto APIs
  161. Diff b/w Invalidate() and UpdateWindow()
  162. bitmap
  163. How to create ComboBox without border?
  164. NT Service & COM
  165. Passing BSTR to Delphi
  166. RichEditCtrl - Changing text color
  167. Excel and Visual C++
  168. MDIClient and Scrollbars
  169. Get program that owns a window
  170. Dynam. Change size of CFormView
  171. how can i learn hardware information on a computer using C++
  172. COM
  173. How to branch files in VSS???
  174. Lines in different color in a listbox -- please.
  175. locking records using CDaoRecordset
  176. Check Internet-Connection (active/deactive)?
  177. Windows NT startup
  178. MSFlexgrid in a CScrollView - Install problem with NT
  179. Problems converting CLongBinary 2 CString
  180. Winprint.dll sample on NT...need help to make it work
  181. Icon's background transparent
  182. Simulate keyclicks
  183. Progress bar on Status bar on another thread -SRGZ
  184. VC++ datatypes
  185. Passing binary streams from a COM object to a client
  186. Add an application in the config panel
  187. LIKE operator in SQL expression
  188. InitInstance()
  189. Desktop window creation
  190. Converting Ascii string to HEX , Decimal
  191. Font in an edit control
  192. What happend to CodeGuru
  193. HELP PLEASE::dib problem
  194. How can i disable maximizing on double click in the title bar
  195. Please help with this code
  196. Put files in a ListBox
  197. How can i disable the start menu button of win95/98.
  198. HOWTO - Threads ???
  199. A function to minimize a window
  200. How to resize a dialog
  201. Convert HDC to CDC* ???
  202. OPEN DIALOG BOX!!!
  203. differently coloured lines in a ListBox (or edit)
  204. Getting the Application Path
  205. Trouble running executables on other machines
  206. CToolTipCtrl
  207. OPEN THE CD READER DOOR
  208. Columns in ListView
  209. Read a file
  210. How can I change the background color of CEditView?
  211. Invisible view w/ timer
  212. Random password generator
  213. Write on a Bitmap???
  214. ATL: Property pages perform APPLY when changing tabs
  215. Ultimate ChartPro (DUNDAS)
  216. HANDLE in a struct problem?
  217. SQL SELECT statement using LIKE
  218. Propertypage font size
  219. MSFlexgrid
  220. string comparison problems
  221. Voice Recognition Problem
  222. Can CreateService turn any executable into a service?
  223. VC++ ATL/COM/MTS
  224. SELECT statement with LIKE operator
  225. bitmap compression
  226. How to prevent CFromView to scroll and size
  227. Subclassing TreeView
  228. CPropertyPage accesses vars on other pages
  229. Where to create children of COleControl descendants
  230. Moving Shapes
  231. Dynamic arrays of "struct"s/or Lists of "struct"s?
  232. About mouse....
  233. Edit Box & \r
  234. Edit Box Mask
  235. multiple HANDLE events not working
  236. how can I programmatically set the initial size of a pop-up dialog box?
  237. DDE in a dialog-based app
  238. ActiveX control using MFC static library
  239. how can I add vertical scrolling to a CDialog
  240. Q. Using Slider-control on the Tool bar
  241. have any free shell Enviroment( cshell , k-shell ) is Win32
  242. How to fire the event in COM source code? -- beginner
  243. Incorrect return value.
  244. How to set what a COM object registers itself as
  245. CDBException
  246. BSTR to CString
  247. display changing notify
  248. *.dat file format
  249. Creating a view(CFormView)
  250. Creating 16 bit DLLs