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. Set CStatic Z-Order
  2. CSocket + Proxy problem
  3. Function sharing between dialogs??
  4. How can I send a CString formated as HTML to a CWebbrowser control field?
  5. Disabling cache feature of a CAsyncMonikerFile???
  6. Block iexplore access to hard drive
  7. OnIntiInstance
  8. Weird.. Please help again w/ CRecordset::Open()
  9. Bitmap on button
  10. surrogate problems
  11. Assigning memory location
  12. No entry point... ?
  13. POP3 and CSocket
  14. How can I set Retry times & Connection timeout in MFC
  15. Manipulating the bits
  16. Parameterizing in DAO
  17. simple question involving public member variables
  18. Read a txt-file into edit-listbox???
  19. How to change class name?
  20. CEdit Help..
  21. beginning in ISAPI
  22. How to disable Menu items?
  23. EnumWindows prob
  24. Ejecting a cd drive
  25. PLEASE HELP!!
  26. Instance of Process
  27. Calling MinimizeAll?
  28. Trying to create graphics in child window...
  29. passing strings to an atl interface
  30. Dollar Changer
  31. Find an HWND using EnumWindows
  32. How to download a site without dependant on Explorer
  33. Change the dimensions of a bitmap
  34. WM_REGISTERED and HOOKing
  35. GetCommandLine()
  36. Default Property
  37. SendKeys to another window
  38. OpenGL vs. smacker
  39. Extension DLL
  40. Just an observation
  41. void and VOID
  42. Drag and drop problem.
  43. VB server,VC client
  44. Filter for OnOpenDocument
  45. DIB source???
  46. CArray
  47. file handling in vc++ for wince
  48. Open url with the defualt browser and open an E-mail address with the defualt e-mail program
  49. Copying files
  50. !!! Hard Disk Factory Number
  51. How to abort NT Shutdown in my MFCApp?
  52. Reversing strings
  53. Urgent ! Can't get rid of lock in Access 97 DB
  54. TCP/IP file transfers
  55. MFC: Small and big icons...
  56. Drawing Lines and Erasing
  57. Does really nobody knows the answer?
  58. Does really nobody knows an answer?
  59. Programming Plug-Ins IE
  60. Databound controls
  61. app automatically iconifies in taskbar on startup
  62. Active X datadriven control
  63. Singleton HOWTO ??
  64. Drawing transparent rectangles
  65. RichEdit Control
  66. How to export data to Microsoft Excel format
  67. Bug? with Version 6
  68. ActiveX control ALT+DOWN key processing
  69. Reading a text file and putting it in a CString - problems
  70. Help!!!
  71. VC6 in both win98 and win2k?
  72. IPX and CAsyncSocket?
  73. Saving Data
  74. Unknown Compiler Errors
  75. Parameters to ISAPI dll extension
  76. Simple New Document Problem
  77. Urgent ! How to autoresize the statusbar in dialog window
  78. Overloaded member functions
  79. Urgent! When i destroy the menu, it remains there with disabled why
  80. List Control, cannot find uafxcw.lib. VC++ 6.0
  81. Class Type from an HWND
  82. Rotating points
  83. In-place text editing
  84. Console Graphics in VC++ 6.0
  85. Do i require both the help cd vc++ 6 to use the online help
  86. problems with CFtpFileFind
  87. Message to Forcefully close
  88. Transparent Icon on CButton
  89. Printing Dialog etc
  90. sending text with SendMessage
  91. CSocket Help
  92. Inserting OLE Objects Problem - Please Help!!!
  93. gdi memory low
  94. Dialog close button
  95. Problem intializing CString variable
  96. UTC (GMT) time to time_t conversion
  97. Export/Import function
  98. menu graying
  99. CTreeCtrl
  100. Passing BSTR to a Function... urgent, please help
  101. Strange Bug
  102. Programatically install ODBC Driver
  103. Big numbers
  104. making ActiveX Controls
  105. Can I use another font in a listbox ?
  106. CHART
  107. Customized UI
  108. How do you get the chevron button to work?
  109. How to add the Minimize box _ to a dialog
  110. CAnimateCtrl
  111. Accessing Member of a base class?
  112. Urgent ! Is it possible to...
  113. Output to port through MSComm Control, Error at Final Stage
  114. how can i read from http?
  115. OnFileNew and OnFileOpen question??? PLEASE
  116. open file win32 dialog
  117. Ordinals VC++ DLL and Delphi ?
  118. Multiple Files in CFileDialog
  119. How do I use CWinThread?
  120. GUI in ATL project.
  121. bitblt - error code 122
  122. Creating a Hyperlink on your applications with C++
  123. Creating window in thread
  124. Any ReadLine method any where for file read?
  125. char* and void*
  126. Worker and UI thread
  127. color text
  128. LivePublish
  129. ModifyStyle()
  130. How to change the application caption text?
  131. Base Class
  132. R/R+ trees
  133. int to hex
  134. how to add my program to shortcut menu
  135. How to find out the format of a .wav file?
  136. debugging WM_PAINT in Visual C++
  137. EditView
  138. Drawing Shapes
  139. scanning strings
  140. Hide TaskBar
  141. Dialog ZOrder Properties
  142. How to detect the process that will begin
  143. How to print without showing PrintDialog
  144. Active x Controls
  145. Printing only a fraction (the visible one) af a CScrollView class
  146. Stupid EnumWindows Problem
  147. database access
  148. Change the Navigation Key in Dialog
  149. generate a new library based on a dll file.
  150. GCC
  151. Change paper source
  152. netmeeting problem
  153. Changing dialog font size dynamicly
  154. Please Help, Strange ShowWindow problem
  155. Connection points- client is not able to receive events fired from the server
  156. Everything done, just output error through MS Comm Control
  157. Simplest Thread Program Needed
  158. Bulid Error :ln2001
  159. CString
  160. Skins
  161. universal protocol FMS
  162. Loading images into an Image Control
  163. Dynamic window resizing
  164. OutLookBar in MDI
  165. Protect File
  166. Skins
  167. waveInGetDevCaps() bug on Windows 2000
  168. Context Help
  169. How can I make animation with VC?
  170. overwriting loaded dll's
  171. How to detect if a program is running...
  172. Find a String
  173. Verify if database exists
  174. Ms Money Look and Feel
  175. Urgent! CRecordset question
  176. File distribution in Setup - Beginner Question
  177. ole db,puzzle about the provider
  178. Auto Scrolling
  179. getting record count using ole db (i am newbie help me)
  180. LPR Port
  181. Help me out
  182. How to test wheter the Workstation is locked?
  183. DAO or OBDC CLASSES
  184. Urgently its just the problem of Output in MS Comm to the port, Everything else is done
  185. STL and MFC
  186. char * to BSTR
  187. Books About Hooks
  188. Access a port
  189. GetBitmap
  190. Opening/Closing/saving problems!!!
  191. formatted input data
  192. What is the use of Iterator?
  193. COM, MSSql and Security
  194. viewswitching
  195. Formatted Editbox data entry
  196. editbox with formated data
  197. Treecontrol color
  198. Get info from edit control
  199. _bstr_t
  200. I/O Access
  201. Toolbars
  202. 2 or more bitmaps in one DC
  203. Release/debug with COM
  204. Access main menu from dialog
  205. const member variable?
  206. JNI-C++ problem
  207. Indexes in DAO recordset
  208. Getting DB schema with ADO???
  209. Startup problems
  210. Add two BSTR Var
  211. Saving more then one attachment
  212. ATL - sprintf, BSTR
  213. A splash screen with more than 256 co.lors for a dialog and an icon with more then 256 colors that
  214. Maximization by default
  215. Problem with warning LNK4086
  216. Software
  217. Text color in dialog
  218. Client Window Area
  219. client edge - Please help
  220. How do I create EXEs in Borland C++ ?
  221. Redirect the initial path in load or save file box.
  222. Structure of HCRYPTKEY Data
  223. Plot using Bitmap data
  224. MFC Class Wizard
  225. CComboBox
  226. Hooks and IE
  227. Show/hide a toolbar
  228. algorithm for drag/drop and interconection of icons
  229. Assert failure
  230. Create Ctrl+Alt+Del event
  231. trouble in ESC key
  232. Getting what was selected in a popup menu
  233. Newbie question re. types
  234. window placement on create
  235. Dr.Watson error
  236. Displaying Bitmap in Dlg
  237. MFC,COM,ATL?
  238. Constructor Inheritance and Exceptions
  239. COM dll without the ps dll
  240. Prevent closing MDI child window
  241. how to interrupt NT password changing
  242. Using Access as an Automation Server with VC++
  243. Too many WM_PAINT messages
  244. Installed Printers
  245. get URL last modified date?
  246. CTabCtrl
  247. How to make window "transparent" for mouse input?
  248. Creating Bitmap on Client window from Dialog
  249. Release version
  250. CComboBox, again...