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 1011 1012 1013

  1. vc++ 6.0 and templates question
  2. Serial Port comm.
  3. Menu for Dialog Base
  4. replace windows start menu
  5. how can I collect the combo box control and list box control to the database?
  6. Textout???
  7. CString???
  8. Cant get it to the main wnd
  9. default mail client ? Mapi SUX
  10. process check
  11. Why doesn't work the TextBox ActiveX control ? (urgent)
  12. Displaying graphs given the nodes and the vertices
  13. COM Interfaces
  14. Refreshing the registry
  15. datatype misalignment
  16. ClassWizard don`t work with "Empty 32win application"
  17. toolbars of activex controls (e. g. OnShowToolbars())
  18. Catching "clicks" when user try to access some folder (win nt and Win9x)
  19. Change text color dynamically
  20. Modeless anyone ???
  21. How to center the dialog box title
  22. How can I update records in multiuser environments?
  23. How can I read a string from the windows canvas?
  24. custom toolbar
  25. Problem of referencing components through VB6
  26. How to create DirectDraw screen in a window?
  27. OnDraw, how can I get the rectangle that is painting ?
  28. Problem with CSocket
  29. How to display a gif in a dialog
  30. How to populate a tree view
  31. Import Library and CoCreateInstance
  32. Openning IE With URL which Contains Search String ?
  33. Openning Ie4 with URL containing Search string acept s default.asp -Can it be solved???
  34. CDialogBar
  35. File Type Associations And The Registry
  36. Set Bitmap ???
  37. Menuitem checkmarks
  38. CMemFile Serialization
  39. Automating Outlook
  40. DirectX & Doc/View Architecture
  41. difference between console application and window application in VC
  42. How to populate a tree view
  43. Adding Edit Boxes Dynamically in a Dialog
  44. Set bitmap in RGB ???
  45. Treeview selection??
  46. tough one: Dechiffre bitwise or connected constants
  47. How do I get the border width of an edit box?
  48. Q: How to detect when !WM_MOUSEMOVE ?
  49. multiple source files
  50. class wizard error message
  51. change colour of the title bar
  52. how can I create a hyperlink in a dialog or on a form
  53. Print preview
  54. Stack Overflow ?????
  55. SetCheck in dialog programme
  56. Usings objects of a COM DLL in my app
  57. Hiding the Scrollbars in CFromView
  58. In-Place Activation
  59. CRichEditCtrl
  60. Migration 16bit -> 32bit
  61. Running SQL query on 2 databases
  62. How to get the address of a template function
  63. Easy Question
  64. IDispatch::Invoke
  65. 1 more for the road!
  66. checking multiple registry values
  67. MOUSE HOOK ????
  68. Antialiased 2D graphics
  69. CFile use in an application project
  70. VB dll in VC++
  71. OLE
  72. Call a 32bits DLL from a 16bits program
  73. Sending a POST to a server
  74. MFC-COM Performace Problem on Script Execution
  75. Can't update database
  76. Property description on VB Properties Window
  77. delete file
  78. Dialog ID's
  79. SendMessage
  80. Transparent CRichEditCtrl
  81. COleClientItem
  82. Need Serial Port help
  83. Change the aspect of a TreeView
  84. How can I run DCOM on two nodes of a LAN
  85. CFont
  86. File Replace Confirmation Message Box
  87. Serialization of objects..
  88. Delete String form PendingFileRenameOperations
  89. C
  90. Is it necessary to create a TreeCtrl when you have a TreeView
  91. Is program currently running
  92. Can not Create shortcut link with UNC type?
  93. Filling the screen with a view from a Splitter window
  94. To maximize the New document at the begining of the App
  95. hooks
  96. Using Templates
  97. Enter (Dialog)
  98. VerQueryValue (kinda urgent)
  99. CListCtrl - Adding Combos & Edit Controls
  100. Viewing my data
  101. Reference to global variable
  102. Splitter Windows
  103. Detecting mouse X and Y resolution in pixels
  104. declaring Fn Ptrs to class member functions
  105. Easy SetWindowPos question
  106. CTime conversion
  107. List View Sort-By-Direction Indicators
  108. How do you get pointer to the current document in your CWinApp?
  109. Posting form data to web site
  110. SetCheck ??
  111. Dockable toolbar in CDialog
  112. The compiler
  113. Combine CView with a Doc
  114. Getting Combo Drop DownList Selection
  115. static member in template class <-- PROBLEM
  116. static member in template class from DLL
  117. How can I define a DC object which can be used in all the event handling methods
  118. DLL, Template Class && static member (BIG PROBLEM)
  119. Message Hooks not applied Systemwide????
  120. Unicode
  121. Cable Drawing
  122. Hardware Information
  123. variables
  124. Help with databases...
  125. Can't open the list of combo box
  126. ActiveX Registering
  127. How to destroy a menu attached to wnd?
  128. Dialog Box
  129. Making tabs invisible
  130. find critical info about a running application
  131. find critical info about a running application
  132. font size for Listbox text in MSVC++
  133. IE 5.0 and XML
  134. How do I hide a scroll bar within the ListControl which is on a dialog?
  135. My application should use its own version of comctrl32.dll...
  136. Another Elementary Window ZOrder question
  137. Reading unknown files from known folders
  138. Catching the closure of a console application
  139. Detecting a "Carrier Lost" signal with MODEM
  140. Capture the mouse pointer
  141. Winsock Control in C++
  142. Can I use a virtual list control when my data is stored in a CTypedPtrMap . . & not an array or list
  143. Windows Taskbar
  144. CT_Media
  145. SetSockOpt help
  146. Just curious on pointers
  147. Adding network neiborhood to a Tree Control
  148. Changing wizard buttons
  149. Tree Control - Expanding or Collapsing?
  150. Edit control's style change
  151. Visual C++ vs Visual Basic
  152. ATL Full Control problems
  153. modal dialog on top of everything
  154. subclasssing ActiveX Control
  155. CRichEditCtrl : Background coloring, Read-only state
  156. How do I get a button's button style?
  157. Help: Getting The name of a programs exe from it's window handle
  158. BOOL vs bool
  159. IE and DDE
  160. Modify taskbar information
  161. graphic library for c or c++??
  162. Capturing cursor image
  163. Read/Write Outlook mailbox file
  164. Connected?
  165. [Q] How to know that printing job is finished
  166. [Q] DDE Excution ?
  167. VC vs BCB
  168. CHTMLView and Event from HTML
  169. Need control to display GIFs.
  170. Fix & Int functions
  171. needs help to write SWF file in VC++
  172. How do I use an ActiveX control (invisible) without using MFC ?
  173. Font
  174. How do I rotate a bitmap?
  175. Fix and Int functions
  176. hex for strings?
  177. How can i send ?
  178. Derived classes (beginner question)
  179. siofile.WriteString??
  180. How do I customize the SaveDialog?
  181. Splitter windows
  182. GetClientRect
  183. Few simple questiob about Netscape and IE
  184. BroadcastSystemMessage
  185. Does memory leaks occur when use CreateThread() with MFC DLL ?
  186. very beginner
  187. A new document from the current
  188. bitmap background
  189. Parsing input date
  190. Debugging stack corruption?
  191. setfont
  192. AVI - RLE compression
  193. How can i call the dial-box in my WCE Application
  194. How can I debug a program in Visual C++ 5.0
  195. RESOURCES
  196. Creating a Database...
  197. How to load diffrent views
  198. How to display JPEG files?
  199. Get dimension of dialog box
  200. Mp3 tags - how to get them?
  201. Where can I stop the App creating a New Document at the start ?
  202. Webbrowser scroll bars missing when embeded in composite control
  203. CToolTipCtrl
  204. Access Control
  205. Registering ActiveX control on a "clear" machine.
  206. How can I chpture IE view??
  207. Functions as Arguments
  208. IP Multicasting?
  209. Time critical procedures: what compiler ??
  210. access webserver behind a firewall
  211. selecting limited rows from table
  212. MFC DB output
  213. Getting time over the Internet
  214. Beginner's question - Dynamically constructing ActiveX controls
  215. Making a child window appear like a dialog box (urgent)
  216. Did somebody write against a Paradox table?
  217. Winsock Problem
  218. Using SQLServer from remoted host
  219. Locking a TCP/IP port exclusivly?
  220. Horizontal scrolling in CListCtrl and CRichEditView
  221. Comfiguring Philips Nino RS-232 using Visual C++ for Windows CE
  222. Installing windows explorer hook..(not the web browser)... how to??
  223. Print a dialog box
  224. Showing/Hiding nested splitter windows
  225. adding directories to tree controls
  226. calling C++ from C
  227. Loading DLL with resourses
  228. How to shutdown a resident program
  229. How do I change a VC++ project from being dynamically linked to MFC to a project that is Statically
  230. Visual C++ or Visual Basic ???
  231. Capturing Console Output
  232. MDAC Version
  233. Q: How to abort CSocket::Accept() ???
  234. Setting Windows Environment Variables outside of process?
  235. CTypedPtrMap
  236. Virtual list controls
  237. about cut,copy and paste
  238. Status Bar Font
  239. Set focus to edit control
  240. CFormView and ListCtrl
  241. Creating Database at run time
  242. MoveFileEx
  243. Flickering Clistctrl
  244. DBGrid Control
  245. Vc++
  246. Transistion to VC++ programming
  247. GetActiveObject
  248. Dialog Box
  249. Multipage printing
  250. BLOB in OLE DB Consumer Templates