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

  1. Auto Scrolling of CRichEditCtrls
  2. How do I add a list of the open windows?
  3. how do I add an "always on top" feature to my app, and a few other questions.
  4. Hiding a running EXE to the user
  5. Visual C++ Icons
  6. Help creating arbitrary shaped dialogs
  7. Window disappear short when it receives a message
  8. (URGENT:) Positioning of an Active-x control..
  9. OpenGl error in Debugger (First-chance exception -> NV4OGL.DLL)
  10. Changing the font of a CListView control
  11. Start program with computer
  12. How do I implement Drag and Drop (OLE) between applications?
  13. Casting a pointer back to a _RecordsetPtr - Need it urgently for my final exam !
  14. Entering Bitmaps/Icons to ClistCtrl?
  15. !!!a problem about GlobalMemoryStatus() API
  16. !!!a problem about GlobalMemoryStatus() API
  17. Owner draw menu problem
  18. Property Sheet On SDI Form View
  19. dao primary key
  20. Quesion on BEGIN_MESSAGE_MAP
  21. How to Draw a Reectangle
  22. File Extensions
  23. CDC *pDC ???
  24. How do make my SDI app load full screen off the start?
  25. Serial comms / CSockets
  26. Change the color of CPen
  27. Get all view
  28. How to change an SDI projet into MDI ?
  29. Own Bitblit Routine
  30. How to compose a program, which can gain access to LAN
  31. CControlBar and CMenu
  32. How can I create Desktop...?
  33. How do I print text exactly as it appears in my view screen?
  34. create my own icon from a bmp or gif
  35. How do I Install and Config TCP/IP
  36. specify the position of a messagebox
  37. Edit Masks And Pattern Match
  38. Printing Problem
  39. How come my "Print Preview" is different than my "screen view", shouldn't they be the same?
  40. Dynamic Static Class Array
  41. working with editbox
  42. DllInstall
  43. Disabling Ctrl+Alt+Del under NT
  44. MFC
  45. How can draw in a static control
  46. SubclassWindow in CRecordView
  47. Help with Ping function!!!
  48. How do I know where I can from when in MainFrm.cpp?
  49. propertysheet - how to enable/disable buttons ?
  50. How can i cahnge the font of a edit control to Terminal
  51. OSI Network Program
  52. custom stream manipulators
  53. Which function to use for changing the coordinates of a bitmap line during application?
  54. How to make a ActiveX control to FullScreen?
  55. Vectors
  56. What is Handle ???
  57. TrackPopupMenu stays on the screen till i select something. How do I stop this?
  58. Visual C++ Version 5.0
  59. why do i need the extra byte ??
  60. Serial Phone line pick up
  61. Responding to WM_CLOSE in CMainFrame ?'s
  62. tree view control
  63. active-x tree view control
  64. How to create Self Extracting EXE
  65. optical reader Access programming interface
  66. VC6 & Win2k!
  67. symphony sheet files
  68. How to change the color of the progress control ?
  69. How to hide the title of a dialog ?
  70. variable conversion
  71. Command Line Arguments
  72. IRC bot/client source code
  73. Center text
  74. Trouble with typedef template
  75. CS_VRESIZE
  76. DLL vs EXE
  77. threading
  78. how to load animated gif and jpg on button
  79. How to select an item in CListCtrl?
  80. How do I add to my menu a list of open views?
  81. Sample project
  82. Problem when i display the "start" Windows bar
  83. How to change the icon of exe
  84. How to handle in child thread that the application is closing?
  85. CHTMLView::OnNewWindow2, how to get URL of that new window.
  86. CHtmlView::OnNewWindow2, how to get the URL of that new window.
  87. automaticaly register an ActiveX control
  88. automaticaly register an ActiveX control !
  89. CRichEditCtrl Unicode Related ( URGENT)
  90. How to disable autoselection in a listbox of a combobox?
  91. How to run this query?
  92. Sizing of the ToolBar
  93. Tab Control
  94. Tab Control
  95. Dll Parameters
  96. Displaying the dialog in maximize form
  97. MP3
  98. Datatype: VARIANT...
  99. chat
  100. Single Instance for NT Terminalserver
  101. Printing an SDI-Dialog
  102. Link Edit and Browseto file
  103. How do I get a Keyboard hook?
  104. Learn Programming
  105. How to self delete a file
  106. ole db and blob
  107. How to get the Windows Caption of an active app ?
  108. Passing data between calsses
  109. Getting the Application Path
  110. Can I create Splitter outside OnCreateClient ??
  111. Entering Bitmaps/Icons to ClistCtrl?
  112. How can I rename the name of a project ??
  113. OpenGL and Clint windows
  114. whats up with this variable
  115. Com Admin Service
  116. How can I identify a current - used system profile in WinNT in C:\WinNT\Profiles?
  117. really global variables
  118. CRichEditView context menu
  119. Problem in PropertySheet
  120. correction
  121. activex help - grid control
  122. Printing
  123. CEdit
  124. Help on PropertySheet.
  125. Trouble whith flicker in my new game!!
  126. Write a new line in a File
  127. RegisterHotKey()
  128. Where i can read or download the COM & DCOM specification? (-)
  129. OLE MS-OFFICE
  130. Serialisation
  131. Code Organization Issue
  132. Pass Data to a Dll from another DLL
  133. Why are there no documents for msnet32.dll
  134. Checking for previous instance in an App without window
  135. How can I take a screenshot of a dialog using VC++
  136. MFC stock program
  137. data object or control?
  138. Scrollbar... Please Help!!
  139. How to create a child dialog
  140. WritePrinter
  141. Restarting an Application
  142. How do I recieve another windows WM_
  143. MAPI folders
  144. Win32 API Print problem
  145. Unresizable static splitter without borders
  146. How to go to the end of the line in a file
  147. Preventing multiple instances of a console app
  148. Making Graphical Objects 'Clickable'
  149. Reading .ini file with MFC methods?
  150. Associated Viewer Open With Dialog
  151. How to hide Application from Taskbar
  152. Win System Icon
  153. Horizontal Scroll on RichEdit
  154. ActiveX Install/Registration from Server
  155. How do I findout if the screensaver is running ?
  156. Modeless Dialog From ActiveX Not Working!!!
  157. ActiveX - Access to current control IDs?
  158. IRQ/DMA/Memory range/IO Range info
  159. Good place to start openGL prog?
  160. CD ROM Spin Up.
  161. InvalidateRect problem...
  162. URGENT please.. always getting Stack overflow woth thos code....
  163. Window Styles
  164. disable size/sizing of main fraim.
  165. Icon handle from link files
  166. Converting Base CView to a CScr
  167. Replacing System DLL
  168. Trouble with defining infinity
  169. How can i load a function from a DLL writed in Delphi?
  170. shell programming
  171. DIALOG CONTROL BOX
  172. Tab and insert page in a tab control
  173. Debug DLLs loading in release version
  174. Listbox
  175. how to use createdesktop function and what there purpose
  176. programming Outlook
  177. Randomizing
  178. How to Retrieve Prog.Id,CLSID, or GUIDID from IDispatchPtr
  179. Turbo Tax Interface
  180. VS Dialog Editor
  181. Shortcut Key
  182. How to find out the process ID and parent process ID of a particular exe file (or a process)
  183. PropertySheet
  184. Calling DLL-function with filepointer parameter crashes
  185. TaskBar
  186. How can I change the cursor
  187. How does Excel create name for .exd file?
  188. How can I undersatnd when some App is running ?
  189. Can I have a title bar with my custom control?
  190. the equivalent ps command of UNIX in windows
  191. Is there any way of consolidating my print commands to OnFilePrint() and OnFilePrintPreview()?
  192. threads with dialog
  193. Bitmap doesn't show in NT
  194. ActiveX registration fails with "LoadLibrary() error"
  195. ATL COM DLL ADO object in client App
  196. Docking Windows
  197. "The current function has no return address"??
  198. Modeless dilaog box's in dialog based applications
  199. How do I invis a CListCtrl Item
  200. SDI - calling a Dialog
  201. User "home" directory in windows 95/NT
  202. OLE DB Column-wise Binding
  203. Shell
  204. Different colored rows in CListBox?
  205. HELP!!! SetTimer crashes under NT but not Win95
  206. CFont Question - How to pass the current text color
  207. Linker error message!?!?!?
  208. DOS Programs
  209. about serial communication :why WriteFile() not work good?
  210. Document Icons don't match!
  211. Accessing CFormView member variables from outside CFormView
  212. How to get the screen display?
  213. SSL 128 bit and post
  214. Select item in CListCtrl
  215. how can I delete all the .txt files in a certain directory?
  216. int main() -- void main()?
  217. printer selection
  218. string to int
  219. New Windows Common Controls
  220. CEditView - Adding CR/LF
  221. Merge
  222. Suggestions Please
  223. virtual function question
  224. hash function
  225. menu bars
  226. Just a question I wondering about
  227. C++, Const
  228. How can I load a large bitmap file(200M) from disk quickly programming with VC++
  229. huge num
  230. Disable all controls in a dialog box.
  231. How to setup some items with images and some without in CTreeCtrl
  232. 2-D arrays and random numbers
  233. 2-D arrays and random numbers
  234. LVITEM initialization for entering icon to CListCtrl.
  235. Intercepting AddRef and Release in ATL object
  236. List control in dialog
  237. I don't know where DrawItem events will be added to in an owner draw List control
  238. Calling Constructor after declaration of the class?
  239. Question regarding Slider control...
  240. How to know how many characters there are in a text file
  241. stop msdev from command line
  242. Read a line and write a line..
  243. Border Color
  244. 16 bit DLL with MSVC 6?
  245. Search C library
  246. ON_CBN_DBLCLK don't work
  247. Accessing printer port through MFC / vc ++5.0
  248. Dynamically ListCtrl
  249. Problem with creating a dialog box in my app and using a dialog box in a DLL
  250. Error