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. Urgent:About Listbox
  2. Installing two operating systems in a single PC
  3. EXPERTS: How to change background color of ActiveX subclassed from an Edit/Combo control?
  4. Stingray Grid in a docking Window
  5. share file
  6. DLL Registration
  7. Help! I can't create a file!
  8. Creating an Activex Control using ATL 3
  9. Resizing controls OnSize().
  10. Please Help me find the corect size of my MSFlexGrid Control
  11. Can you fix this code???
  12. Re: How to change the orientation of two pages while printing.
  13. DLL Registration
  14. Serialize question
  15. CCheckListBox!!
  16. ATL - freeing memory
  17. How Do You?
  18. CSocket::SendTo returns error when broadcasts???
  19. HELP HELP !problem in dialog box
  20. Word Matching
  21. Debug & Release version
  22. fetching float type data from oracle in a VC++ program using OCI calls
  23. Urgent:pl. Reply
  24. VC++ 5.0 MFC Memory Paging problem.I think!
  25. Problem : Tooltips in CTreeView
  26. user rights
  27. ActiveX controls
  28. "ReadDirectoryChangesW" And completition keys
  29. Sort a CStringArray
  30. ODBC problem....
  31. Whats wrong with this code????
  32. start winword
  33. change sizes
  34. change sizes
  35. start winword
  36. can anyone help?
  37. How can I get the count of child item in CTreeCtrl
  38. Automated Development of Projects with Custom Build Steps
  39. Debugging more than one process
  40. Getting module file name
  41. A Table in a RichEditView
  42. Excel Automation
  43. Visual Studio 6.0 Installation Problem
  44. How to get resize gripper in dialog corner
  45. How to call a doc/view architecture from an activex
  46. How can I handle errors that do not throw any Exceptions??
  47. How to get the UNC name of a shared directory
  48. CString
  49. Can anyone help me out?
  50. Com Error
  51. Getting characters from file
  52. Visual C++ perm job opps
  53. Implementing copy/paste in a derived CWnd ?
  54. Delay in visual 6.0 IDE
  55. How to create a macro facility for an application?
  56. Owner drawn, what is it?
  57. CGI question
  58. How can i create new document without first view?
  59. enums
  60. Adding controls to a CToolBar
  61. ICM VideoCompressionManager and BITMAIFOHEADER
  62. Debug dll version problems
  63. How to draw inside a bitmap control included in a dialog box?
  64. How to hide the caret in a CEditView?
  65. SHBrowseForFolder title(Urgent)
  66. x-axis and y-axis problem
  67. scrolling dialog contents
  68. Changing Process Priority without CreateProcess()
  69. urgent !! serialization-problems by loadind array
  70. Please!!!! Each time I run (ctrl+F5) my project, VC5 IDE REBUILDS ALL THE FILES!!!
  71. Release Version of serial communication Program Crashes without VC IDE
  72. What is a dll file and how does it work
  73. CListCtrl : Anchor/Freeze Rows in a list control
  74. I need help!
  75. Idle Time Handling
  76. Using Crystal Report ActiveX control in MFC application
  77. How can I use a Dialog resource to Display my Active X
  78. CTreeCtrl and palettes
  79. Status Bar Controls
  80. processid
  81. processid
  82. ccombobox
  83. How Did They...
  84. URGENT -- ShellExecute() on cpp, h files
  85. URGENT -- ShellExecute() on cpp, h files
  86. Re: Help on bitmaps
  87. How do I get double click from CEdit control?
  88. Multiple selection in CTreeCtl
  89. CEdit control won't handle cut/paste commands?
  90. May be a dumb question about BSTR.
  91. Stealth program
  92. DateTimePicker HELP! Desperate!
  93. glReadPixels
  94. glReadPixels
  95. Selecting codepage
  96. How do I create a find and replace common dialog
  97. CTreeCnrl?
  98. help regdg voice to text
  99. How to add scroll view to a float frame without document template???
  100. VC & ActiveX Guru,help me,perhaps it is not a problem to you,but ...
  101. How to Change the button caption of CFileDialog?
  102. How can I get a handle to an app using its name only?
  103. Setting rcBounds
  104. parsing the hosts file
  105. Split/ListView
  106. CListView
  107. How to prevent ESC from closing a dialog app?
  108. Using the common dialog (for printing)
  109. unable to disable a pushbutton in a dailogbox
  110. Roger
  111. Accessing long file names using ASP
  112. Accessing long file names using ASP
  113. This is so frustrating
  114. How to open large files in my MDI application?
  115. Importing Icons for ToolBar
  116. EnumWindows,EnumWindowsProc and MFC
  117. Can anyone help me?
  118. Detecting Another App's shutdown ????
  119. Detecting Another App's shutdown ????
  120. Help - Urgent
  121. How to create true type fonts files
  122. adding subject with rfc
  123. UNICODE question
  124. Problem in drawing dialog box
  125. redefinition of xxx ignored
  126. Logoff session independent
  127. Japanese Chars
  128. A simple doubt on CTreeCtrl
  129. How to read mail from Outlook Express InBox folder
  130. Re: Disable Main Frame Close and resize
  131. Documnet view architecture
  132. Re: My Problem: clw file got corrupted
  133. mfc
  134. Source Code Checker
  135. How to retrieve the contents of PAB
  136. how to save hBitmap into bitmap file ?
  137. how to save hBitmap into bitmap file ?
  138. UI EXPERTS: How to load different Mouse Pointers
  139. How To ShutDown Windows Through Program
  140. DataPropertypage - sheet
  141. PropSheet
  142. Win32 SDK
  143. Services and more
  144. How to change direction (vertical) of output text in CDC?
  145. How to change direction (vertical) of output text in CDC?
  146. How to terminate a process?
  147. Adding context or(what's this)help facility to dialogbox controls?
  148. Intercepting flow of data while displaying in Stingray Grid
  149. DoubleToHEX!!!Urgent
  150. Controling Balance and Muting a CD Player
  151. Novice question..., How can I use a new macro...
  152. freeze the first column in CListCtrl.
  153. HELP : RAS functions in a NT service
  154. Windows Clock like spin button control
  155. what is the best way to use GDI
  156. Can anyone help me?
  157. Bewildered by the ComboBox!!! Rescue me?
  158. COMBOBOXEX, Execution error when I try to insert one item
  159. CEditView question
  160. Looking for MFC Appointment book source code
  161. ShellExecute
  162. Default Window when application start up !
  163. Processor-ID or Unique-ID
  164. Memory - Swap file
  165. changing activex control style
  166. how to overide onchar in dialogbased application
  167. PreTranslateMessage never called
  168. NTService and CAyncsocket
  169. Locale Problem
  170. Tooltip for status bar panes
  171. How can I add destructor to my component class?
  172. Printing question
  173. Compiling IDL file
  174. Remote Shell client
  175. CRichEditCtrl and Embedded Objects
  176. Using the common dialog object
  177. Using the common dialog object
  178. Re: hide application from ctrl+alt+del screen
  179. Win 3.11 GetDriveInfo
  180. Tray icon for a Dialog based app.
  181. To find running instance
  182. Landscape page orientation problem
  183. Tree views (controls)
  184. controls
  185. Notify of creating and destroying MDI childs
  186. I want to use CToolTipCtrl in CMyWnd derived from CFrameWnd
  187. ATL service thread message pump
  188. How to hide app in the Win95 task list?
  189. PrintDlgEx and collate pages:sample code needed
  190. How can I Put a new line in an edit control dynamically
  191. Cannot Acces Private member
  192. "Failed to create empty document"
  193. changing initial search directory
  194. Accessing CDucument from CDialogBar
  195. Accessing CDucument from CDialogBar
  196. display dialogbox in thread
  197. Embeding HScroll in Stingray SECTabWnd
  198. Embeding HScroll in Stingray SECTabWnd
  199. Passing classes to a COM/DCOM
  200. treeview and IE5: invisible items!
  201. CListCtrl problem
  202. PrintDlgEx and collated printing
  203. _afxWinState global - how can I use it?
  204. Remote Debugging DLLs with VC++
  205. Tree Control Label Editing.
  206. Shortcut problem
  207. Win32 and printing
  208. Cusomizing color dialog box...
  209. How to add a ScrollView to Dialog??
  210. CAnimateCtrl
  211. Unicode display in Win98
  212. How can i implement list of objects in COM
  213. Tring Tring.
  214. ActiveX Menu...
  215. Comport
  216. Is there a CCheckComboBox Control - A drop down combo-box with a checkbox next to each item
  217. Crystal reports interface with visual C++ 5.0
  218. Crystal reports interface with visual C++ 5.0
  219. Which control has the focus?
  220. Want Source: Using Win98 new resizable File dialog
  221. C++ sounds
  222. IE5 and propertysheet call
  223. IE5 and propertysheet call
  224. Memory Problem with COleDataObject
  225. CreateFontIndirect question..
  226. System imagelist
  227. IE Securtity and ActiveX
  228. UPDATE DateTime type field in ExecuteSQL function
  229. Canīt get IDispatch
  230. Detecting file activity
  231. How can i convert string "c:\a\b" to "c:\\a\\b" ?
  232. Re: Execute an application on different machine
  233. Scrollbar use is corrupting my bitmap - how to fix?
  234. Getting a processes list
  235. Re: accessing win32 dll in VB
  236. Global application object
  237. Where should one read the INI-file
  238. Q: CListCtrl and editing subitems
  239. Bitmap in MDI MAINFRAME
  240. Override drawing w/ default
  241. !! Putting text file contents into a CEdit !!
  242. Changing property sheet fonts
  243. Please get this to work
  244. Creating and copying contents of folders
  245. About CScheduleTask class
  246. Subclassing dialog controls in CFormView
  247. Currency
  248. Anyone experienced with stretching the bounds of MFC?
  249. ActiveX Control Doesn't Appear
  250. arrays