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. [Help]How Can I owner draw title bar and use system menu as well
  2. afxdb.h + iostream.h - there is a problem
  3. CArray not correctly initialized
  4. Looking for a macro guru.
  5. DrawFrameControl() under XP
  6. Extending Primary snapin's namespace
  7. activex wrapper for another activex ctrl
  8. Linking static lib's to my application
  9. Problem with CArray serialization
  10. Socket_error
  11. Single Document with MDI for multi-view.?
  12. Deleting user account
  13. mfc42.dll
  14. JPG Image in Dialog
  15. How to refresh List Control
  16. messenger size
  17. Importing an MFC dialog
  18. GetUserName()
  19. delete operator
  20. How to display text on view window
  21. problem with RegisterWindowsMessage
  22. Handle to Icon Ressource
  23. WaveIn or MCI
  24. Best way to reuse group of controls
  25. Serialize ad MDI formview with CTabctl and CListView
  26. parallel port
  27. fast search and sort a CObList with Strings
  28. Roman Numeral Calculater help
  29. std::list problem
  30. Program Closing
  31. release version causes access violation in __sbh_free_block
  32. OCX's Z-order. help.
  33. Print out source of itself
  34. Why are these 3 approaches different?
  35. changing CListCtrl item index
  36. Yet another "Release crashes, Debug works"
  37. What's wrong in this code..??
  38. Specifying Response time to recieve data on port though win32 socket programming
  39. NetServerEnum
  40. HtmlHelp query??
  41. Where can i find ijl15.lib
  42. VC profiling for domain users
  43. What's wrong with my code?Create window
  44. Stumped by a seemingly simple task
  45. Visual C++ compiler
  46. Scrolling problems in CTreeCtrl with multi-line items
  47. how to create a word document from specific dot file
  48. RichEdit Control ?
  49. How to return a CMap Instance...
  50. edit box
  51. aaaaaah! heeeelp! please! help!
  52. Strange problem..
  53. question about transfer message?
  54. who opened the file
  55. problem with calculating percentage
  56. ADO Select returns empty recordset when testing for NULL field
  57. Scrolling window inside non-scrolling window??
  58. Print
  59. Reading an Excel sheet
  60. [DLL] create dll with source code C
  61. DLLs: Different instances, same data
  62. Process-handle vs. ProcessId
  63. SetDlgItemText help
  64. Refreshing WebPage from ActiveX Control...
  65. How can I realize that Dialog?
  66. Windows meta file resolution
  67. how server will notify to a specific client
  68. Detect corrupt file when serializing array
  69. Load_Message_from_File (CDO and OE)
  70. CDO - attached files
  71. C++ calling Fortran sub (Linking pb)
  72. Movig controls in a dialog
  73. Printing the Correct DC ...
  74. icons problem
  75. call COM in VB
  76. ActiveX controls...
  77. Using Cin/Cout with a memo, help
  78. Memory Leak
  79. HtmlHelp and ShellExecute
  80. Can not get current time.
  81. Size of an object with pointer available
  82. Hardware Acceleration
  83. peek & seekg
  84. CDC + Text
  85. How to prevent a part of a window from drawing
  86. __far
  87. Q. concerning CRecordset class.
  88. Can someone Help me with the modification of some code
  89. .NET Book (similar to the Inside COM book?)
  90. Keyboard Input ?
  91. Efficiency with vectors...proc & cons?
  92. Getting if a CDROM is Read or REad Write
  93. More VB Function call fun
  94. How to avoid Flickering without Double Bufffering
  95. How to send Structs over network?
  96. Using Form/Dialog View in MDI with no Doc/View arch... ??
  97. Want to save a file with a default extension. How?
  98. Fax Device
  99. Close a process
  100. method adress
  101. CreateFile() don't open certain serial ports
  102. how to embed OLE While I make a ActiveX Control in MFC?
  103. Here we go again... My line feeds won't show up!
  104. CDC::FromHandle
  105. ActiveX - MSChart 9.0
  106. Unable to add header file to my project
  107. How to secure delete files
  108. overlay text on JPG
  109. CDC+Bitmap+Text e.t.c.... :)
  110. get hardware info ?
  111. Im back with another problem
  112. newbie vector question
  113. Right click drag and drop
  114. Control one application window from another one
  115. checkbox - OnKillFocus ?
  116. in-proc Server aggregation and events in MFC
  117. How to write text on view window in columm??
  118. Unix style copy paste
  119. I need help for own DirectShow filter
  120. Mini-Webserver
  121. Parsing List Mode Data
  122. How to make worker thread wait and share data
  123. Want to Learn Win32 API from Scratch
  124. problem in SHFileOperation
  125. char array allocation
  126. printing word documents using codes
  127. question about MEMORYSTATUSEX
  128. Network Copy of Files
  129. Help me about MAPI Open Attachments
  130. How do I input key hits into another app?
  131. three Sections in INI File ( WritePrivateProfileString )
  132. Access97 Database size gorwing.....
  133. XP annoyance
  134. How do you add menu's?
  135. A problem about exporting data
  136. Return from getKeyboardlayout ???
  137. vc AtviveX control in VB
  138. Display names in the MRU list
  139. NetUserGetInfo
  140. New and Delete Questions
  141. Socket Notification Sink
  142. How can I draw a 2-D histogram with VC?
  143. How test if a Combobox has the focus ?
  144. UNICODE and Visual C++: Read/Write and Display
  145. Combobox styles
  146. Strange proxy behaviour.
  147. debug works, release doesn't. Why?
  148. Hand curosr doesn't show.
  149. how to update a .dll file which is being used by some active program in windows xp?_?
  150. Directory Picker for Win32 AND WinCE
  151. change workspace name?(VC++)
  152. How to disable button before going into loop?
  153. CFileDialog
  154. Speech to text
  155. How do I publish an article ?
  156. Problem with SHARE_INFO_2 and WideCharToMultiByte
  157. Convert ASCII to BSTR
  158. Using different charsets
  159. Passing CDaoRecordset through ActiveX
  160. SetTimer in BaseClass
  161. MS SQL + native connection
  162. mscomm
  163. DEBUG and RELEASE configurations
  164. Help! How do i print Page X of Y as a footer
  165. Forms Designer
  166. multidoc application
  167. StretchDIBits BIG Problem!
  168. background color
  169. How to display coordinates of a mouse cursor?
  170. CList::Find won't work for me when storing a class
  171. preventing more then one instance..
  172. SetWindowsHookEx crushes Explorer
  173. CTime
  174. Limited Exposure of Aggregated Components?
  175. QueryInterface Own Implementation?
  176. Regarding .dat files
  177. Unresolved External that should NOT be unresolved (lib/dll)
  178. Last question, I promise.
  179. How to make awindow to be on top all the time
  180. FtpGetFile? BUG?
  181. Caption - Change Style help
  182. Disableing a radiobutton
  183. Call a (Main) Function from within DLL
  184. List All Opened Files
  185. Device Context Object
  186. Newbie Question
  187. One simple question!
  188. how to add scroll bar to project
  189. Capture Control-C in console app
  190. SafeArrayPutElement
  191. Flickering CStatic is horrible! Please help me!
  192. Correct iteration through a COblist
  193. A general question on class design inside the MFC framework
  194. How to detect selection change in CListCtrl.
  195. Outlook Automation
  196. Convert CString to TCHAR *
  197. How to generate three splitter windows
  198. Help using CRecordset to delete a record
  199. Function for current keyboard language ??
  200. what 's POSIX?
  201. Problems with RichEditCtrl under .NET
  202. create rect around icon ?
  203. find out where icon is ? in my rect
  204. Button Control - change caption text?
  205. CEdit control...
  206. To access two tables from MSAccess using one CDaoRecordView
  207. CList OnItemchanged loop 3 times
  208. Reading MP3 ID3 Tag, doesn't work as expected
  209. ActiveX - Chart 9.0 freezes up my program
  210. search article
  211. CArray, CStringArray
  212. Desperate Help..
  213. File write
  214. multiply defined symbols found? What the...
  215. Black screen. Why?
  216. Edit control scrolling problem
  217. how to capture file without storing it in a file
  218. dialog based
  219. Crystal Report 9 (RDC) & C++
  220. Calling an Oracle Stored Proc from MFC
  221. CObList::Find
  222. Help with sockets
  223. What are some good programming books?
  224. Crazy **** in MFC FILEDIALOG
  225. A Menu in a Dockable Dialog Box
  226. How to export data from a daorecordset to an excel file
  227. FTP Server BIT Format
  228. Another WinCE 3.0 bug? ... starting apps from flash after power down
  229. RichEditCtrl
  230. Problem registering UNICODE DLL under Windows 98
  231. Creating CAB Files Programmatically
  232. Help needed in Doing Image Comparission
  233. How to hide running application and process on task manager.
  234. idea on WinHTTPRequest
  235. how to use DialogBar?
  236. How to have colored text in a Tree Control?
  237. Mirror driver
  238. passing user defined structure as a parameter to Interface method
  239. GDI error !! OnCtlColor
  240. remove window from the Task Manager list.
  241. Internet Exporer registry key
  242. Some problems about COM.
  243. tab control help !!!!
  244. How to specify a file name in VC++?
  245. Double functions in ole
  246. MFC-Question
  247. Simulate Taskbar..!
  248. CPropertySheet&CToolBar&CStatusBar?
  249. printing scrollView
  250. Drawing texe on bitmap