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. File Filters in File open Dialog Box
  2. Varibles in different Classes
  3. Has anyone ever user HP OpenView?
  4. Please Help!! Linking Java and Visual C++
  5. Please Help!! Linking Java and Visual C++
  6. call vaiable among dialogs
  7. Help! How to Draw line to screen
  8. Graying and UnGraying Menu Items at runtime
  9. Scaling an image
  10. Accelerators
  11. Graying\Un graying menu items at runtime
  12. How to add radio button to CTreeCtrl items
  13. How to define color in CStatic
  14. Time saved on fwrite?
  15. OCX and C++
  16. 2D Array
  17. How to Create Tree Control with Grid Lines .
  18. Best way to schedule periodic events?
  19. Asynchronous Pluggable Protocols
  20. how can i read and write physical address memory in WIN32 App
  21. customizing MFC popup menu of file open dialog box
  22. Processes and threads
  23. Accessing physical memory
  24. TIFF
  25. filedialog
  26. C/C++
  27. Advanced UI
  28. How to change color of tabctrl
  29. Accessing physical memory
  30. regarding MRCEXT DLL
  31. Urgent:How to Convering SDK application in MFC dll.
  32. Urgent:How to Convering SDK application in MFC dll.
  33. Hourglass
  34. RePost : Which function calls the X button ?
  35. Does SendMessageW work in Win98?
  36. for
  37. Setup program -...- Finishing the project
  38. How to disable VK_ESCAPE?
  39. HELP ME!!! Background color in a CEdit Control
  40. Setup program (wizard?) -- Finishing the project
  41. Registry
  42. New to threads and messages
  43. View update problem
  44. Registry
  45. Simple One for folk on this forum....Zooming a view containing points...
  46. Embedded Property Pages
  47. How to get a bitmap from a covered window?
  48. Please help
  49. Please help
  50. Please help me with the _outp and _inp command
  51. How can I display white color in context menu
  52. CListCtrl in CListView !!
  53. GUI that is not a dialog
  54. STL Allocators
  55. drawing text
  56. Thread & Doc/View
  57. making files smaller
  58. Subclassing Wizard Buttons - SOLVED!!!
  59. CHI File
  60. Drawing Text in XOR mode
  61. Referential integrity in CDAORecordset - how?
  62. DLL fails to load, only in 95 (not NT or 98)
  63. Referential integrity in DaoRecordSet
  64. Limit size of data sent to printer
  65. Drawing in a dialog box
  66. Incompatible LIBC
  67. Changing color of a Read-Only CEdit Control!!!!!!!!!!!!!!!!!!
  68. systray icon & menu
  69. httpopenrequest
  70. How to set the size of application in function of the size of the view?
  71. How to get all of thread handlesin a process?
  72. Help!!!! I can't create new Excel sheets
  73. CListCtrl::SortItems()?!?
  74. MDI Application Toolbar one one view...
  75. What's happening ????
  76. Scroll bars in tree control
  77. Custimizing CWnd and CScrollbar
  78. Data right truncation
  79. SQL and wildcards
  80. Why does referencing AfxGetThread() from within a DLL cause an access violation?
  81. Panic! Background picture on a RichEdit view
  82. multiple selection in a list box
  83. where can I find the file mfc42ud.lib
  84. Warning: throwing CInternetException for error 12014
  85. Help...
  86. File access violation
  87. How to use Inputbox in Visual C++ instead Visual Basic
  88. Bug in SetWinMetaFileBits for Win95/98?
  89. Corrupt RTF in Help Workshop
  90. Getting handle to dialog box
  91. WRITING AN APP LIKE WORDPAD
  92. Searching text in file
  93. Two buttons, one member function: Which one was pressed?
  94. C question
  95. Static Text Control
  96. Main Frame Title Bar
  97. Main Frame Title Bar
  98. Running the Application
  99. How can I disable one button on the toolbar
  100. Reading file
  101. CDaoRecordView
  102. CWnd::FromHandle - Really want CView::FromHandle
  103. WM_PAINT elimination
  104. A couple of questions, please try to answer the ones you can
  105. TRACE()
  106. Image processing source code
  107. The Difference between CALLBACK and Messages
  108. How to create incompatible Memory DC ?
  109. Parent & Child Activation question
  110. RFC for POP3, SMTP and FTP
  111. URGENT: Need your help !
  112. Change of Icon in MFC sample app
  113. debugging/watching macros and constants
  114. I need source code for Tree interface like Netscape preferences.
  115. Hook-Func in C++
  116. Icon with no system menu
  117. how can I implement a date picker using vc++ 6.0
  118. DatetimePicker issue.
  119. Setting carat position in CEdit
  120. List Control problem
  121. PAGESETUPDLG
  122. Active documents across network (DCOM)
  123. HyperLink Style Static Text
  124. listbox and right aligned
  125. DLLLLLLLL???????
  126. How to get a screen similar to Power Point slide presentation
  127. Executing Other Apps from yours???
  128. Slider Control Labels--in PropertyPage
  129. Com Ports
  130. CPropertySheet & IProperty2
  131. Simple CFtpconnection problem
  132. Bring buttons to front
  133. Get data from
  134. putting Author/Copyright info on avi clip
  135. Fonts and Install shield
  136. attach a dialog(with scroll) with the view
  137. Error spawning cl.exe
  138. SDI, appwizard, and removing the menu bar
  139. How do I call parent's member functions?
  140. Polymorphism
  141. How to handle the Visual C++'s VARIANT types
  142. exchange vaiable among dialog
  143. DlgDirList() can't get long file names
  144. retrieving item in CListCtrl??
  145. Tree in SDI... HOW???
  146. How can I programmatically change the date in a DateTime picker
  147. How to link an icon to a document type in the registry?
  148. ODBC and Threads
  149. How to move a region of Screen ?
  150. GetStatus and CInternetFile
  151. Chat Applet
  152. Record Locking
  153. destructor problems
  154. How to fit mainframe window to CForm View?
  155. Cant get CStatusBar to render properly
  156. extract data from CRdc or CDbGrid?
  157. Counter
  158. How to update the controls on a dialog while a long calculation process
  159. Can not update toolbar buttons
  160. Displaying images
  161. Changing mouse pointer during..
  162. MultiRow selection in msflexgrid control
  163. Visual C++ Compiler
  164. How do I intercept other windows messages?
  165. executing a file on a server
  166. How to move a region of Screen ?
  167. Serial communication
  168. Serial communication
  169. draw on a listview control
  170. Updating Resources in run time
  171. SQL in DAORecordset
  172. deselecting items in a listctrl
  173. Default Browser???
  174. How to capture full screen for display.
  175. Windows Messages
  176. Transparent Controls ?!?
  177. CRecordset closing problem?
  178. Updating owner drawn list box
  179. Adding from one application to another application
  180. Pointer to View Class
  181. Derived CEdit
  182. Receiving all the subdirs in a dir
  183. Another couple of questions for today
  184. Generating .exe from .dll
  185. ClistCtrl problem Deletion.......
  186. [HELP] Memory Leaks when running Multithreads
  187. EnumPrinter
  188. Saving
  189. Whass the problem with this code?
  190. copying files
  191. does there exist a SetDate() for CDateTimeCtrl
  192. Line feeds and tabs in an edit control
  193. Minimized programme.
  194. Restarting windows from my program
  195. Prefetch problems with IExplorer
  196. DAO problem: open/close databases (urgent)
  197. Execute another App with yours (in sequential order)
  198. Windows hook for mouse
  199. Set/Get
  200. Beginning
  201. Sleep() v.s. TimeSetEvent() ?!
  202. files
  203. Problem of Class Wizard
  204. Question about modeless dialog box
  205. Watch for something to happen
  206. Service Pak Problem
  207. How to Get User Name From a Database Object After DefaultConnect
  208. serial I/O using MFC
  209. Help: SysInfo App Will Not Run In Release Mode.
  210. How to read/write string values to the registry
  211. Reading data from Excel docs. How to?
  212. CString
  213. Enlarging & Reducing Images
  214. from "Apartment" to "free"
  215. How to detect CD in CD-ROM drive(s)?
  216. How to Close/Destroy a dialog from its OnInitDialog?
  217. ActiveX question.(new in this...)
  218. CString help
  219. Create Views in MDI
  220. return(ing) values in a function
  221. PROBLEM: Application terminates when dialog closed
  222. Mouse Click
  223. Voice Support
  224. use local network file
  225. Multiple line text box
  226. SendKeys in VC++
  227. How can I get the published properties of a widget in another application ?
  228. C Programming
  229. Conversion between PIXELS and CENTIMETERS...
  230. Other than bitmap ?
  231. Playing AVI Files
  232. deleting array with delete causes an exception...
  233. Want to know the flow of the program in VC++
  234. Combo Control
  235. any body have IRC activex
  236. How to detect IP address
  237. Input data and output data
  238. How to create a dynamic Object - When the object name stored in Memory variable
  239. vb dde excell
  240. ADO - Easy I think
  241. How to set the size of application in function of the size of the view?
  242. Font Licensing
  243. removing the menubar?
  244. Cannot receive key messages in dialog
  245. Beginner in COM
  246. I extremly need your help
  247. WinTop
  248. Help with Data Base
  249. MessageBox not displaying during a rubber-band-ed move window
  250. Property Sheet