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. Socket Notification Sink error
  2. interfacing parallel port
  3. reading the header of a wav-soundfile
  4. Please help me,how to fire a event ? -- SOS
  5. How to play Audio by programming ?
  6. HELP: How to do scrolling in MDIClient correctly...
  7. Trying to get enter in combo box...
  8. Problem with windows messages!
  9. Excel Automation
  10. Best method for drawing/animating a bitmap
  11. How Can I get Character Set
  12. Problem with CFile::Open()
  13. ActiveX In HTML Pages
  14. Color depth
  15. LOGFONT -> CFont
  16. To fill a Combo box
  17. Location in Database
  18. Enable/Disable Screensaver
  19. can i convert a CString variable to char*
  20. How to eject MO disk
  21. Dialog - OnInitDialog
  22. Help??? STAck Overflow.....Urgent
  23. How to minimize all the window pushing a button.
  24. How can create folder which is read only ?
  25. active content to toolbar
  26. Transparent TextOut
  27. URGENT : unknown error 0x80070105
  28. CTreeView tree control ripple effect
  29. Windows files locking
  30. Send and ON_COMMAND message... Is possible ?
  31. How to implement a button on to a caption
  32. Debugging an app running on a remote computer
  33. Annoying VC msg: "One or more files are out of date."
  34. Virtual Functions
  35. Q: stop device with API ?
  36. CStrings map to Database Nulls in Access
  37. Creating ActiveX Composite Control with VC++6...
  38. CDialogBar
  39. Data types in OLE DB ?
  40. How to minimize all the window pushing a button.
  41. Loops
  42. friend function
  43. Drag&drop fails between controls , works fine between Applications, Why?
  44. Custom slider control
  45. how can i have info about PLOTTER
  46. First-chance exception
  47. MS SQL Server
  48. Colors
  49. Retrieving registry trees to text
  50. On resource view, how I size something exactly?
  51. moving a child window across the parent
  52. Do .rc files measure locations in pixels?
  53. Mouse double click
  54. Partialy scrolling
  55. How to minimize a window with a button
  56. Printing
  57. Cant track the Left mouse button during a TrackPopupMenu() call
  58. Transparency in a Dialog
  59. Bug with MoveWindow()?
  60. Using a singlethread dll in a multithread dll
  61. CFileDialog
  62. Splitter question
  63. Adding pages in a Property Sheet by index
  64. resource.h ?
  65. How to change a Dialog Icon
  66. Next child window
  67. DAO Crashing
  68. How to allow only one instance of my program at a time
  69. What's the difference betweeb DEBUG and RELEASE version?
  70. Win32 Console Application
  71. CButton remains pressed after click-> how to do?
  72. InternetGetConnectedState-problem!
  73. Tool tips for controls in Customized CFileDialog?
  74. Image Viewer
  75. Icons
  76. Single document, multiple view classes?
  77. String Copy Problem
  78. close document
  79. ISTREAM, Control-c
  80. Mad inheritance
  81. Bitmap on Button
  82. Printing Graphics
  83. Spell Checker
  84. DLL
  85. Internet-Connection actif or not?
  86. Windows Resizing
  87. display an image on a dialog
  88. Resizeable Frame/GroupBox
  89. Calculating the integers sum of ListView column
  90. Browse For Folder Help!
  91. howto make a scrolled view fill with a list of dialog ?
  92. How to find disk space on Physical Drives?
  93. How to Store and Retreive WAV files (or any objects) via ODBC
  94. Where can I find out how to create an app to view TIFF files?
  95. How to get the executable application name using the Handle?
  96. How to get tha handle for DOS application?
  97. Fonts on dialog?
  98. Apply button, Property Sheets and ATL
  99. Structure List
  100. MM_ANISOTROPIC Question
  101. listctrl and dialog
  102. how can I add vertical scrolling to a CDialog?
  103. beginner
  104. Data type conversion?
  105. Help with KeyDowns
  106. Get Desktop Folder?
  107. LPCSTR to LPSTR
  108. #include problems
  109. Confused DLL resource.h's?
  110. STL and VC6
  111. ODBC question
  112. MDAC and CRecordSet
  113. MDAC and CRecordSet
  114. Working with file (deleting record).
  115. Tapi: Fax or Modem?
  116. handle to the window
  117. cursor on grid
  118. Problem with ListView Control version 6.0 (SP3)
  119. Play an avi without mfc?
  120. Dialog
  121. only CreateFile?
  122. Quick question about CBitmap class
  123. CArray
  124. How it works?
  125. Getting the HWND of the child window
  126. Thunk?
  127. Winpopup
  128. How can I control a variable that I create in class A from class B ?
  129. Why glRasterPos drawn 2D text disappear when compiled with VC++ 6.0 statically???
  130. Adding an application oicon to the Systray.
  131. Why glRasterPos drawn text disappeared when compiled with VC6.0 statically?
  132. How to create apps that cannot be killed
  133. How to set a user defined icon when in drag_drop operation?
  134. ListView
  135. cursor
  136. A Big ask. re: Printing
  137. Class wizard
  138. How to save CBitmap to file?
  139. How to make a copy of a CBitmap object?
  140. Run a Macromedia Flash movie inside a C++ application?
  141. Currency to String
  142. getline & binary nulls
  143. How to obtain the address of a member func?
  144. ATL Server(exe)
  145. HELP How to concatenate carriage return (enter) key in textout parameter
  146. HELP How can I detect left and right shift, control & alt key.
  147. HELP How can Hide/Show a FrameWindow during runtime.
  148. CAnimateCtrl::Play causes Runtime Error
  149. HELP How to retrieve the system colors.
  150. HELP How to call only submenu of main menu in shortcut (Right Click).
  151. Drag&Drop
  152. HtmlHelp Viewer startup
  153. how to opoen the most recently used files?
  154. HELP!! How to I disable&hide the taskbar, disable Ctrl-Esc, Alt-F4, Alt-Tab, Ctrl-Alt-Del, Hide the
  155. Debug- and Release-DLL
  156. Change Debug and Release
  157. ******** HELP - Extracting strings - HELP ********
  158. MessageMap & DLL
  159. No visible frame window.
  160. Display text on a bitmap?
  161. Move the mouse in a programme in VC++ 6...
  162. I Need the code to move the mouse in VC++ 6
  163. How to create a CFormView
  164. What level math do you need?
  165. GetStyleName Problem
  166. Receiving SysEx MIDI
  167. Shared memory interface?
  168. PATTERN MATCHING STRINGS!!
  169. HOW TO IMPLEMENT AN INTERFACE? HELP!
  170. PLEASE HELP! Anybody know, how I can convert WAVE with one compression to WAVE (PCM)????
  171. Change the font of CStatic
  172. Drag And Drop w/in application
  173. Locking Desktop
  174. CScrollView
  175. How to Initialize a REFIID paramter that needs to point to IShellFolder?
  176. Files
  177. THE BREAK STATEMENT:Why is this considered inelegant and even dangerous?
  178. Disable Max/Min/Close box on the frame
  179. CDialogBar-based classes
  180. Client/server code help
  181. problem with VC++
  182. malloc and free
  183. Floating Point Calcs
  184. Help: ISP based Mail Checker
  185. NT Server Question
  186. Derived classes as class members
  187. How to Move and Find with ADO?
  188. Change cursor shape when performing drag&drop
  189. How to send text to a window?
  190. CHttpServer information??
  191. How many different ternary raster operations do you use?
  192. problem with closing a socket
  193. Creating ActiveX controls
  194. Save project as ???
  195. How to save a DDB bitmap to .bmp file?
  196. What is an .opt file???
  197. "Matlab" like UI
  198. AfxSocketInit()
  199. Integrate icon into dll
  200. Mouse event
  201. Can I make Changes on my current WEB SITE
  202. HELP! How to fill in web forms
  203. two doc_views
  204. Populating MS-WORD
  205. Memory Leak Detected!How this happen?
  206. running "net view" from my app.
  207. Instance of a program present or not
  208. CWinthread
  209. How to display text on a bitmap?
  210. Control the keyboard and driver.
  211. Template and reflected message
  212. A beginners problem
  213. CEdit & CListCtrl
  214. Continues Dialing
  215. Can i SelectObject(CBrush) twice?
  216. Parsing with Variables
  217. SLIDING TOOLBAR,SLIDING TOOLBAR,SLIDING TOOLBAR
  218. VIEWS SPLITTED,VIEWS SPLITTED,VIEWS SPLITTED...
  219. How can I enable vertical scrolling in a CDialog?
  220. Compatible Access 2000 & VC 5.0
  221. How to count the number of '1' in a int variable without using loop?
  222. how can i program t oreceive a signal from a telephone
  223. How to access Contacts items in Outlook folders
  224. How to access Contacts items in Outlook folders
  225. browser helper objects
  226. ATL versus MFC
  227. Window Focus
  228. CoInitializeEx undefined? why?
  229. Better to open and close or to leave open?
  230. How to customize a look of a Window?
  231. How to bypass Cacheing
  232. Screen Capture
  233. comparing strings
  234. buffer means ??
  235. What is the best solution...
  236. What is the best solution...
  237. Console (DOS) I/O Cursor Location
  238. COM ports
  239. Access other view from a view
  240. how to disable right button menu in webctrl
  241. string variable to int ( I need to compare )
  242. CTreeCtrl Serialization
  243. Automatic backup
  244. Window loosing Focus
  245. Trouble with subclassing
  246. A conflict between standard stream classes defined in STL headers
  247. MS Registry - API to store information
  248. HWND of class
  249. Simple question about resources
  250. Distribution