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. Modem Connection
  2. Sending file to a LPT port
  3. Sending file to a LPT port
  4. tabcards
  5. sleep() for delay
  6. Controls in ActiveX Control
  7. My WindowsHook crashes and I have to restart!!!
  8. Named Pipes
  9. Release Version Problem
  10. Sql Server Error - "Invalid field descriptor"
  11. ToolBar with 256 colors?
  12. making tabcards windows with visual c??
  13. help
  14. Macros for Function Keys
  15. Progress Bar
  16. Remove titlebar of a SDI
  17. Unattended Login on a NT4 Workstation
  18. VB
  19. Find the most recent Direcrory
  20. Get app path
  21. Converting a HICON to HBITMAP
  22. NT Event Log
  23. Successive Calls to ::SendMessag()
  24. Grid Control - Design time license
  25. topmost window
  26. Detecting Interactive Logon from a NT service
  27. Graphical Display
  28. Printing one of the harder things to do
  29. HELP ---------------- ISAPI UPLOAD FAILS -------------------------------
  30. The list of URLs with the help of API
  31. Recovery of files after power failure
  32. DIR command
  33. Serializing CFonts
  34. Sending file
  35. How to use CDialog in one's own Win32 static library
  36. Mapping WM_CTLCOLOR Message to a Derived Class
  37. invalidate all the windows of the program...
  38. How to Add text to Explorer's Toolbar buttons
  39. Viewing User defined controls in class wizard
  40. file help required
  41. Number of week
  42. How do I code static control invisible during run time?
  43. Somebody knows?
  44. VC 2.0 to 6.0 upgrade
  45. Threads and Window Controls
  46. .pdf Format
  47. .pdf Format
  48. STack fault in comctl32.dll
  49. UpdateData for selected edit boxes
  50. FD Trackformat in Win32
  51. Docking TreeControl
  52. Capture data sent to console
  53. viewport origin,mapping mode, etc
  54. CStatusBar
  55. CoInitializeEx
  56. Modeless Dialog and DDX
  57. Get the Icon of A Drive
  58. My app isn't starting up right.
  59. PolyLine
  60. How to terminate a child thread?
  61. Help
  62. FILE
  63. Grid Control - Design time license
  64. VC++ In Mac
  65. CWnd / CFormView Question
  66. Convert CString into CTime?
  67. VARIANT
  68. Spawning processes
  69. Spawning processes
  70. CString so slow
  71. Trying to put scrollbar on left side of CTreeCtrl
  72. Creating Hierarchies Visually
  73. Modeless dialog
  74. file size
  75. How to stop Edit box flickering?
  76. How do you put a control on a CTabCtrl ?
  77. "JET500.DLL" - performance enhanced Exchange Server storage engine version 4.0
  78. How can I write text over bitmap ?
  79. Minimized Modeless dialog
  80. CD library
  81. Toolbar style prolem
  82. MRU List in Dialog Menu
  83. Dinamic Bitmap
  84. Howto import one IDL file into another IDL file?
  85. Strange Mailslot behavior!
  86. Global Variables
  87. HELP! PLEASE! DAO: Sort a TEXT field NUMERICALY
  88. Validating a Date
  89. Main Class Pointers
  90. How to tell if your program is already running
  91. shell extension
  92. CView Closing
  93. Back Orifice 2000
  94. SetFocus = crash
  95. device name
  96. Ownerdrawing standard scrollbars?
  97. How to find the coordinates of a control
  98. Undesirable Change in Variable
  99. How to get CPU Usage
  100. Studying CTypedPtrArray
  101. changing the modem settings in VC5.0 using Win 32 Apis
  102. CToolBar::SetButtonText()????
  103. Share a string in fields
  104. How do I check if the user is sure they want to close my application???
  105. How do I close my program from the source code???
  106. Get Current User Privilege
  107. ComboBox on a toolbar
  108. LogonUser Query
  109. How to include DLL containig resource in project ?
  110. CFile.Write
  111. Selecting Database using CRecordSet
  112. Why is Recordset read-only?
  113. error: 'CDateTimeCtrl' : missing storage-class or type specifiers
  114. RTF files...
  115. CopyFile What is the Solution?
  116. type > abc.txt
  117. ComboBox can't , Hide dropped list box !!!!
  118. return a DLL value in a application, what is wrong ?
  119. debug to release
  120. How can I perform transactions using RDC control?
  121. sizing windows and redraw
  122. when the button of ejection on CDROM is pushed
  123. Easy thread question
  124. How to find all IPs in a local network
  125. bitmap on runtime
  126. [Q]how to two program make one
  127. Easy to do, hard to explane.
  128. How to hide the caption of floating toolbar?
  129. C++ Constructors
  130. Pencil like drawing
  131. Context menu
  132. System Shutdown w/Power-Off
  133. I need help with transparent controls!!!
  134. GetFileSize
  135. setting viewport origin, device/logical coord
  136. Design considerations
  137. [HELP] AfxConnectionAdvise in worker thread?!
  138. HELP with i/o!
  139. welcome to http://easyware.yeah.net
  140. WndClass.hCursor
  141. whats the problem
  142. Showing window fx question
  143. Getting user rights under NT
  144. simulate input?
  145. Write/Read from files - the whole process
  146. What happened, error "DAMAGE after normal block[#329] at..."
  147. HTML-HELP
  148. Wizard does not call ID_WIZFINISH - Urgent!!
  149. How to Open a document with using neither OnFileNew nor OnFileOpen
  150. Help needed with Class(const Class& cpy) and Class& operator=(const Class& cpy)
  151. How to load .gif to Dialog?
  152. Making files hidden
  153. FrontPage Editor Automation
  154. Reading data from the parallel port
  155. Initializing a pointer by passing it to a function
  156. Bitmap in Menu
  157. Win32 WM_HITTEST
  158. Hints
  159. sockets
  160. how can I print a PRN file
  161. Want to change Bitmap dynamically
  162. Arrange colors
  163. Having Troube reading from the registry
  164. What to know about variant data type
  165. BeginUpdateResource for Win9x??
  166. How to link two project together by using MFC
  167. How do I add a menu in IE?
  168. value outputting/basic debugging
  169. OnFileOpen
  170. Multimedia
  171. Network Neighbourhood
  172. Sockets
  173. Displaying non-TTF files
  174. saving graphics data
  175. Waveform Plotting
  176. Non rectangular windows??
  177. Toolbar How can I make Drag & Drop... ?
  178. Create/Open/Write to/Read from a files - URGENT HELP NEEDED =)
  179. Toolbar style - second attempt
  180. Confused!
  181. ListBox GetCurSel() problems
  182. Why this doent work??? please...
  183. Dragging and droppping listview columns
  184. List control like frontpage
  185. GDI - Line Styles
  186. Financial functions
  187. MFC DLL Window handles - Hello World bug
  188. MFC book
  189. SP3 for VC++6
  190. Associating bitmap with Button
  191. the question about button of 3state for vc++?
  192. Richedit...
  193. Reading data from the parallel port
  194. How to print a CString
  195. ViewportOrg Vs WindowOrg
  196. changing the view's origin
  197. Display images in the kodak imaging control
  198. Array Size
  199. Calling conventions
  200. mfc42ud.lib
  201. Problem with Printing
  202. Escape Key trapping(Urgent Help..PLEASE)
  203. Setting font types/sizes in textboxes
  204. PROBLEM
  205. Centering Text for Printing?
  206. Making a program "Always On Top"
  207. detect that i am connected?
  208. how disable menu
  209. ShellExtention
  210. disable
  211. Changing Fonts
  212. How to paint to caption?
  213. Reading data from the parallel port
  214. CButton::operator new
  215. SetWindowExt and SetViewportExt
  216. operator= and copy constructor
  217. ADO Date fields
  218. winsock - send(...) return 0
  219. Bitmap looks OK in print preview, but not on paper
  220. textbar rename
  221. Install VC++ on NT w/o administrator rights
  222. How to call Stored Procedure in ISAPI
  223. Call non static function from static function
  224. how can i use a class exported by vc under borland c++ bulid?
  225. How to find the handle of static text of MS Word Password Dialog
  226. Does anybody have a class to play AVI files (i.e. CAvi ) ?
  227. ActivexControls
  228. How to make derived class of ActiveX Contrl
  229. How to add construction into VC++ Class
  230. xml urgent
  231. simplex method
  232. How to use CFile Dialog open files?
  233. Trying to change the background color of a window...
  234. How to set a radio Button
  235. URGENT, create shortcut probleme....
  236. Building UNICODE-Component with ATL
  237. Non rectangular windows WITHOUT using the SetWindowRgn???
  238. CToolbar - Font
  239. Visual C Programming
  240. CListCtrl
  241. How to create a fullscreen dialog?
  242. CHeaderCtrl::Create
  243. CListCtrl, visible & focus a line
  244. Remove whole border of a SDI
  245. LIB for VC++ 5.0
  246. Problem with MultiDoctemplate that have same file extension.. Help !
  247. Simultaneous Running of Applications
  248. Listbox & lbs_ownerdrawfixed
  249. How to serialize a class?
  250. wav files