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

  1. lessons tracking on the internet
  2. MAPI
  3. Q: How to make my dialog always on top ?
  4. How to reuse standart IE bands? (Favorites etc.)
  5. OnKeyUp problem
  6. Erasing data in a Stringstream object
  7. File Extension from file path
  8. ActiveX controls Visual C++ (I love Petzold)
  9. Displaying a modeless form in an in-process component
  10. connecting GridControl to datasource
  11. how to connec GridControl to datasource
  12. Html Control/View support
  13. doing a graphics in memory and save it to bmp
  14. name of the parent process
  15. terminate applications started by ShellExecute
  16. Bmp on Dialog and win9x
  17. get total width of a text in pixels
  18. Run Time Error
  19. Draw on a splitterWnd?
  20. RegistryRelated
  21. Transparence in CPropertySheet
  22. Static Text with Transparent Background
  23. Ras api call
  24. Html control/view support
  25. Overriding the OnPaint function
  26. Writing directly to pixels
  27. Image Scaling (Changing Size)
  28. Floating buttons
  29. Systemtray.h(106) : error C2079: 'm_StartTime' uses undefined class 'COleDateTime'
  30. How can i close document and delete CDocument object?
  31. Access dB is very slow
  32. Disabling a menu item
  33. Getting list of open files
  34. Accessing a CWnd Object from VisualBasic DLL
  35. HELP! Desperate to create a Self Extracting exe
  36. Self Registry DLL
  37. Loading a menu in a Control
  38. WINVER
  39. windows ce memoryleaks??
  40. Window getfocus
  41. Invisible Window & CSerialport
  42. Keep focus for CComboBox in MSFlexGrid
  43. DSN for *.ADP files
  44. LNK error 2001
  45. Design Issue: the best algorithm for the job?
  46. Change fone of text in CSrollView as base class for a SDI.
  47. About Status bar
  48. Control over another application
  49. Converting dialog to ActiveX Control
  50. Waiting for HTML to render
  51. OnKeyDown() with CComboBox
  52. Wait function??
  53. How to edit data in a MSFlexGrid Control
  54. Help: Thunk compiler (again)
  55. ODBC Drivers for *.adp file
  56. Out of Order
  57. Deleting Program Groups on NT 3.51
  58. Reading name of Registry Key (not Value)
  59. How to save/open/display ftp directories using the open/save comdlg (W2000 like)?
  60. View/Dialog
  61. Basic ActiveX Questions
  62. Date Conversion
  63. How does "CancelDefaultHandling()" work?
  64. Double to Hex Conversion
  65. Binary Comparing Files
  66. [HELP]Dynamic Edit html contents in browser's frame?!
  67. STL Memory Management
  68. What's wrong?
  69. STL Memory Management
  70. transparent bitmaps
  71. A stock quote question
  72. Window name/ handle
  73. Creates modaless dialog box that displays HTML.
  74. in need for he
  75. My own wizard
  76. To get the printers installed
  77. CWinApp* in Method Parameter
  78. Changing the colors of listbox scroll bar ?
  79. my C++ programs did not forget where they were
  80. Capture a window and simulate a mouse click
  81. Showing Property Page for a file
  82. How can i get the response form dialog
  83. Cryptic Error Messages
  84. SHGetSpecialFolderPath not available on NT
  85. Creating a wave file from a PCM file format
  86. IDL - Default args
  87. CMDIFrameWnd in CMDIChildWnd View??
  88. Menu Not Updating
  89. How do I center text in a combo box
  90. tab key to navigate thru the splitter windows
  91. ShellExecute(hwnd, file, "properties", ..) not working
  92. Threads
  93. Drag and Drop from button to listbox
  94. User Interface Thread
  95. PropertySheet
  96. How to create a Fixed Client Area Window In MFC
  97. DBase ODBC Driver
  98. Help File
  99. ATL - WMKEYDOWN
  100. ATL - PreTranslateMsg
  101. Sharing memory variables
  102. Tab Controls
  103. Add to Browser Favourites
  104. How to change font in a static text control?
  105. Time
  106. Urgent help on .dat files
  107. HI~ problem my program. help me!
  108. Windows 95 driver
  109. search for a vc++ book
  110. I need a sample of image's resample
  111. help on drawing .dat files
  112. Always On Top
  113. OLE DB vs. ODBC
  114. Need help understanding this please!!
  115. Read & Display *.gcg font?
  116. Obtaining a pointer to CEdit
  117. EnumWindows
  118. Need some help on views and splitters
  119. Urgent! Optical Warp
  120. Urgent! Optical Warp.
  121. File list
  122. How to get the screen resolution in pixels?
  123. PropertySheet into RecordView: How to make the data exchange?
  124. Object instances
  125. Naming Conventions
  126. Listbox
  127. ATL Object Problem
  128. SuperComboBox
  129. F3 function key capturing
  130. how to set any registry value
  131. MFC
  132. Making a directory shared
  133. Sizeing MDI Child Windo
  134. How to use CRectTracker
  135. code snippets
  136. Timers in C on NT
  137. Syncronize Scroll Bars
  138. About CHeaderCtrl
  139. How to export data from access to sqlserver
  140. Disabling Text Edit in ComboBox
  141. How to Use GetProfileInt in WinCE
  142. Difference between FILETIME structures
  143. How can I make a full screen application with MFC?
  144. CTime Bug In WinCE SDK
  145. About build array construction
  146. About how to use CArray?
  147. (MCF) How to detect the ethernet cards
  148. TAPI
  149. Mapping ENTER to TAB in Dialog
  150. UNICODE
  151. help me please?
  152. Page-feed characters in plain text files
  153. Regarding virtual memory used by processes
  154. Windows cards
  155. Who can help me?
  156. clrscr(); What is the equivalent in c++
  157. Static text
  158. Parallel Port I/O using MFC/SDK
  159. gluUnProject(...)
  160. Tool Tips On WIN-NT
  161. CPropertyPages in a DLL
  162. _Report Class
  163. pointer to struct?
  164. incremental linking
  165. fast list view
  166. modify the m_pd structure of CPrintDialog dynamically
  167. Enumerate Serial Ports
  168. tooltip in list view
  169. Pointer to CRecordset
  170. Tabs in a CDocument
  171. _Report Class
  172. CRecordset::GetFieldValue problem
  173. ISAPI: no access to write registry?
  174. Property sheet button
  175. BMp,Dialogs and Win9x
  176. How to - Wait for an external program to finish and quits itself automatically?
  177. CListBox disabling one / more items
  178. Add/Substract Minutes to CTime
  179. Context menu and double right click
  180. Parallel port IO using MFC/SDK
  181. How to make window call OnDraw() of its views?
  182. Problem displaying nested ActiveX component
  183. modify command.com
  184. zooming buttons
  185. subclass button as activex?
  186. File Time Incorrect
  187. Having a CDialogBar in a Splitter Wnd
  188. NM_KEYDOWN
  189. How to get a dialog item from a FormView
  190. MessageBox to center the application
  191. Resizing CTabCtrl in a CFormView
  192. sharing the data between two different processes
  193. Report Parameterising
  194. Difference ++i ; i++ usw.
  195. CListCtrl
  196. Limiting Num Instances
  197. Selecting data from multiple tables
  198. Download Complete Internet side
  199. To develop a Spider Control in Windows
  200. Changeing Font
  201. Adding to PATH Statement in Autoexec.bat
  202. Immitating a button
  203. Button Style
  204. Minimizing all windows
  205. URGENT!!!! Virtual Functions
  206. Adding a tab in the Window's 'Find' dialog
  207. Adding a tab in the Window's 'Find' dialog
  208. CListBox multi-line
  209. How to manipulate text
  210. What other ActiveX distribution files do i need ?
  211. buttons on the view
  212. File Open Dialog
  213. Going Remote
  214. cod problem
  215. Report Troubles
  216. How to get object from a ActiveX exe
  217. Throw an exception
  218. Reusing Favorites band...
  219. Resource files
  220. Linking to C libs
  221. CFileDialog
  222. How get Icon Handle
  223. adding items to a listctrl
  224. adding items to a listctrl
  225. Problem in CRecordSet::Open
  226. multicolumn listbox
  227. Refreshing Static Data on Dialogs and FormViews
  228. problem of display string containing char other than the op system
  229. "Open With..." dialog box
  230. multiple files on command line
  231. DoubleBuffering in Windows?
  232. Release Mode
  233. New at This ( ? on Pointers)
  234. Is this a bug of MS VC++ 5? (a simple code)
  235. Is it a OLEDB bug?
  236. How to set font size, type or color?
  237. How to resize a button?
  238. How can I update my View from Document?
  239. How to set default value for edit box?
  240. TAPI and WAV Files
  241. Creating wave file header
  242. Copy Protection: Read out Rom Bios
  243. How to get the "MX record" ?
  244. Trobbel with DlgDirList !!
  245. How do I append to a file using CFile?
  246. Sliding Toolbars & roll down or up frames w/buttons and controls VC++
  247. OLEDB Problem with extra bookmark column
  248. How to make a "..." function...
  249. CString to Unicode WCHAR w/ AllocSysString
  250. ado timeouts