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. saving flexgrid and dialog sizes
  2. vc++ scrolling window
  3. how to execute on a click??
  4. Redirect Serial Port Communications
  5. Regular Expression with Visual C++ 6
  6. Problem with CTabCtrl - continued
  7. Thread Scheduling
  8. how to capture and save my own desktop as bmp or dib?
  9. comunication
  10. bitfield sizing
  11. Tooltip for listview subitem
  12. ### RADIO BUTTON GRAYED
  13. Client Timeout
  14. Set Window Restore
  15. Child Processes
  16. ### ICON IN WINDOW BAR
  17. ### wizard & odbc
  18. Overriding right click actions
  19. ADO Command
  20. singleton
  21. URGENT!!!HELP!!
  22. Help: dfrg.msc
  23. Help: dfrg.msc on Win2k
  24. status bar in splitted window.
  25. Mysql and MFC
  26. Transparent background?
  27. Horizontal scroll bar in a CListBox
  28. Long Filenames with CFileDialog
  29. OEM to Ascii
  30. OnNewDocument()
  31. Trying to resize/organize a CDialog with WM_SIZE
  32. link error
  33. Multiple selection
  34. How can I delete the last character from a block of code? ie.. FileView in a RichEditView document.
  35. How can I read pop3 e-mails?
  36. CString rear/write from/in a file problem
  37. MS Flex Grid data input
  38. Need some help in implementing Firewall
  39. Getting text under mouse pointer
  40. Change background color of CEdit
  41. XML
  42. Overloading operators puzzle
  43. Port Monitoring
  44. ReverseFind()
  45. Help a beginer understand COM
  46. CDatabse?
  47. void vs. int??????
  48. combining ascii files
  49. OLE Drag Drop in an ActiveX control
  50. EXE doesn't work???
  51. MakeSureDirectoryPathExists Fail
  52. Find Replace Common Control
  53. mfc in a com add-in
  54. ListBox having different fonts
  55. Help to understand Xemacs code
  56. Windows Hooks NOW!!!!!!
  57. spy++ buggy ? or just me
  58. WTL question
  59. Compile
  60. Get Intenet connection State?
  61. ODBC dBase database problem
  62. To know each network-drive's state
  63. Check Box Caption
  64. edit box vertical scroll
  65. Clipboard cleanup
  66. CTreeView
  67. Detecting if a wav file is playing in Windows without using Windows Media Player
  68. Setfocus for dialog box
  69. CBitmapButton
  70. Listing of all files in a Folder
  71. Now pals...just how do I loop through the entire hard disk searching for files of type *.txt?
  72. Cout & printf shows different results ... why?
  73. Creating multicolored bitmap in DLL
  74. CMainFrame access
  75. Help: puzzle about radiobutton in VC...
  76. How do I do this?
  77. SDI Threads and views
  78. Getting info from dialog into another
  79. Using CListView question
  80. Directory-only CCommonDialog?
  81. problems with ::ShowWindow()
  82. getting raw data bits of bmp
  83. Multiple inheritance AND MFC
  84. Convert str to Byte
  85. Toolbar in a Active Document Server
  86. Creating a new directory
  87. Create an Instance of Word??
  88. Automatically adjusting the size of the controls to the size of the dialog?
  89. Async Queries + Server side cursors
  90. setup program HELP!!URGENT
  91. why cannot create dcom object?
  92. MSChart control
  93. how to crate a new function
  94. MSChart control - Code
  95. Customising MSChart control
  96. Get control of MSChart control
  97. How to get drag functions called in CRichEditView descendant?
  98. Strange ... Very strange ..prob
  99. How to get drag functions called in CRichEditView descendant?
  100. MapiSendMail() fails with MS OutLook 2k default mail client.
  101. The speaker sound volume can be managed?
  102. Button Inside a CWnd... no flickering when Drawing...
  103. Achieving functionality via the command line
  104. Excel @ Start up
  105. How to create ToolBar Fly-outs
  106. radio button
  107. ISAPI Filter dll cretaed in VC++
  108. Hittest on a CListCtrl
  109. CMenu has done a Reggie Perrin!
  110. Redestribution of MFC application
  111. Thread problem
  112. size restricting of frame window
  113. no compile tool error message
  114. It is driving me crazy!
  115. ReadDirectoryChange Undeclared Identifier
  116. Sockets
  117. detecting OS
  118. CheckRadioButton....!!! isint working???
  119. Program icon in ALT-TAB tasks dialog
  120. extracting audio file from video mpeg file
  121. abstract class
  122. Generating SQL Server CREATE TABLE scripts from VC++ or T-SQL ?
  123. Help on XP_HELLO
  124. Help:new line insertion using CFile
  125. Tool Bar
  126. GetIconicMetafile returns an HGLOBAL - how do I use that if I want to draw the icon in InDraw?
  127. Create tool bar in dialog
  128. Memory Mapped Files
  129. Is it possible to write not only read from Version resource?
  130. Accesing an ESMPT mail service from Visual C
  131. many controls on property page
  132. need help with sockets
  133. SAX (xml) question for experts
  134. Help on m_lpCmdLine
  135. My documents directory
  136. Any palette guru out there?
  137. saving members
  138. CArray
  139. CArray arguments
  140. ADO on Windows 2000
  141. MultiLine and Owner Drawn Control
  142. Urgent! Windows Hook problem!(with simple code)
  143. CScrollView help please?
  144. CStringArray
  145. SDK downloads?
  146. I am using CComboBox::Dir to populate a ComboBox. It not only returns filenames is 8.3 format, if yo
  147. CreateThread TypeCast Error
  148. Application terminates when thread completes
  149. Transferring a file from one machine to another
  150. index from CList in MFC
  151. about creating child window
  152. big one - MSDEV architecture
  153. Resize MSFlexGrid
  154. menu items
  155. How to access value of item in report mode?
  156. CListCtrl
  157. Rich Edit Scroll Bar Doesn't show up
  158. howto not block a method
  159. Trigger OnOpenDocument
  160. Mutex
  161. Getting elements from VARIANT
  162. Thread problem again...
  163. Scrolling
  164. Printing works in 9x not NT
  165. Print Preview - need to know if print dialog launched
  166. C2061
  167. Can't open class wizard
  168. Calling the command line
  169. How make control stick the main Wnd when Fullscreen ?
  170. CListCtrl not listing
  171. horizontal menu
  172. mult selections in list control box
  173. Using MFC DLLS in other compilers
  174. Capture the Mouse
  175. simple teplate function
  176. Where can I download following header files?
  177. afxgetresourcehandle
  178. C++ & TELNET
  179. Linked List Header file
  180. delete
  181. Document template string IDR_MAINFRAME
  182. How to get mous click point?
  183. Conversion: CString to PCWSTR
  184. How to get the net connected clients list , on server?
  185. resource folders
  186. Assertion error when using CComboBox.AddString() method
  187. ActiveX and CView
  188. Major release vs debug problem
  189. Need help with Windows 2000
  190. Windows2000
  191. C++ & TELNET
  192. Get/Set
  193. workspace
  194. ActiveX Control Problem
  195. IPerPropertyBrowsing
  196. Unusual Threading problem
  197. Move file locations
  198. Windows 2000
  199. Type of COM ?
  200. Property page
  201. How to get FrameWnd from Document
  202. Windows Messaging I think maybe might be right but I don't know :P
  203. A library class
  204. IDL and struct inheritance
  205. Construction from a file
  206. Standard input and output
  207. MSMQ
  208. SHFileOp, how do you undo them?
  209. CreateDispatch -H-E-L-P-
  210. Loading bitmap from file
  211. Command Line Args with m_lpCmdLine
  212. How can I hide taskbar button?
  213. CDialog wants to know when child CListCtrl changes items
  214. Change font of header title in CPropertyPageEx?
  215. Command Line with m_lpCmdLine
  216. double-click message not sending to window
  217. Detecting dialog changes
  218. COM Tutorial
  219. Non Client Painting
  220. USB Keyboard
  221. Why COleClientItem::CreateFromFile( *.doc ) fails?
  222. Integration of C code into C++ project
  223. Internet Options???
  224. How to control sound channel?
  225. Detecting network line unplugged
  226. windows 2000 service
  227. CRichEditCtrl justify text
  228. Ploting on CDC
  229. PPP Fax Server
  230. CListCrl question
  231. Functions...
  232. Flash DeskTopWindow
  233. Help with Macro program
  234. I need HELP with graphical objects
  235. 'GetUserName' failure
  236. Is it OK to define "CFile dataf[5];"?
  237. Hiding a dialog when it starts up?
  238. move file to RecycleBin
  239. DSN-less connection to SQL Server 7.0
  240. Removing Classes
  241. Fancy CListCtrl question
  242. Class Pointers
  243. Getting address of an API
  244. StreamIn over-writes my previous data
  245. MSDEV architecture
  246. DirectX: how do I add a tool to a segment's graph
  247. SetCaretPosition to SetSel woes :(
  248. exporting a class from a win32 dll
  249. I'v got strange ActiveX and Dcom problems!!!
  250. SAFEARRAY