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. a problem about MFC
  2. Upgrading from VC++ 6.0 to VC++ 2005
  3. Injecting text?
  4. Htreeitem?
  5. file dialog boxes
  6. important question
  7. HELP please!! URGENT
  8. atl vb6 Type mismatch
  9. ASP, ASPX, PHP, JS, XSL comment remover for web applications
  10. type conversion error
  11. A question regarding COM dll
  12. Date/time in CE
  13. VCPP fonts do not look normal
  14. running as SYSTEM
  15. version number
  16. Silent F Key Invoking
  17. Mdi Application.
  18. Create a Handle (hwnd) to a file in C++6
  19. Counting program
  20. Seeing Squares when I ReadString With Carchive???
  21. VC Project Deployment
  22. What is the difference between #import some.dll and #import some.tlb?
  23. Using QueueUserAPC
  24. MFC 7.1 CDaoDatabase Issue
  25. Cannot convert from 'const String' to 'String &'?
  26. data types
  27. Quick Inheritance Question
  28. Static text box
  29. problems detecting mouse movement
  30. Exporting Classes
  31. Question Involving a switch statement and file input
  32. Programatically quitting a CPropertySheet
  33. lm.h - multiple errors
  34. reading from csv sheet
  35. Get Loggin user name of current user...in NT Service
  36. Linking MFC statically
  37. BSN Method
  38. CWebCalc help
  39. Memory Usage Check.....
  40. Why won't this thing work?
  41. Code not working
  42. What is the difference between #import and #include?
  43. CListCtrl question
  44. Required Files for CDaoDatabase?
  45. Draw String on Top of Image
  46. whitespace
  47. RemoveAll() method
  48. C++ beginner Help
  49. Another counting problem
  50. Can Capture Graph Builder capture from wireless camera?
  51. fseek
  52. add CScrollView to CFrameWnd
  53. Phone dialer question.
  54. Right-Aligned Tree Control
  55. CEdit Box problem - carriage return
  56. Help with passing an array of structs using enums as members
  57. Special characters in MFC?
  58. GDI Sux.
  59. Convert string to time_t
  60. String to Char problems
  61. How to db_Click handder ?
  62. message about MFC program!
  63. Progress control in a list view
  64. Create a XML File
  65. Vnc
  66. square
  67. get error if I writed CoCreateInstance in debug version.
  68. WM_NCCALCSIZE and WM_PAINT issue
  69. How to move control to the top (zorder)
  70. How to pass value between MainView.cpp and sub-Dialog
  71. Mixed language programming
  72. Compiling a VC++ project using gcc
  73. List Control: Disable Resize
  74. please help...
  75. only first coloumn is selected in Listview
  76. GetProcAddress and a DLL
  77. QUERY: strip trailing whitespace ... woes :S
  78. Regarding Path of MS outlook in various languages of windows
  79. Displaying bitmaps
  80. Simulate mouse input in internet explorer
  81. Project Settings Not Retained
  82. How to Self-define Time Delay function ??
  83. MFC + OnNewFile
  84. Adding item to Combo Box?
  85. Create Excel spreadsheet without Excel installed?
  86. CAxwindow & activex &vb6
  87. Won't detect header files.
  88. Editor
  89. Incorrect text in MFC dialog
  90. Find a file looking in several directories
  91. checking for a button click
  92. Adding progress control to a CListView
  93. webbrowser control - refresh
  94. COM basics tutorial
  95. Exported template class
  96. Timer Countdown function?
  97. Changing the selected item of a listview in another program
  98. Create larger document window
  99. creating a dialog template resource
  100. Create new dialog box
  101. How to open file ?
  102. Weird Error - C2501 Error
  103. DrawImage from Different Class?
  104. CListCtrl - Deselect when clicked
  105. about doc/view open ?
  106. the existence of file
  107. Windows service sends messages to GUI APP window
  108. fopen
  109. Wrong Icon in Title Bar
  110. Query related to HTML in MFC Application?
  111. NMAKE.EXE issues
  112. When should we go for a DLL.
  113. DSP file
  114. System folder
  115. convert from class CString' to 'char *
  116. Simplest project for a video window
  117. Problems in an appln with 2 mainframes
  118. DCOMCNFG ON Windows 2003
  119. what's the difference between
  120. Get file version
  121. Open Url in a small window
  122. GetParent error in constructor
  123. Translation units and source files
  124. detecting english or japanese CString
  125. CSplitterWnd Question
  126. Microsoft Outlook Plugin
  127. Get file version 2
  128. current record number in the CRecordset object
  129. "Restart option" at my Pocket PC application
  130. how to write on a particular position in a file.??
  131. Hiding "Members" bar
  132. Sharing variables between programs ?
  133. Creating a Dockable Dialog/Control/Tool Bar
  134. Problem Opening Files Returned by the CfileDialog Multiple File Selection
  135. Excel Copy worksheet
  136. convert std::string* to BSTR
  137. Knowing if Application finish Loading
  138. Can guest account register OCX
  139. Problem while adding dialog to my application.
  140. Link error LNK2019 while compiling VC++ in VC 2005
  141. array question
  142. why SetCommState error 87 ?
  143. How do I tell who launched my program?
  144. Drawings disappear !!!
  145. char to hex problem
  146. "Case sentitive"
  147. Closing MDI Doc/View MFC Application Easily
  148. replace a char in a string
  149. Object methods in seperate files
  150. How to create and display a button in a view?
  151. Struct question
  152. how do i fix these errors.
  153. Editable Text Box
  154. Question on double precision numbers
  155. syntax error
  156. Automatic logon after rebooting
  157. Simple Status Bar
  158. Passing more than one argument in CreateThread()
  159. Dynamic Sizing of controls
  160. Question regarding SafeArrays
  161. Bringing App to front when run twice
  162. Pressing enter in property sheet quits - help
  163. Problem in shortcuts for my tab control.
  164. trouble porting my cpp files between computers
  165. hepl me for office automation
  166. File Permissions
  167. COM Server Method with [out] parameter leaking memory
  168. Finding No. of PCI slots(Expansion slots)
  169. fwrite() what the...???
  170. CString transformation
  171. a newbie question-function n method
  172. needed help in VC
  173. Which project type to open in VC++ 2005?
  174. How to view Static Variable
  175. GDI drawing refreshment problem
  176. Child Dialogs Management
  177. Vc++, C#, Vc#
  178. QT Beginner problem
  179. protect a process from closing (i am a newbie i think!!)
  180. Binding data from CRecordset object to List Box control
  181. File open mode ios::ate is not working correctly
  182. GetProcAddress
  183. Heap Problems when using VS 2005?!
  184. Creating IE Plugin
  185. Header of a CScrollView
  186. Problem with SHFormatDrive ()
  187. Disable printf outputs from a DLL
  188. connecting projects
  189. How to erase a control in a view?
  190. Accessing an OCX from within C++ code
  191. sink events
  192. Referencing Other C++ Project
  193. Stupid Visual C++ 2005
  194. Strange problem when my service stops
  195. I need a "non progress ctrl"
  196. Unavoidable warning C4786
  197. Dword and everything like this...
  198. Access to COM Methods in ATL Service
  199. Search a solution for a calendar
  200. Solitaire
  201. Windows UI programming
  202. How to create dynamicly a CButton in a CView/CDoc?
  203. Convert Char[] to Byte[] Array
  204. Global variables
  205. Defining Languages: word is a string of dots and dashes
  206. A Unique way to identify a dialog / window
  207. Open a file and folder
  208. Disable size cursor for certain column of list view
  209. pass VB array to COM with event
  210. Simple Stand-Alone Progress Bar
  211. User-defined function return type
  212. Mixing C and MFC C++
  213. VS2005 XP themes not working, manifest file is there!
  214. Pixel Height of Character
  215. File Reading and Writing at the same time!
  216. Loop Executing ????
  217. Sending Commands to Thermal Printer
  218. How to add button in FireFox
  219. Can we have pointer to VARIANT???
  220. How to properly destroy a modal or modeless dialog
  221. Another CString Issues
  222. how to overwrite the data into te file on a particular position
  223. How to capture video frame
  224. about Serialize
  225. Can we CCOmSafeArray in VC++6.0??
  226. Sounds
  227. To set the radio button checked?
  228. operator overloading with parameters
  229. OnPaint() not called!
  230. How add a horizontal scrollbar in ListBox?
  231. Create xml with 4 levels use dataset in .Net
  232. how create .Dll file when you have .lib and its .h files?
  233. Query regarding DLL
  234. Running notepad from MFC
  235. Include Directories
  236. Yahoo Messenger
  237. wierd - Insert New ATL Object menu option disabled
  238. max buffer size
  239. Remove tooltip text from password edit box
  240. Basic extern question
  241. problem opening password protected database
  242. Reading SHOUTcast stream
  243. Extract string from a text file
  244. replace "\" in a string
  245. cannot close and reopen file after reading the entire file.
  246. Linux IDE
  247. Getting selected menu item string
  248. left of '.cents' must have class/struct/union
  249. Setting an ADO connection object's property value
  250. how to print out floating point number with the same width