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. commandline string with double quotes ""
  2. Derived class from abstract class(COleControl in MFC) gave error while allocation mem
  3. C++ Inheritance
  4. [RESOLVED] Tray Icon
  5. Configuration Manager - Debug and Release
  6. Shadow effect
  7. Burning a file at the end of a multisession cd
  8. SysShadow - own class?
  9. Puzzle : a strange question
  10. parse a buffer
  11. Intellisense error
  12. Device Context dc.TextOut()
  13. why does ifstream::tellg() keep returning zero?
  14. Load String From Resource (String Table)
  15. Display the data stored in MFC
  16. Saving memory snapshot of the application
  17. problem with boolean var!
  18. about import class files
  19. CProperySheet Problem
  20. window bad
  21. How to set a temporary truststore for WinHttp
  22. ActiveX not registered!!
  23. Kill a process
  24. Assertion
  25. #include <vector> and ofstream
  26. How to make a "safe" comparison or operator<
  27. How to display a 24 bit bitmap on a SDI FormView
  28. Get Current Library
  29. Handling Child Control events in Dialog Box
  30. How to add webbrowser controle to visual c++ 6 MFC
  31. padding with white spaces
  32. A weird problem with modeless dialog, asking for help
  33. Registering COM DLL
  34. Can't Detect Tab Control Events
  35. How to output html of url into a RichTextBox in visual c++ 6
  36. How to highlight standard windows menu items from code?
  37. CCombobox help needed
  38. List View Control Performance issue
  39. How to extract data from webbrowser controle in visual c++ 6?
  40. CheckListBox with DrawFrameControl()
  41. Dialog invoke when user clicks a button of toolbar
  42. what is the simpliest way to send email?
  43. about ::SetWindowPos function
  44. RichEdit 2.0
  45. How to update the MainFrame?
  46. File System
  47. RTF based tooltips
  48. log events in a editbox
  49. How to read data from EXE file using c++ code???
  50. accessing other class' member variable in another class
  51. CTIme Converting vice versa
  52. CAsyncSocket, How to get connection-status?
  53. How can i get alpha channel from bmp image?
  54. Console & Windows app in same project
  55. [RESOLVED] How to enable the Registry Editor in VC2005 ?
  56. Question regarding inline expansion
  57. Positioning Tooltips
  58. Error - Variable should be not defined
  59. How to enable or disable menu items.
  60. [RESOLVED] Submit a HTML form programmatically
  61. [RESOLVED] how to add a method for activeX control in vc.net
  62. Message Queuing
  63. Howto convert unicode Byte-array into wchar_t-array
  64. The memory could not be "written". error
  65. Up and Down Arrow
  66. Basic c++ calling values problem
  67. CreateFileMapping Problem
  68. [RESOLVED] Release and Debug Configuration
  69. what is equivelent of Inet1.OpenURL in visual c++ 6
  70. Question about printing
  71. CFileDialog directory
  72. VC++ 6 + CrystalReport 11: problem Memory increases
  73. Changing WordPad default title?
  74. Templates: Is this possible?
  75. Admin Announcement: New books for review
  76. Help writing the required header file
  77. help useing Microsoft HTML Object Library in visual c++ 6
  78. ActiveX, MFC, IE, and BACKSPACE...
  79. FreeAddrInfo Backwards Compatibility
  80. Problems with subclassed CEdit that dynamically creates a spin control for itself
  81. Help with the Editbox control
  82. Hooking functions
  83. how -_-!
  84. MSChart control display problem!!
  85. Send Message
  86. Keyboard Hook
  87. Advantage of An Interface over an Abstract class
  88. Overloaded member function not found in CNoteMgr
  89. Modal & Modeless Dialog box
  90. Disabling the properties of ActiveX Control???
  91. Cnvert vc.net 2003 project to vc7
  92. Linking with another executable
  93. Getting the 'All Users' directory
  94. SetCapture and ReleaseCapture!
  95. Disappearing View Class
  96. Using the CDialogBar
  97. MS DsoFramer.Error PRJ0019.MKTYPLIB
  98. ActiveX Control Test Container. Unknown Exception.
  99. page tabs
  100. draw tree control
  101. Detecting Browsers, e-mail clients and user data types
  102. how to setrange to a spin control
  103. Application Restore or Checkpointing
  104. Get count of handles
  105. Creating IE Toolbar in VC++2005
  106. bstr data
  107. Strange Problem!!!
  108. Converting VC++6 to VC++8, Wrong Library Files
  109. Opening Multiples Files in Loop
  110. Serialize ListCtrl
  111. Cannot Convert From...
  112. Stl Map
  113. [RESOLVED] Creating Balloons
  114. Operator overloading and Ctrsing
  115. CTreeCtrl
  116. Throw exception in constructor
  117. Greetings from the testing dept
  118. [RESOLVED] Help fixing error C2039: 'Format' : is not a member of 'CStatic'
  119. help fixing error C2065: 'Switch' : undeclared identifier
  120. Delete a folder on Server
  121. Docking a dialog
  122. Crack-Safe MFC application?
  123. CFileFind ordering files
  124. help doing a process every 2 min in visual c++ 6
  125. turn off asserts?
  126. Parsing error in Viewing ClassWizard of CView
  127. word under mouse in richedit
  128. Creating a finals calculator. Problems displaying results
  129. While debugging in VC5, how can I see wstring value?
  130. Ask a problem,about inheritance :)
  131. Clueless about bitmap buttons
  132. Button Shape
  133. MFC Application stops responding when calling a DLL
  134. how to use STL library in c language
  135. Modifying Edit box font
  136. Problem in user defined class
  137. IAxWinHostWindow interface in a MFC project
  138. problem with hotkeys
  139. NT Service question
  140. Mouse Leave for Button
  141. Can memory allocated by HeapAlloc be released by LocalFree? This throws no assertion
  142. Query related to Rich Edit Control?
  143. Convert Visual Studio 6 Add-In to Visual Studio 2005 Add-In
  144. background image for dialog boxes....
  145. Drawing bitmap from clipboard
  146. display 32 bit image in the document view?
  147. any software to to view dll file as source code
  148. Has anybody used the detours library...Help plsss
  149. please anyone help me
  150. Missing "mfc70d.lib" & "mfc71d.lib"
  151. Edit Box Problem
  152. How to create this application.
  153. Adding a PNG file to a project
  154. Communication between dll and exe
  155. help
  156. Abstract Classes
  157. CFile Writes garbage
  158. Error 2504: base class undefined.
  159. How to make application like outlook express
  160. DirectShow Filter
  161. Realloc test
  162. full application working and sending free sms worldwide !!!!!
  163. [RESOLVED] How to browse a list up to previous last element?
  164. [RESOLVED] error in program compilation - header file
  165. How to catch the Carriage Return in a single line Edit Box ?
  166. Time Zone Adjustments With DST Considerations
  167. Various colors, font ssize, bold, etc. in a CStatic
  168. declaring Editboxes' variable into array
  169. [RESOLVED] How change a value in a edit box?
  170. how to create an text editor
  171. performance problem of std::vector
  172. Saving A window
  173. Ask a problem,about template:)
  174. OnPaint never called, but why?
  175. How do I build an activex control that is also an EXE? (or vice versa)
  176. Common Control Look (not MFC)
  177. question about the performance tool in vs2005
  178. DoModal another .exe ????
  179. AfxMessageBox
  180. how to develop a debugger??
  181. what is ActiveX
  182. Unresolved external symbols. Please help
  183. C++ Decompilers or ANYTHING?
  184. Control
  185. Scalable Combo Box (NOT MFC)
  186. deletion of ptr_params object
  187. MFC CStringA ReleaseBuffer wont work
  188. solitaire
  189. Resizing icon on a button
  190. Read Memory / Compare Bytes
  191. Capturing System wide events in Windows
  192. using dumpbin.exe
  193. ComboBox1 problem
  194. Problem with 2D Graph ActiveX Contro
  195. Custom drawing CListCtrl problem (with picture!)
  196. when click in CListBox
  197. dynamic storage allocation!!!!!!!!!!!!!
  198. Registry cleaner
  199. How to force menu draw?
  200. LoadIcon
  201. Check box in List Control
  202. Catching events from a dynamically loaded html in CHtmlView
  203. System Bitmaps
  204. cout and cin
  205. Extract Email Attachment files
  206. [RESOLVED] Threaded modeless dialog in a DLL problem
  207. IE cache item info
  208. vb to c++ ?
  209. Change property page name at runtime
  210. [RESOLVED] How to change z-order between a window and it's child window?
  211. Preprocessor directives help
  212. x and y Coordinate for window
  213. Problem in Using CSplitterWnd in CMDIChildWnd
  214. Flexgrid Vs Excel
  215. Suggest an alternative
  216. Resizing and setting the position of Dialog Box
  217. VC++ 6 Service pack level
  218. MPR.dll missing WNetRestoreConnectionA
  219. Linking problem
  220. CScrollView auto scroll?
  221. [RESOLVED] CListCtrl in a .dll
  222. nested classes question...
  223. Crash after sending custom message (only in release mode)
  224. Overlapped sockets & thread pooling
  225. CMemoryState
  226. [RESOLVED] Callback conundrums
  227. to pass a const char array to a function
  228. ["myVarName" + g]
  229. How to get data in a grid control of a property page to another property page
  230. Accessing Hidden VB Interfaces in VC++
  231. CreateProcess and error value.
  232. Dialog Based ActiveX Control Issue
  233. FreeLibrary User32.dll located in working folder cause crash
  234. Tricky Q (C/C++) Printing Your own Code
  235. closing comport handles
  236. LNK 2019 error
  237. VC++ 2005 - resource compiler?
  238. Dynamically Add CEdit to a CWnd
  239. Debug Assertion Failed(File wingdi.cpp, line : 1054)
  240. lacking something when using _bstr_t lead to error.
  241. How can i insert a new item to another program's ListCtrl control?
  242. Different Event occur When user press some different Keys in order
  243. Efficiency question - TCP sockets and threads
  244. COM and IErrorInfo
  245. Communication with JMSQueues
  246. Link Error 2001 - Unresolved External Symbol
  247. How to create a ComboBox with icons in it using evc++?
  248. [RESOLVED] File exist or not...!!!!!!!!!!!!!!
  249. [RESOLVED] can BSTR only store unicode character ?
  250. Problem with Explorer bar