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. Changing the decimal point ??
  2. Assertion failed in bartool.cpp (on VC 6.00)?
  3. masking the right button click of default buttons in property sheet
  4. How to Print with font, without DOCK/VIEW
  5. Capture Tab key on Edit
  6. How to Get the actual point when clicked in a ScrollView ??
  7. How to set the color of one character in a CListCtrl
  8. Use class from DLL?
  9. From processHandle to classname
  10. Adding icons to the system image list
  11. How to Set CPorpertyPage Text ?
  12. MFC sockets help
  13. Help on replacing part of a string
  14. Oracle Pro*C/C++ precompiler with C++
  15. Class View
  16. Converting RTF to HTML
  17. Creating a new window? Please help a beginner...
  18. Avoiding F11 effect in IE4
  19. Exporting a Paradaox Table to a text file
  20. MSChart
  21. Executing a program from the application
  22. Do I need Jet Engine?
  23. Big head ache. How to query network drive availability
  24. Assertion Errors
  25. bitmaps
  26. Video for Windows
  27. CCheckListBox
  28. keyboard hook
  29. C++ Resource Edit
  30. qustion about GDI
  31. How do I mimic Windows NT Task manager focus behavior?
  32. Getting character string from CString object
  33. Visual C++ and Window 98 print problem
  34. Sending emails
  35. MFC / C++
  36. How to delete file/dir upon reboot in Win95?
  37. Using ClassWizard, how can I attach a menu created by the resource editor to my MFC code?
  38. How to use MFC Class in ATL?
  39. CTreeCtrl
  40. convert class to struct IDispath
  41. How To: get CPen to be square on the end ...
  42. MFC Dialog menu
  43. Visual C++
  44. Encoding unicode
  45. Encoding unicode
  46. Download vfwsdk?? (video for windows...sof dev kit) or something similar
  47. Get/send a window message without using MFC Messages_MAP
  48. Open GL
  49. Finding Pi
  50. memory allocation
  51. CDialogBar
  52. controlling an accelerator
  53. Dial-up Networking
  54. Help with some misc things
  55. How do I Change the Background Color of an edit box
  56. Can I place a bitmap in the aplication window of an SDI?
  57. Usage of PeekMessage().....
  58. How do implement "Tip of the Day" things?
  59. how can I include vertical scrolling with a dialog box and how can I insert static without truncatio
  60. Resizeable GroupBox Frame
  61. About Paradox
  62. Problem with CString.Format("\xFF\x00\EA") ; Help....
  63. property page title
  64. child windows and minimizing
  65. Bug w/ in place editing for tree control
  66. status bar display screen coordination
  67. radio buttons
  68. Help!! How to CreateCompatibleBitmap for a Large Bitmap file(24bits or 256colors)!!!
  69. bet8Ry
  70. ADO Filter -- Date Field
  71. How to make a no-header ListView?
  72. Create memory DC
  73. CStrings & Edit Boxes
  74. From Bitmap File to HBITMAP
  75. ActiveX Controls in IE
  76. How to control WM_COMMAND message in owner-draw button
  77. Display chinese characters in the menu??
  78. Ctrl Alt Del
  79. Add ON Card Access
  80. what difference of rs232 and rs485 ?
  81. Adding extra windows to SDI program
  82. Activex and NetScape : URGENT!!!
  83. database programing in c++
  84. Realloc Weirdness
  85. Realloc Weirdness
  86. Ugly Subscription Window!
  87. A question about multithread
  88. AfxRegisterClass
  89. Saving rebar state
  90. How to mimic WM_INITDIALOG message for DialogBar
  91. Global Mouse and Keyboard Hook Procedure
  92. Enquiries on DLL...
  93. Get network account's fullname
  94. How can I print icons ?
  95. filenames
  96. Changing exe starting address to my executables.
  97. FTP Connection
  98. Scrolling and OnDraw
  99. Tapi
  100. How to use bitmap as background for edit control?
  101. HELP!! What is "VFWSDK" and where can i find it?? (i think video for windows ... kit) it's a library
  102. How to implement copy, cut and paste for edit controls inside a CRecordView
  103. Problem with Excel 97 and Ole Automation
  104. How to display and manipulate vectorgrafic in views ?
  105. Error running midl .exe - urgent
  106. want no flikker while refreshing @100 ms
  107. Adding menu to dll's context menu
  108. Multiple Selection
  109. ERWin shareware.
  110. Changing background color of dialog box
  111. Detecting free HDD space
  112. good handle of resource
  113. How to support cell scroll in EditGrit
  114. on the active x
  115. Add event to simple object
  116. switch between radio button
  117. CDateTimeCtrl - Initialize
  118. CMemFile
  119. Blocking CTRL+ALT+DEL
  120. Why i am not getting a pointer to a function in dll
  121. C++, Database, ODBC
  122. Constantly refreshing scrollbar
  123. Fax Programming
  124. DirListBox
  125. How to print MS Word document?
  126. Dialog box display from dll
  127. User profiles
  128. writing in own exe
  129. [HELP]2 X 4 monitor -> display one window : how control?
  130. COM MFC VB Setting Properties
  131. How to change the printer with MFC Apps.
  132. MFC
  133. [HELP]2 X 4 monitor -> display one window : how control?
  134. How to get Expoloer ContextMenu
  135. Connecting extensible lines to text
  136. Y2K Software tool comments
  137. How to use ADSI object
  138. Hex to Binary
  139. RGB
  140. Registry Info
  141. wwwthreads.pl source code?
  142. Login as Different user
  143. execute ASP in VC++ ?
  144. Creating 8bit bmp from display
  145. How to detemine CPUID instruction
  146. CPageSetupDialog
  147. Borland builder 3 C++
  148. sub-script font
  149. how to enable a button in a dialogbar?
  150. how do I define a new line for edit box
  151. MSComm Control And Variant
  152. RichText
  153. Find a particular user
  154. How to write data members into a file
  155. CRichEditView/CRichEditCtrl
  156. Drag/Drop in TreeCtrl
  157. Passing MFC class to ActiveX object
  158. Highlight a cell in Listview Control
  159. SNMP Programmer's Reference
  160. Progress Bar
  161. Translating MDI to SDI ?
  162. CListCtrl and ON_WM_RBUTTONUP
  163. CDateTimeCtrl blank field support
  164. change the color of the tab title in property page.
  165. Win3.11/Win95 modaless
  166. prevent closing a floating CDialogBar
  167. Window Common Dialog Control
  168. Implementing Korean IME
  169. Hex to Bin
  170. Printing / Postscript
  171. How to set timeout value for CHttpFile::SendReqeust()?
  172. MFC / Controls on Dialog
  173. Stopping the screen saver
  174. Stopping screen saver - NT 4
  175. Application that displays an icon in the system tray and not in the taskbar?
  176. Size of Struct problem???
  177. Q: How do I create a VC6 project that will run in Win95 DOS mode?
  178. Getting Time on a Server
  179. Accelerator: urgent!!
  180. Please Help!!!!!!!!!
  181. Internet Messaging.
  182. Need Help!
  183. changing text color
  184. Sending Mail by connecting thru POP server
  185. CoCreateInstance
  186. SCSI
  187. Ony one that dont like VC6.00 Help respond.
  188. Ony one that dont like VC6.00 Help respond.
  189. Get Window and IE version
  190. NT4: How To determine via Program which Network Card is installed in the PC
  191. How to create ComboBox dynamically???
  192. Trying to implement scrolling in a modeless dialog
  193. Print Preview 2nd Page
  194. Connecting extensible lines to text
  195. Best way to call Default Drawing from a WM_PAINT message?
  196. HELP!! Need to detect if mouse using COMM port!
  197. How can I get a toolbar button to stay depressed when not attached to a menu option?
  198. RichText Box control.
  199. VC++ & SYBASE using Client library
  200. Inter-document communication(MFC)
  201. How do I represent data from an array in a chart?
  202. C++ programming
  203. Bitmap
  204. Member not found
  205. How to unpress a button
  206. Loading a bitmap in a CStatic
  207. operator=() for double basic type
  208. Check Box - Color
  209. Check Box - Color
  210. Check Box - Color
  211. Destructors
  212. How to convert 9 bits per pixel DIB to 24 bits per pixel DIB?
  213. #Delete MSAccess & SQL Server
  214. RichEdit
  215. journal playback hook
  216. Bitmap in MDI child
  217. URGENT: Winsock and Serial Port
  218. Running a query that retrieve data from more than one table
  219. Internet Explorer 4 common controls in customized CFileDialog
  220. StartUp Aaplication
  221. Can not Flush the Compiler
  222. How to get KEYDOWN message in COM running in IE
  223. how can I force a dialog box to disappear and create another
  224. Thesaurus
  225. Shell, Explorer File Type and ICON
  226. Shell, Explorer File Type and ICON
  227. How to intercept a normal win32 api ?
  228. Playing snd file
  229. CEdit control update
  230. Graphics
  231. CEdit decimal places
  232. hlong2406
  233. Finding TrueType font file
  234. SHIFT+F1 Problem
  235. Finding TrueType font file again
  236. Finding TrueType file too
  237. Using Global variable in one pgm into another
  238. URGENT: HOw can I display Chinese characters in the main menu??
  239. SplitterWnd
  240. How can I change the application Icon...?
  241. timer message missing
  242. Can't close a floating toolbar
  243. URGENT: How to intercept a win32 api such as GetLocalTime, and set the value by customer?
  244. Determine windows version: Win3.1/ Win95/ WinNT
  245. Win 32 function replacement
  246. About Corba
  247. How to run VC++ on a Alpha processor ??....
  248. Getting the client's IP address using JavaScript.....
  249. ICQ Plus skins
  250. Using Activex COM objects in VC++