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. Multithreading in Windows NT
  2. limit the maximized size of window
  3. Build number
  4. Serial Port Communication (NT)
  5. open files without any other window
  6. How I can add string lines to multiline edit?
  7. How I can add string lines to multiline edit?
  8. How to prevent modeless dialog box from gaining focus when opened...
  9. How I can add string lines to multiline edit?
  10. Changing program cursor
  11. Changing WindowText
  12. Buttons in Scrollbar
  13. How to change wallpaper
  14. system("xyz.exe"); <- opens an ugly Dos-Window
  15. Static window split
  16. OnKeyDown
  17. register
  18. Tool Window
  19. Desktop default menu
  20. edit registry
  21. Printing 2 OCX Controls on a single page
  22. Debug Error
  23. Heavy Load on ODBC Database
  24. Saving Bitmaps
  25. Representation of NaN
  26. Can CString --> char[] ?
  27. How string 1.23456E+004 -->number 12345.6
  28. ShellEecute
  29. Preview & multipage for IWebBrowser
  30. Problem with an odd character in a returned string
  31. Icon in the SYSTEM TRAY
  32. Multipage & tables in explorer
  33. List view control : select a colum
  34. Calling a function from propertyPage to it's container Dialog
  35. Monitoring messages of a window
  36. Problem with commandline parameter in vc++6
  37. send information through browser
  38. Right - Click POPUP Menu
  39. RightClick PopUp Menu
  40. Serialize - pointers?
  41. How to fix Dialogue size in a dialogue based application
  42. how to put text file's data into CView.
  43. how to put text file's data into CView.
  44. ActiveX
  45. ThreadSafe DatabaseDriver
  46. Help ?!! - capturing windows event
  47. hook to menu
  48. CTreeCtrl serialization
  49. changing color and font in read-only edit
  50. Copy Resources form one Project to another
  51. Help: IrDA-Port - WinCE!
  52. Hex2Dec!!!
  53. Template and Messagemaps
  54. BTX file format!!!
  55. an executable file without a DLL interface
  56. Problem with state icon in second column of listctrl!
  57. export array to RTF files
  58. Link Error
  59. Win32 Console and Win32 Application
  60. Trying to create a dialog without resource...
  61. Passing BSTR thru DCOM server
  62. Scale a dialog to new coordinate system
  63. Win32 Console and Win32 Application
  64. MIGRATION
  65. Reports
  66. Can I implement WM_TIMER message in a non window class
  67. Splitter Window
  68. Loosed class in workspace
  69. Enumerating controls in a form or dialogue box
  70. Modem
  71. CreateProcess
  72. Registry problem - IMPORTANT!!!
  73. the latest version of prsht.h wanted!
  74. Deploying an application with DBgrid
  75. Creating child control at runtime
  76. Tooltips in CListView
  77. Performing MIDL steps
  78. CComboBox::SetTopIndex()
  79. ASP discord with IIS?
  80. ATL Register DLL
  81. handle to the window of a menu
  82. Archieve & CString
  83. Multiline in ListCtrl?
  84. RCDATA problems on Win95
  85. System Colors
  86. How to execute Store Procedure using OLE DB?
  87. Comport, and reading the last few bytes
  88. How to prevent losing focus in a CWnd ?
  89. How to convert data from C++ program in to Excel or Word array ?
  90. ATL, Aggregation and events using classwizard and a composite control.
  91. Fastest way to render a bitmap and about DCs
  92. Menu Accelerator
  93. Using MsFlexGrid
  94. printer driver in Win3.1
  95. changing the icon for the childframe
  96. automatically setting language for files with .mc extension
  97. Redraw problem...
  98. Multiline CString problem
  99. How can I know if ShellExecute has failed.
  100. Icon in CEdit ctrl.
  101. VC++ vs. C++???
  102. Convert Toolbars to Flat Toolbars
  103. Urgent: STL map help needed
  104. Serialization without MFC
  105. order multiple project
  106. displaying popup menus
  107. ScreenSaver
  108. How to capture keyboard when application not active
  109. Tab and accelator keys in ActiveX
  110. [DCOM] VB, VC++ Working, VBScript Not Working ?
  111. Using WindowsNT username and password
  112. Measuring Progress of FindFileFirst/Next loop
  113. HELP!: Submenu on a Shell Extension ContextMenu
  114. 2 Doc Templates but don't show selection dialog
  115. How to call an application like notepad.exe from a dll
  116. Position of Tabs in propertysheet
  117. RAS communication ports enumeration ???
  118. Window Handles to Other Applications not owned by my appln.
  119. Size Of Object
  120. How to Set Cookies ?
  121. ???PCMCIA???
  122. Simple File I/O to struct Question
  123. pointers and recursion
  124. ActiveX question
  125. How to addt to/access right click menu on parked app
  126. IE4 Common Controls
  127. Processes
  128. RichEdit ComboBox?
  129. Need help on CFTPConnection....Urgent
  130. Active X Control in IE
  131. Active X Control in IE
  132. Why do I get these errors
  133. RCDATA byte alignment
  134. Cedit & cursor
  135. Loading tif
  136. ComboBox
  137. .SetEnableWindow
  138. MSVC & Linux
  139. Splitter and Property Sheet
  140. CFrameWnd w/CScrollView Question
  141. mouse movement
  142. Routing Messages to Popup windows
  143. Use Drag&Drop to perform copy and paste???
  144. Path
  145. The Speed of Automation inproc servers vs. DLLs
  146. Edit Control with subscripts.
  147. Moving dialog like tool window
  148. Help ???
  149. sockets passing different class objects???
  150. Question on HTTP ?
  151. All OpenGL Gurus, Help
  152. array of strings as parameter! - urgent!
  153. IWebBrowser & CHtmlView
  154. Ctime in GetLastWriteTime
  155. Howto:Call a 32-Bit DLL from a16-Bit DLL ?
  156. Formatting Text In Edit Control
  157. "inconsistent dll linkage" during compile
  158. RegCreateKey
  159. Urgent Help Needed: STL-map
  160. Basic Question mostly answered Wrongly
  161. Basic Question mostly answered Wrongly
  162. Multithreading
  163. Dynamic text and Bitmap, how?
  164. Starting the Default command of IContextMenu
  165. Help with CArray
  166. Assert failure when using Control!
  167. Is it possible to get the Caret Height within a rich Edit Box?
  168. Landscape or Portrait?
  169. Mapi Client
  170. Help with Class inheritance
  171. Registry
  172. How does a container dynamically determine a server's methods?
  173. Handles
  174. Converting from a Visual c++ 4.0 project to version 6.0
  175. A simple question(please help)
  176. Creating Static Library in VC++ 6.0
  177. program with "skins"
  178. Thread functions!!
  179. a simple question -
  180. GetWindowPos()?
  181. Creating DLL's in custom wizard
  182. Multiple Document Pages in Visual C++
  183. Splitters and FormViews
  184. How to distinguish service from regular application(.exe)?
  185. How char[]--> CString Object
  186. a simple question
  187. How to use MS Chart
  188. Edit controls update
  189. Why my view doesn't work first?
  190. How can I get Desktop's Info ?
  191. Controls in DLL, Dialog is not.
  192. refresh after D&D
  193. Debug vs. Release Threads
  194. How to read/write my scroll size/position
  195. NON-MFC Timer
  196. About listview's row height
  197. CStrings and ints
  198. Automatic Line Wrap in a List Box
  199. Getting rid of Scroll Bar
  200. Getting a process's EXE's path...
  201. pls tell me how to change listview's row's height
  202. How to PlaySound?
  203. Problem with FindFirstfile and recycle bin folder!
  204. CString an int
  205. CString and int
  206. Timer in MFC
  207. Internet Download
  208. Small Stand-alone EXE
  209. How to judge a time-typed field in SQL statement?
  210. HOW to relive with try/catch?
  211. Is there a sound recorder activeX or so?
  212. Database Connectivity
  213. About NT processes
  214. No one can help me?
  215. How to get a Modem handle by CreateFile
  216. Urgent!! Plesae Help me!! I've got a problem when Thread is created using AfxBeginThread() in Regula
  217. VC++
  218. Browser Helper Objects
  219. Noone can doit? I'm a bit disappointed!! (IContextMenu)
  220. Very slow
  221. tinkering in strtok
  222. decimal problems
  223. Enumerating Files
  224. MRU overwriting OnOpenRecentFIle
  225. Add an accelerator
  226. Edit control handle
  227. PreCreateWindow in CMyDlg:CDialog doesn't work!!
  228. Any InternetGetConnectedState equivalent function in VC5
  229. I wanna use Strong type in Automation
  230. How can I shutdown the computer by my program?
  231. Trigger the release-point of a button
  232. Background image on a dialog based application
  233. Confused about OnOpenDocument ()
  234. Update CListView
  235. Equivalent functionality
  236. Command Line Parameters
  237. reading floppy drive
  238. how to select and move the item in the container
  239. How do I
  240. Class functions get called after destructor :o
  241. browser control
  242. ocx control problem
  243. Stretchblt and Palette
  244. File search
  245. logical gate circuit simulator
  246. OCX Printing Problem : Urgent Please !!!
  247. Desktop Wallpaper window DC
  248. Getting list of users on an NT network
  249. suppress repainting of dialog (including all controls inside)
  250. ATL Office 2000 AddIn?