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. simple question??
  2. afxCurrentResourceHandle == NULL
  3. memory leaks in dll
  4. Title bar
  5. Modal print dialog messing up document/view
  6. International DLL
  7. Webbrowser control inside activex control
  8. Writing to two seperate queues. PLEASE HELP
  9. pointer to a function
  10. How Can I get a Document?
  11. Porting to macintosh
  12. Cannot init. (the way I want) a base attribute in derived constructor??
  13. CPropertySheet OnClose routine not called
  14. Debuging with WCHAR variables
  15. How to change the height of Clistctrl row?
  16. copy WHCAR[ ] to another WHCAR[ ]
  17. VerQueryValue
  18. SQL Header files?
  19. splitter window
  20. A Splitter Question!(pretty advanced)
  21. MyTabCtrl
  22. key striking
  23. Does anyone know how to Hide the entire top-level menu in an SDI program??
  24. Prevent New Document
  25. Urgent – Selecting a Font Returns NULL on Memory Printer DC
  26. library fuction
  27. Creating View on 2 tables with same column names
  28. merging windows.
  29. RFC 1213 Implementation souce code?
  30. pattern matching
  31. hiberfil.sys and pagefile.sys
  32. Adding minimize button to tool window
  33. MeasureItem + submenu, what the heck?
  34. Question about Scroll Size
  35. CMyView - undeclared identifier
  36. Self control's View: Derive from CCtrlView
  37. STandard window controls in HTML
  38. dll help needed
  39. Any advices?
  40. CAsyncSocket
  41. How do I prepare Modbus Ascii Frame Packet
  42. CFile
  43. Docking Toolbar without MFC
  44. CPU hungry functions & the message pump. Problem with WM_CLOSE.
  45. Kill focus
  46. Edit box ranges and scrollbar
  47. Inverted text
  48. VAlidation of Merge Modules in Windows Installer
  49. how w2k detect the network cable status
  50. Lock Win NT 4.0 Workstation
  51. how w2k detect the network cable status
  52. Adding Menu On Status Bar Icon
  53. CreateFile - ReadFile
  54. winCE
  55. Why my pure C++/COM sink doesn't work?
  56. Multiple Document Template
  57. Deactivating a Button
  58. Deactivating a Button
  59. waveXXX problems.
  60. Sparkling Scroll
  61. SQL Server CE
  62. File Extension
  63. Please help! MFC and HTML
  64. How to Make a Dialog Box Draggable when the TitleBar is not Shown
  65. How to draw a wave line below a word in RichEdit Control?
  66. Access to vtbl
  67. Setting Cursor Position in edit control
  68. Default include directories...
  69. Learning Visual C++
  70. Setting CARET POSITION in edit control
  71. BigMan
  72. Creating an empty .mdb...
  73. ToolBar Images
  74. argument passing 2
  75. Interesting ( and Urgent) about HWND
  76. Detect File Deletion ?? Win 2000.
  77. Is it dangerous to delete the ".asp" file when copying a project?
  78. Access document from generic class
  79. List Control
  80. storing Files
  81. New Problem... CLSID
  82. Blocking execution unless callback function
  83. Reading an Excel file
  84. How can I make a CFrameWnd always maximized?
  85. String in switch statement
  86. Memory garbage collection
  87. Capturing Dbl Clk in CEdit!
  88. multiple inheritance
  89. GDI Cleanup
  90. classview
  91. property sheet
  92. How do I send a XML file via the internet from my app
  93. Edit box Range and scrollbar
  94. SetStretchBltMode()
  95. MS Visual Studio Question
  96. icon: change ID during runtime
  97. windows message handler
  98. How can I create a new instance of a class and associate it with a bitmap object I place on the scre
  99. CPictureHolder
  100. Hide a field
  101. Memory leak in function!
  102. JScript in Pocket-IE Emulator
  103. Getting a pointer to my view class!
  104. Passing array of strings from a Com server.
  105. Picture Box contol
  106. Database problem
  107. Does anyone know where can I Download the Help Files for Visal C++ 6.0?
  108. free memory?
  109. Is the function outprtb() from C++ valid in Visual C++?
  110. Convert CString --> INT?
  111. CTreeView Update From CMainFrame problem
  112. CString ->> Char *
  113. CListBox right click selection
  114. Tree Diagram
  115. Which Hook Procedure
  116. include new ocx version
  117. Retrieve App Path
  118. Scrollbars in a dialog
  119. Splitter Syncronize Scroll Bar
  120. Hiding window from taskbar
  121. Sizeof Taskbar Buttons?
  122. File question
  123. How to Print List control Items?
  124. SetFocus in dialog
  125. Center and full-window-display CFormView Dialog
  126. Overwritting operator ->
  127. Printing with IE WebBrowser Control
  128. BSTR
  129. ListView with 3 colums
  130. MF_POPOP and MF_OWNERDRAW
  131. access 2000 redistribution
  132. access 2000 database redistribution
  133. How do I get File->Print
  134. Menus ?
  135. Excel automation - create a chart
  136. Forcing a range validation of an edit box before a scrollbar command is activated
  137. Printing with IE WebBrowser Control (CHtmView)
  138. run command from C++(MFC)
  139. CListCtrl editing
  140. Extended key
  141. How to derived new Activex from existing one ?
  142. activex versions
  143. Background color of dialog
  144. How can I import a class from a DLL?
  145. Global Function Declaration
  146. clarified question: how do I get File->Print?
  147. Scroll problem with large views
  148. CString 2 long int
  149. Register my contorl
  150. Undo/Redo Engine
  151. How do I programmatically call(run) a batch file?
  152. Sorry to keep on about this but...
  153. Int to CString
  154. CD ROM Question
  155. little problem
  156. A line control
  157. How 2 get the height of the ToolBar ?
  158. ADO Connection open
  159. CObList
  160. edit box
  161. char * to string
  162. Linking
  163. CComboBox
  164. remove characters from a char *
  165. colored buttons
  166. splitter window
  167. Build a lib file from a borland c dll
  168. compilation error? what does this mean?
  169. CButton
  170. Printing - Disable spooling
  171. anyone find any good ways to display animated gifs?
  172. Convert char to hex
  173. Memory!
  174. Active Configurations (Release, Debug)
  175. Inter process event capture
  176. Inter process event capture
  177. Sound
  178. Creating a Control
  179. How can I reduce a CString from "D:\blah\balh\etc\filename.txt" to "filename.txt" ?
  180. File Transfer Rate
  181. STARTUPINFO struct
  182. CD Rom Help Please
  183. serialize tree ADT
  184. error while trying to add printing
  185. CEditView & Horizontal Scrolling
  186. Spin Button with Bitmap
  187. Exe Size to large
  188. Stopping a menu from displaying?
  189. Problem with SetIcon()-function
  190. afxCurrentResourceHandle == NULL
  191. What's wrong? STL Pair question
  192. MPEG1
  193. CListView questions
  194. ActiveX Problem ?
  195. MCI Question
  196. MCI Question
  197. How to use PowerPoint ActiveX control in a Dialog ?
  198. WM_CHAR
  199. Please Help: CTreeCtrl
  200. Dynamic SQL
  201. CString Question
  202. simple switch question
  203. Dynamically opening an external program
  204. VC++
  205. GetFileName
  206. can you SERIALIZE an ENUM?
  207. pls help me to read this simple file?
  208. How to eject multiple cdroms in Win 9x
  209. ODBC Multiple RecordSetds
  210. Best Graphiclibrary for 2D-Visualisation
  211. MMC Scope Refresh
  212. MFC Socket problem
  213. MFC Socket problem
  214. multiple copy/paste macro
  215. wsprintf with TEXT option
  216. Multilanguge Application
  217. Print in CFormView (with splitter)
  218. CSocket problem
  219. Extracting Text from HTML doc
  220. AfxMessageBox
  221. question
  222. Audio Wave file functions
  223. From MS Word to *.prn to *.emf to *.tif - Is there a short cut (codily)
  224. Please Help. Convert Hex to Decimal
  225. bitmap as the child window's background
  226. Create static control in toolbar failure
  227. Use ActiveX WinSock Control to send memory bytes
  228. a question about STL!
  229. i have an SDI, CFormView. Is there any way to remove the title bar completely??
  230. wsprintf formatting
  231. Starting a program automatically
  232. error?
  233. How to implement connection points to my MFC DLL object?
  234. Image processing
  235. Printing MSFlexGrid
  236. Do anybody ever have stack overflow
  237. C
  238. How to implement C++ Class using C structures
  239. error part ||
  240. Windows and the Internet
  241. Files
  242. Serial Communication
  243. Printing Owner Draw buttons
  244. Platform Independent Component
  245. **** TabCtrl
  246. Dissapearing Icons
  247. extensive free Icon gallery (Free)
  248. CStatusBar
  249. Hide a column
  250. Can I create ICON in memory dynamically?