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. wall screen app
  2. I/O
  3. Custom control ok with NT fails with W98 and W2K
  4. RAM queries
  5. CEdit help please
  6. Printing in CFormview
  7. COM Objects or pointers?
  8. multi language emails
  9. Pointers
  10. mail attachments
  11. asf file
  12. How to read and display Chinese Character in VC++
  13. ftp and drives
  14. no selction in a List Control
  15. select an item in a List Control
  16. How do i store a bitmap in a new memory location, from a handle to a bitmap?
  17. Apply Now button in Property Sheet
  18. Winsock.h
  19. How to get those resource IDs at run-time?
  20. Using the COM port in C++
  21. Icons
  22. Drag and Drop files
  23. How can i read a line from a file and then use >> on that line only
  24. threading help , AfxBeginThread
  25. how to tell if computer is set to 800x600 and in 256 colors
  26. Convert twips to pixels
  27. [Q] Convert CBitmap to LPBITMAPINFOHEADER .... is available??
  28. How can i reboot windows
  29. Initialize
  30. Initialize function
  31. Get the column of the RichEdit
  32. Direct Play - Creating Players
  33. Returning interface pointer
  34. help with C program
  35. Need help on CListBox::Dir()
  36. Access Violation
  37. CDialogBar-derived class
  38. getchar() doesn't work
  39. about ini
  40. improve display quality of OpenGL text
  41. killing a not responding application from another app
  42. icon
  43. CRgn::GetRegionData
  44. Outlook 2000 help
  45. apartment threaded components
  46. send message to a window in another process...
  47. RDO & DB Grid???
  48. Using SAFEARRAY
  49. Read any processes memory?
  50. Modeless dialog
  51. Download several files in one click?
  52. Mapping Wave Files (For cool Effects)
  53. How to manage a TreeView connected to an Access Db ?
  54. Class Member Function Casting
  55. Attatching my own window to MSIE... how?
  56. Improper clipping in controls of the dialog
  57. Network Drive Connect From DLL
  58. Client send data but not received by the server
  59. Strange crash working with sockets and threads
  60. How to move the CEdit in CListCtrl?
  61. MMC, Need Help
  62. Several files
  63. Returning values from Dialog Boxes
  64. How to hide mouse cursor
  65. MSComm32
  66. saving TIF, JPG
  67. CFormView controls doesn't work?
  68. Convert int to CString
  69. Convert int to CString
  70. size of view in CFormView
  71. Input locales and UNICODE
  72. How to set title for Child Windows
  73. HIde MainFrame window on startup
  74. Library not registred
  75. Please Help: How to write a piece of code that opens Word Documnets?
  76. ScrollView
  77. bitmap
  78. Subitem Images in Report ListView
  79. GURUS: Making a control refuse to go UI active
  80. How to detect web site existance?
  81. Hour glass cursor didn't show up
  82. SQL Statement
  83. Accessing access database from HTML file
  84. Html Help
  85. Tool-Tips for CComboBox
  86. CD Write
  87. Extract file from zip
  88. Problem with InitInstance
  89. How to Get Active Window Handle?
  90. CHTMLView
  91. OleInitialize
  92. OleInitialize
  93. Drag and Drop in MFC
  94. SDI Application
  95. Set Font for my Listbox
  96. Memory address values
  97. Help!!!!!!!! TAPI
  98. Message-processing in CDocument
  99. Memory Management Problems
  100. how to resize text in formview
  101. OleObject of Winword
  102. how to resize text to full size of view
  103. Creating WordDocument
  104. Interfacing MS/Word addin
  105. WM_CHAR
  106. DLL accessing data in my exe
  107. Dual Interfaces In MFC
  108. bitmap
  109. f***ing scrollbar
  110. MY GAME NEEDS INTERNET HELP!!!
  111. BSTR to char*
  112. Memory Error while running the application
  113. Tabbed PropertyPage Title
  114. Using ToolBars & ReBars ...
  115. List Control Item Selection
  116. Win 2000 and ras.h problems
  117. How to get Html Document Object with frame?
  118. How to get a file icon like Explorer
  119. List Control Item Image
  120. ADO V2.5 Problem
  121. COM strange behavior...
  122. Direct3D transparencity
  123. CreateProcess from NT Service
  124. How do you attach to a custom EXE COM interface? Please help.
  125. Help file in HTML format..
  126. Common Controls
  127. Settings File??
  128. ATL COM Add-in
  129. Connecting to AS400 database through client acess express
  130. writing string value to registry
  131. Something very strange about struct !!!!
  132. Game creation questions
  133. optimize display
  134. Reading from DOS propmt
  135. static splitter in an mdi app frame?
  136. Why none help me ? CEdit control problem
  137. stop MFC re-arranging toolbars when main window re-sized ?
  138. Socket State
  139. socket state
  140. How do I read a Serialized File???
  141. Is there a way to change a browser's default page programmatically ???
  142. Move cursor mouse virtually
  143. toolbar explorer-style
  144. Move cursor mouse virtually
  145. Copying a File across a network
  146. Adding new items into CFileDialog
  147. printing problem
  148. Web functions using CHtmlView
  149. Help a real newbie....
  150. ATL with STL?
  151. CButton Text
  152. Encrypting/Decrypting usernames/password?!?!?!
  153. Colors....
  154. How to send a window a message via handle
  155. Name Space Extension
  156. how to dyanmicly change control's event handler
  157. Dangerous?
  158. How Do I Turn a MFC Dialog into A DLL?
  159. EXE to DLL
  160. linking a project with no source
  161. Can someone tell me why I cant set a pointer to a bitmap handle?
  162. IE -- Address bar
  163. Way to use Tab Control
  164. Not able to use CListBox in a CFormView :(
  165. SQL Question
  166. Splitter bar
  167. Check Network Acess
  168. Passing variables from property sheets?
  169. double to string
  170. ATL template - varchar insert problem
  171. convert double to string (no cstring)?
  172. Print a file directly.
  173. Problems with \\
  174. Console in a window?
  175. whats up with dynamic_cast, static_cast, and reinterpret_cast?
  176. Can you tell me why this does not calculate the input??
  177. Printing Class Library
  178. CTime's Assertion
  179. Timestamp help! Quick!
  180. bug: memory leak!
  181. How to trap onMouseDown in IHTMLDocument or OnRButtonDown in CHtmlView in C++?
  182. Help to do an MDI Application
  183. Help to do an MDI Application
  184. Hardware
  185. Socket-With_Thread
  186. TV_ITEM and lParam
  187. How to call C++ code from HTML page through "window.external"
  188. Combobox trouble
  189. Size of the Application file
  190. Invisible dialog
  191. How do I set up a ini file and then read from it?
  192. How do I make a class wich writes the content of the class to a file?
  193. Parsing / Lexical analyzer
  194. How to understand HRESULT error code
  195. AFX ... what's this?
  196. Convert relative link to absolute link
  197. Auto Positioning of Components after Windowresize
  198. Help please writing DIB assignment constructor
  199. How to change the form view inside the same CFormView application
  200. TAPI people pl help
  201. Does IStorage* get released/closed when function scope ends?
  202. How to find using IStorage if a storage or stream exists in it or not?
  203. Memory leak when changing MFC static to DLL
  204. Dynamic Toolbar
  205. Print Rotation
  206. Ellipsis on the left side of an CListCtrl
  207. COLORREF
  208. TextToolBar
  209. First entry point - main
  210. Direct X
  211. Microsoft Data Formatting Object Library
  212. Dynamic Toolbar
  213. Founding All computers in a network
  214. MFC, Actually
  215. Memory Leak
  216. Simple application using CHtmlView
  217. Data Provider with ICommandWithParameters interface
  218. Monitoring two distinct networks on one computer?
  219. Database Connecting
  220. Memory
  221. Unable to Find Document error
  222. reading directories
  223. Anyone figure out why this won't display the results??
  224. About Dialog Box
  225. General Question
  226. Property Sheet or Tab Control
  227. Searching for a file
  228. HELP Seperate instances of CListView in Splitter views!
  229. Expanding Applications Capabilities
  230. Will DCOM work over paralel connection and what are the disadvantages?
  231. how to update a view in CFormview by using the ontimer Function
  232. how to change text in CFormview on a timer event
  233. can anyone help with this C program???
  234. can anyone help this C program???
  235. Pragma Disable
  236. CPropertySheet in Form View
  237. how do you use hot keys and implement them
  238. Creating a Class Instance
  239. Setting a font for Edit boxes
  240. Creating a Bitmap from scratch? Please help!
  241. strange error on delete[]
  242. CString conversions
  243. How to get the Html document Interface containing frame in the HtmlView?
  244. CRichEditCtrl
  245. Whats the difference¿
  246. Breaking out of blocking socket call ?
  247. How to insert a SplitterWnd into a pane of another SpliterWnd
  248. How to Detect the end of a file in using CFile and CArchive
  249. Edit controls
  250. MSDN Help?!