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. Visual C++ 6.0 - ::FindFirstfile
  2. Dialog resource frusteration
  3. Using function from CFormView
  4. MemLeak concern If BSTR is assigned to CStringArray.
  5. How can I read inside of an applet?
  6. Tree control problem
  7. CListCtrl String
  8. How to print the whole file into poscrtipt file or printer DC
  9. Passing/Receiving parameters to/from MFC COM objects.
  10. IsValidHeapPointer
  11. Returning custom data type from an ATL com method
  12. Explain STRTOK function
  13. CEdit box, new line?
  14. Trouble with Z-order
  15. How to write in edit box from out side the dialog class
  16. Radio button
  17. DLL tutorial
  18. CResizingDialog Resizing
  19. MSComm with Binary Input mode
  20. Riting my own printing routine
  21. Riting my own printing routine
  22. Hook problems
  23. CString to Char[]
  24. How to detect which item was clicked on my context/popup menu on my ListCtrl control
  25. smart card logon in XP
  26. Change VT_DATE to VT_BSTR or any string
  27. "CString" to "const char *"
  28. XML edit control
  29. rename(const char *, const char *)
  30. DLL function parameter issue???
  31. See Through Dialog Window?
  32. Classview information not available?
  33. Determining the directory in which the application's .exe resides
  34. How do you use the semaphore
  35. nonclient tooltips
  36. Problem with pointers
  37. Printing in alternate thread.
  38. A PropertySheet problem
  39. LoadLibrary returning NULL
  40. Detecting a Inet connection
  41. Release call stack
  42. html editing
  43. CFile
  44. Ho to unregister Type Library from Command line?
  45. IDispatch::Invoke Method. How to you retrieve value back?
  46. my timer isn't working
  47. undeclared identifier error
  48. Icons in List Ctrl
  49. Can't find the finder
  50. Save Dialog
  51. CTreeView font change
  52. Fatal error produced using C runt-time str functions
  53. custom draw CTreeCtrl background colour
  54. Constructing a file pathname without MFC
  55. Draw Text On A Static Control (I will award good rating)
  56. doc/view question
  57. Encryption Algorithms... Know any?
  58. A problem with PropertySheet
  59. WMI help requested please!
  60. Dialog to Dialog
  61. How do you get one splitter window to write to another?
  62. Shellexecute verb "openas" not working in W2K
  63. Help with fopen
  64. Problems about Named Pipe
  65. C++ help
  66. CScroll doubts
  67. Windows Programming Question
  68. What is the Equvalent of this in C or VB
  69. MFC Two Option Differece
  70. How do you convert RTF text to plain text?
  71. EnableWindow and task list
  72. Problem with LVS_NOSCROLL style of Listcontrol?
  73. ImageList and CListCtrl
  74. Executing dos command
  75. xmldom
  76. PeekMessage problem
  77. Replace AFX_IDS_IDLEMESSAGE ("Ready") With Status Bar Element?
  78. How to use exported class in dynamic imported DLL ?
  79. Crecordset
  80. hex to decimal..?
  81. Urgrent pls
  82. Multimedia support ?????
  83. Debug assertion failed
  84. Compile time question
  85. Getting text in an Edit Box
  86. opengl offscreen rendering
  87. Trouble with dialogs/views //HELP REALLY NEEDED
  88. unsupported wave format
  89. uninstall without the control panel
  90. Property Page
  91. Help me! How can I get the height of toolbar and statusbar?
  92. A new deugger?
  93. GDI performance under XP
  94. STL problem
  95. graphics question
  96. drawing text in DIB
  97. How to return BYTE pointer from a COM Component to ASP ?
  98. ODBC Questions
  99. How to sort file name?
  100. ODBC Questions
  101. making an eualizer
  102. Get a item from ListBox
  103. Help:How to create a Toolbar in a View
  104. Windows XP button color
  105. export resources in a dll file
  106. For Graphics Masters
  107. Problem creating RichEdit2.0
  108. struct with CString
  109. problem in regular dll
  110. Access Date format
  111. Want to know what all dlls are loaded at any instance
  112. Getting 2000 latest added records from database !!!!
  113. What does this mean please ???
  114. Hoe to return a BYTE pointer from a COM component to ASP
  115. How can I detect if a pointer point to heap?
  116. using bitmap as CStatic background ?
  117. InfoViewer
  118. Browse My Computer
  119. making an equalizer
  120. CWinApp::m_lpCmdLine problem???
  121. Sound
  122. How to get the structure of a Database with OLEDB?
  123. DLL's... Again!
  124. Adding two pointers
  125. How to copy a bitmap to another bitmap?
  126. enumerated types in COM?
  127. replace HUGE "if statement"
  128. Da' man, da' bug : COleDateTime......there's a cockroach in this class, pals
  129. Da' man, da' bug : COleDateTime......there's a cockroach in this class, pals
  130. uploading files to web server
  131. Installation tool....
  132. Performance Counters
  133. why does CListCtrl do this?
  134. why does CListCtrl do this?
  135. Create GIF in VC++
  136. Create GIF in VC++
  137. in dll
  138. urgent plz
  139. InlineIsEqualGUID leads to link error
  140. Start application in maximized form?
  141. TAB ascii value?
  142. Dialog or File?
  143. plz help
  144. Copying all of vector elemetns to Another ???
  145. How to initialize the window, set the color and size
  146. Calling DLL from browser
  147. Timer and callback function...
  148. Passing VB Strings to and from ActiveX controls
  149. URGENT: TransparentBlt PROBLEM !!!
  150. urgent, one more problem
  151. DLL requirements Question???
  152. fscanf assertion problems
  153. CWaitCursor doesn't appear
  154. How to maximize childframe?
  155. Customizing CFindReplaceDialog
  156. How to create a TSR
  157. CTreeCtrl TVS_NOSCROLL style
  158. detecting when formview "loses focus"
  159. Is it possibe to create an process as a new root process?
  160. change a bitmap
  161. CDocTemplate derived class
  162. dialog problem
  163. network share info
  164. F1 -- WebHelp problem
  165. new [] and delete[] help please!
  166. image background
  167. CSplitterWnd width
  168. CPropertyPage (wizard) from ****. Focus not properly set and tab order gone MIA
  169. eVC and MSCEComm
  170. String searching algorithms
  171. Strange date related behaviour
  172. Quick and Easy MessageBox in VC++?
  173. Is there any place where I can free download MS C++ Complier?
  174. Is there any place where I can free download MS C++ Complier?
  175. CTree HELP!!!!
  176. Windows Services
  177. MSComm32 and sending
  178. Developer Studio 7, ATL with MFC
  179. Comparing HTREEITEMs
  180. How to access IHTMLDocument2 in each frame page?
  181. RC4 Encryption
  182. Extension dll's - please help!!
  183. how to access views in document...
  184. reading from text file using c++
  185. Device Independent BitMaps (DIBs)!!!!
  186. MultiThread
  187. Create a Cbitmap for gray level image
  188. Create Splitter bar on an OCX
  189. How to show a dynamic gif in a form
  190. How do i Implement the Bitmap to Dialog
  191. How do i Implement the Bitmap to Dialog?..
  192. making an equalizer
  193. Help for IBM MQSeries Prog using VC++
  194. Help Me! A dialog base Application
  195. CString == operator fails!!!
  196. Needs a solution
  197. Better Grid...
  198. How to remove only vertical scrollbar from List Control
  199. Conversion Problem???
  200. GetDiBits fails for 16bit system color.
  201. keyboard hook
  202. Right-aligned text with GDI
  203. How to auto-resize a control when a splitted window is changed
  204. Linking error...
  205. how to get long file name from short name on Windows95
  206. How can I delete file?
  207. about tree view
  208. regarding tree view
  209. regarding tree view
  210. Visual C++ tutorials and question
  211. SDI CView to SDI CScrollView
  212. CListCtrl
  213. HP printing problem
  214. listctrl change bgcolor of a single row and bold a single text item ?
  215. VC++ Project Reverse Engineering
  216. easy question - how to close my program in SDI
  217. Reverse Engineering of VC++6.0/MFC6.0 Project
  218. How to add all content of CListCtrl Item to a variable or an array
  219. Multiple Timers Solution Needed
  220. How to convert an integer to a CString
  221. How to use CString?hope you helping hand.
  222. How to remove scrollbar of a formview
  223. splash screen
  224. CSCROLL doubts
  225. MAPI multiple inboxes.
  226. CSCROLL View class(Help)
  227. SDI, need your advice
  228. very surprised.. CListView
  229. Dialog Box
  230. Suitable Grid
  231. Set Focus to control in CPropertyPage
  232. putting a jepg
  233. How to resolve Mfc42.dll page fault related crash ?
  234. passing a pointer of one class to another causes compiler error??
  235. printer Spool file tooooooo big
  236. CStringList
  237. Windows system temp folder
  238. Member of Administrators?
  239. Send a local file to a Server by FTP
  240. Thread state monitoring
  241. threads
  242. Changing a CListCtrl's HiLite Colour
  243. problem with HttpSendRequest....
  244. PropertyPages Init before PropertySheet!
  245. What do You think?
  246. What do You think?
  247. Cpu Usage Per Process
  248. how to configure registry to autorun a application program before login
  249. Multiline Edit Problem
  250. How to read the unicode string from a file?