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. CryptDecrypt function failing
  2. How to set CListCtrl's item's size?
  3. ESP error
  4. CView & DYNACREATE
  5. Problem in Release mode build!
  6. Console Apps - Detecting Window Size
  7. Problem getting VC to recognize platform SDK
  8. Using enum in ATL7.0 activex in VS .Net
  9. Icon of xecutable file
  10. ADO Recordset is not open
  11. Exception handling for a CArchieve object
  12. How to enforce minimum size of CView
  13. How 2 Kill A Process i made with CreateProcess?
  14. How to call ActiveX dll
  15. Failed to create empty document!
  16. Unsigned int bit manipulation
  17. Why is NaN handled differently by different Windows systems?
  18. Update Data to Edit box from Spin Control
  19. CreateDesktop/SwitchDesktop Problem
  20. set up creation for VC++ project
  21. Adding a class
  22. Radio button
  23. Print Selection
  24. how to know whether my ethernet card cable disconnected or connectd?
  25. problem with displaying data from txt file
  26. graying out owner drawn popup menu
  27. message from CSliderCtrl
  28. Weird ListBox behaviour!!!
  29. run commands in vc++
  30. CButton problem ...
  31. Static and edit boxes
  32. how to convert BSTR to normal string
  33. Members of an struct in an array.
  34. MultiViewSplitterWnd PropertySheet ShowWindow problem
  35. OLE-DB Provider + Property page in DTS-Wizard
  36. class view
  37. Cant add WM_KEYDOWN and WM_CTLCOLOR not available in MDI
  38. Creating short cuts
  39. edit and static boxes
  40. How is this application created?
  41. Detecting memory leaks
  42. ATL COM user defined types
  43. RAS, connection physical terminate
  44. OLE1 to OLE2 conversion
  45. new class
  46. Convert a html page into RTF
  47. Adding a Control to a CPropertyPage !
  48. Single Instance Server with ATL interface
  49. Custom control from CListCtrl
  50. html help problem
  51. Cannot override OnFileSave, OnFileSaveAs & SaveModified for CDocument
  52. Is modem running?
  53. Help...??
  54. Popup menu trouble
  55. check Selection Button
  56. A few questions
  57. Thread advice
  58. ADO connection to Sybase
  59. Terminal Services Client Component..!
  60. CATCH_ALL to display different message
  61. open a com port in C
  62. RAS sending password from W2000
  63. Adding images to tree control items
  64. the value of xl3DColumnStacked constant
  65. File Reading
  66. Writing a program in Visual C++ 6, or 7? Or with .net?
  67. Trouble Refreshing a List Control Object
  68. Passing a CString
  69. multi lined column title?
  70. how to replace a view?
  71. Add child node to xml
  72. Manipulating the bits value for a bitmap using CDIBSectionLite
  73. change background colour
  74. Reserved Words
  75. COM activation sometimes fails in NT service
  76. filtering an ip address
  77. CComBSTR and memory corruption
  78. multiple definition errors
  79. Easy Question for ADO Guru
  80. mp3 codec redistribution
  81. Basic GUI creation question...
  82. CFile.Write()
  83. RichEdit Ctrl
  84. cluster in vc
  85. File Download Dialog
  86. Running a script from a C++ app
  87. information about using CSocket
  88. How to obtain name of the file system?
  89. positioning a dialog box
  90. Owner Draw listbox
  91. CRITICAL_SECTION AND Freeing resources
  92. How to use dll in Visual Studio 6 C++ proj?
  93. Playing with a printer...
  94. Online tutorial on Microsoft Help Workshop is needed.
  95. Serializing of CString
  96. CPen object with inverse color
  97. hide/show dialog
  98. problems about using dll
  99. extracting bytes(urgent)
  100. how to translate different type of buffers?i.e,char and short?
  101. Who have ever used lame.enc.dll to encode wav to mp3 format?
  102. emf
  103. how can I enum record device,i.e,microphone,stereo mix,mono mix,line in?
  104. Usbn9603
  105. How to send message from one Application to another Application?
  106. Disappearing Menu underscores
  107. Help Needed
  108. how to hook wsock32.dll?i want to capture the software's internet accessing.
  109. Showing escaped characters in edit box
  110. Weird problem with rand() and object
  111. How to kill all child dialogs when application terminates?
  112. Application witout window
  113. About SOCKET, please me!
  114. Get HTML page
  115. image processing
  116. How to modify file permissions on NTFS drive?
  117. How to inform MainWnd when dll's event occured?
  118. reading XML document
  119. Anyone know to use IHTML* which library should I include?
  120. IWebBrowser2 m_iWeb;cannot instantiate abstract class due to following members:
  121. What is the matter with "CPropertySheet and CPropertyPage and Dialog"
  122. Date-Time-Control and User-Input: Bug?
  123. CTime to COleDateTime
  124. CRecordSet
  125. How to add event handler for IWebBroswer2?
  126. Print Preview . Help ....
  127. cluster in vc
  128. conversion of text files to access files in vc++
  129. ToolTip in a Progress Bar
  130. Com and Virtual Classes
  131. extracting milliseconds from time_t
  132. Font for CButton
  133. How to use IHTMLElementCollection with IWebBroswer2?
  134. Struct array memory usage
  135. Child Control not receiving messages
  136. Implement new secure attention sequence for GINA
  137. Mystery bug
  138. text file input format
  139. CScrollBar custom colors?
  140. Taskbar item count (WIN XP)
  141. how do I add button to CListCtrl item?
  142. A further mystery
  143. Closing an SDI/MDI application
  144. Hooking Winsock ws2_32.dll revealed ! I found it :)
  145. ATL CContainedWindow help
  146. passing info from array of structure
  147. Run-Time Check Failure #2?
  148. Need help to optimize this code
  149. Writing Strings to Listbox
  150. ATL is intercepting my exceptions!
  151. strange problem MsFlexGrid & MDI
  152. Problems about IHTMLDocument2
  153. Adding an Image
  154. Com+
  155. Does raw wav data dealed with before saving to disk?
  156. Programming for windows 2000?
  157. Where to get info about IP routing?
  158. Integration problems
  159. Disabled Control
  160. XML inject into IHTMLDocument2
  161. How To Remove ATL object from project
  162. Heap Limit Error
  163. 'CListView' : base class undefin
  164. How to calculate the running time of each function?
  165. sorting files in a directory
  166. convert SDI to MDI - any shortcut
  167. what is "using namespace std" ?
  168. .NET and discussion
  169. Visual Studio 6 and WinXP styles
  170. Background Image
  171. Window class name
  172. <<Help be to remove BOLD FONT in all caption of control!!!>>
  173. streaming CString with <iostream>
  174. Filtering!!
  175. Problems with HtmlHelp API
  176. Find a substring in strings of COMBO?
  177. How to append string to file using CStdioFile?
  178. Question about void CMainWnd::OnDraw(CMyPaintDC& dc)
  179. Problems with typeof in VS.Net
  180. Cannot initialize DAO
  181. Programmically Simulating Mouse Click on Menu Bar Item
  182. How to make an app that runs on Win 95, 98, ME, NT, 2000 and XP
  183. ascii value of extended characters
  184. Splitter Window
  185. how to write to a txt file?
  186. Question about using features of Visual IDE to advance to a line visited frequently
  187. binary variables
  188. Teletype routine
  189. My Application eating-up handles
  190. Window Application Error Message
  191. Chr() in VC++
  192. Exit Program
  193. Renaming VC++ Project
  194. Copying metafile to the clipboard
  195. Help: Database creation with InstallShield
  196. error C2039: 'SetDCBrushColor' : is not a member of 'CClientDC'
  197. problem w SendMessage fn
  198. an explorer like window...
  199. IXMLDOMNode + remove Node
  200. change window's default color
  201. how to-->auto update in access??
  202. using excel and access without open the files?
  203. redrawing the contents of DC
  204. Help using Edit Boxs!!
  205. Adding a entry in Visual C++ project options
  206. Refreshing Desktop..
  207. ATL COM Vs VB COM Implementation
  208. MDI Application: Windows Menu Updation
  209. detecting received data automatically using winsock
  210. video streaming
  211. Openclipboard inside a CALLBACK
  212. Register Dll Error
  213. Intercepting Messages On Slider Control
  214. Use ISDN and Modem
  215. NetLocalGroupAddMembers
  216. Memory Leak with SafeArray
  217. 'Checking' a menu item
  218. Traping the event on checking the checkbox of CListCtrl
  219. Looking for way to scroll controls in dialog
  220. How to get rid of cimpiling warning error C4786
  221. dynamic loading of DLL and function call with void**
  222. Socket Programming
  223. Inheratance from Two Classes ( Derived from CDialog)..
  224. UPDATE_COMMAND_UI not working as expected
  225. CCombobox ReadOnly
  226. How do I stop the files going into the IE cache?
  227. CAsyncSocket close problem
  228. Two functions at the same time [Visual C++]
  229. AfxBeginThread
  230. initial window size in explorer-style app
  231. overlapped i/o magic?
  232. Overwriting locked files
  233. Resource already allocated
  234. com+
  235. Blocking IE access to local drives
  236. Deadlock when linking 2 DLLs that call eachother ?
  237. Messaging
  238. need help with com server, please !!!!
  239. NetUserGetInfo
  240. handling with new-operator in a class
  241. Prompt on window closing
  242. add pictures to a dialog box in Visual C++
  243. Advaice on Client-Server comm. methods sought
  244. Image Tracking
  245. CPropertySheet color
  246. Connectivity with ODatabase (Oracle Personal)
  247. Anti-aliased lines
  248. Problem with CreateDispatch
  249. DO you know?
  250. messageMap unresolved external ?