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. COleDateTime & DATE
  2. reading and writing the registry
  3. Rich Edit Control
  4. CTreeView & checkboxes
  5. MainFrame -> View
  6. Deregistering a COM ?
  7. Horizontal Scroll Bar in List Control
  8. Property Sheet
  9. MSDN Extension
  10. ComboBox
  11. How to renote connect to DLL?
  12. Debug Warnings
  13. Remove Unicode
  14. CTime
  15. Add and remove property page
  16. An API for VSS?
  17. Mouse Detecting .
  18. Oracle + ODBC -> error in CRecordset
  19. CPropertySheet embedded in Dialog
  20. How to know whether the current drive is CD-ROM or not?
  21. Web based Email ? Urgent
  22. Security laspe due to use of Active X controls in website.
  23. poointer conversion error using hooh procedure
  24. Toolbar Maximum
  25. Help!Classview unavailable
  26. Load Icon from File
  27. Keeping COM object alive
  28. Cobol in C++
  29. How do you not paint the titlebar?
  30. How can I intercept the keyboard message in MFC dialog
  31. tapi
  32. Any way to "free" a view to outside of the Main Frame? (I hope I get a response this time - last 2 q
  33. selection change
  34. How to set the IME composition string to ""
  35. How to set the IME composition string to ""
  36. Implementing help
  37. OnEndSize
  38. C++ / Destructor question
  39. 2D -> 3D, OpenGL?
  40. Determining Inactivity in Windows?
  41. Going back to the beginning of an ifstream object
  42. Doc_View confusion!!
  43. error LNK2005
  44. Displaying numbers
  45. How to find any registry
  46. RAS Connect Speed
  47. Minimize and maximize box on a CPropertySheet
  48. Programmatically changing static IP address
  49. Dynamic Control Message Handler Losing this/m_hWnd
  50. SHGetDataFromIDList
  51. How do I center the text in a combo box?
  52. Bytes
  53. Determine # of ROWs visible in CListCtrl
  54. Broken socket detection
  55. Accesing the TabCtrl of a PropertySheet
  56. fatal error LNK1104
  57. URGENT!! code's problem
  58. Bitmap
  59. Programmatically setting control tab order
  60. print screen, urgent PLEASE
  61. Put icon to System Tray
  62. CoCreateInstance
  63. Using of mutex
  64. Flicker free Listbox control is erasing scrollbars!?
  65. Print Preview Hangs
  66. Menu
  67. Disable Control in Property Sheet?
  68. [HELP] problem in WsaStartup
  69. Displaying huge data
  70. DataBound MSFlexGrid problem MFC
  71. Displaying huge data
  72. Printer monitoring
  73. How to get HScroll of ComboBox
  74. Multi-thread for wav's in Windows
  75. Printing
  76. Embedded Excel worksheet
  77. text of an active IE window
  78. Oracle Class Library failure to OPEN an OSession
  79. Can one create a CDocument that has no VISIBLE view??
  80. Adding a picture to a MSFlexGrid control
  81. WINDOWS REGISTRY ???
  82. RichEdit and OnSetCursor
  83. OpenDocumentFile(NULL);
  84. IPC with console apps
  85. NT Services are running
  86. OLEDB Compilation ERROR
  87. Adding a picture to a MSFlexGrid control
  88. setfocus
  89. SHFileOperation
  90. Deleting an item from a ListBox
  91. Weird behaviour of TabCtrl
  92. Change text in a ListBox?
  93. MFC ActiveX Control NOT receiving OnDestroy
  94. Finding type (settings) of the project
  95. Java GUI
  96. HOW TO PASS URL TO REAL PLAYER??/
  97. file attachements
  98. How can i delete the file that is executed?
  99. JOIN across two separate databases in ADO
  100. CString.ReverseFind HELP!
  101. Property Page not recieving OnSize message
  102. Configuring DCOM programmatically
  103. CRichEditCtrl - Uppercase?
  104. Problems with the write BMP to file function from Zafir
  105. Displaying values
  106. Table popup in frontpage
  107. CSplitterWnd in MDI Frame
  108. Bug in Microsoft's OLE/COM Object Viewer ?
  109. creating a lib
  110. Create a button with out mfc
  111. Help with Fonts+Text
  112. Screen/Desktop Resolution
  113. OnFileNew()
  114. OnSysCommand
  115. maximizing a window
  116. ATL Event Sink + Releasing
  117. How to use SSL in http
  118. Making Raster Printer Driver-Addin. How can i?
  119. Scaling an image
  120. Attaching resources to CView
  121. How to get a unique ID from a PC
  122. What shold I do to change password provider of win95 ?
  123. can anyone help?
  124. How can i upgrade win16 program with vbx controls?
  125. Remove Duplicates of a certain char in a string
  126. CDaoRecordset app works but crashes when I hit the exit button, threaded app.
  127. out of date codeguru samples
  128. How do I close (exit) another application from my program?
  129. how to insert for a raw datatype in oracle
  130. Making pointers to objects made in the visual dialog editor
  131. Values
  132. How to save 8-bit image from current screen to DIB?
  133. PLease tell me as how to reuse the stack again and again
  134. /dev/null device in Windows
  135. Message
  136. What are the APIs for Message Digest?
  137. Dialog Beep
  138. Kill a thread
  139. Formating Pages for the printer
  140. Rich Edit Control, Capturing the Events - Urgent
  141. localization toolkit artical
  142. RichEditControl.....
  143. change file attribution
  144. CTabCtl
  145. List control problem
  146. How to - Wait for an application to finish?
  147. In SDI how do i get filename from CEditView
  148. How to minimize all windows?
  149. SysTray Icon And Opening Hidden Window
  150. Parameterized Query Using CRecordset
  151. MAPI
  152. Inserting a date with ODBC or MFC wrappers (CRecordset)
  153. How to add a wizard...?
  154. Weird behaviour...
  155. Printing by Providing Margins
  156. Building import Library from DLL using LIB.exe
  157. Looking for "rexec" VC++ source code
  158. How can I pass a structure in VB?
  159. How can I enable both help ('?') button and minimize button of a dialog box?
  160. resizing question very easy
  161. OnOk does not always work in PropertySheet :-((
  162. How I can save wave file
  163. List Box
  164. use MfC or not ?
  165. How to CREATE a NEW FOLDER on a tree control?
  166. CSQLDirect
  167. InstallShield for VC++ 6.0
  168. Porting project from VC5 to VC6
  169. Getting text
  170. How to hide the "window" menu entry of an MDI Child Window ?
  171. OnKeyUp?
  172. List box
  173. How do I add some controls in the non client area of a window
  174. How to attach to a running instance of IE???
  175. CFileDialog multiselection
  176. SQLFetch and SQLBindData
  177. jlmartinez@banesto.s
  178. UNICODE
  179. SNMP programming
  180. Cystal Reports 4.6 with VB 5.0
  181. Active/Inactive menu item.
  182. WINTHREAD!!!!
  183. SetTimer in ActiveX
  184. Need a idea "How to do this??"
  185. mfc ftp
  186. How to hide lines in a list control?
  187. CArray Problem
  188. ActiveX Events in Visual c++
  189. SetWindowsHookEx for all the windows, spy all mouse events, How to make the instance handle containi
  190. Activate a property page from an othert property page
  191. Setting the initial width of a CControlBar
  192. base-2
  193. Scroll Bar on a Dialog how can I repaint it ?
  194. Future of the int
  195. Edit control
  196. How can i use the mutex between the applications
  197. CSQLDirect
  198. What if timer is faster than OnTimer function?
  199. Linke Problem while calling a dll
  200. Frame Window in a Frame Window
  201. How to convert CString to BSTR?
  202. NT ,<==> Win98
  203. FTP through Firewall
  204. ISAPI Globals
  205. Scrolling a zoomed bitmap is too slow....
  206. Please help me with _kbhit() and GetKeyState() commands
  207. Hook, where to find the dll of MouseProc ?
  208. Has anyone used Winsock.ocx in VC++ 6.0 ?????
  209. Handling KeyUp & KeyDown event
  210. Launching an external application
  211. right click in listview
  212. How to make the ComboBox show its list box?
  213. ActiveX, Macintosh a very trivial question...
  214. Registered filetypes + ShellExecute()
  215. CRecordSet, Open, Requery...
  216. Changing a class to Class Wizard
  217. Help: windowless control without flicker!
  218. ActiveX messages
  219. Modeless dialog derived from CFormView
  220. Assigning a file a version number when using CFile
  221. response to carriage return in Edit control
  222. Default windows size in VC++?
  223. Topmost ControlBar
  224. Urgent: Reading the address of LPT ports
  225. Help Dynamically creating a DialogBox
  226. printing
  227. sending files over internet
  228. minimize a dialog based application after start
  229. Creating VB server from MFC C++ application
  230. Registry Size in NT
  231. C program to access microphone and speakers
  232. Read registry as a user on WinNT 4.0
  233. What is the type of the existing project
  234. type of the project
  235. Writing CD's
  236. Oracle, Null columns, ADO
  237. serialize a bitmap
  238. CRichEdit Scroll Bars not redrawing
  239. Create Logical Port
  240. CListCtrl :: Challenging & Urgent
  241. HTTPMail / Hotmail Protocol
  242. Controls in General
  243. Static text
  244. Printing
  245. Memory leaks
  246. "connect(...)" or "WSAConnect(...)" error
  247. How can I?
  248. Combo box prob
  249. OnCloseDocument() closing App
  250. TIF Files