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. Not receiving WM_DEVICECHANGE in an SDI
  2. How to make a Program work from any drive
  3. Network hub address and port #
  4. How to open My program from any Drive
  5. Resource IDs
  6. Drop List in cells for a column of a CListCtrl or Grid Control
  7. Tool Bars with Text
  8. Finding Drive Types and CDROM Auto Insert Notification
  9. Window always maximized
  10. What you see is NOT what you print
  11. ATL Server & Clients
  12. CCriticalSection and array elements
  13. Printing 24-bit DIB in Windows 95
  14. How do you use SetWindowPos()
  15. Popup Window like the CComboBox listbox
  16. tolower
  17. A Simple Text Scramble Macro
  18. Working on a CListBox w/ CDialogBar
  19. About Property Page
  20. Need code samples for creating memento and restoring from memento
  21. MDI Menus
  22. COM with MFC Implementation Problem.
  23. Object pointer value changing!
  24. Resizing of the dialog
  25. CoGetClassObject and custom object factory
  26. Coloring CEdit boxes..
  27. listview control scrollbars
  28. IShellFolder::GetDisplayNameOf() Problems
  29. ANSI escape sequences in console applications
  30. Alt key?
  31. Handling Mouse Messages in CRichEditCtrl
  32. Any win32 function for checking whether a thread is alive or not?
  33. Click event OnLButtonUp
  34. GetObjectContext fails in MTS.
  35. GetObjectContext fails in MTS.
  36. File Listing
  37. Non-Standard Image to CBitmap
  38. SF_NOTIFY_SEND_RESPONSE Filter notification
  39. Dialog doesn't recieve OnNotify
  40. Detecting Multimedia capabilities
  41. How to disable Esc or Enter key?
  42. edit box colors
  43. delete operator in VC++
  44. ISAPI question ???
  45. While loop
  46. How to Change the size of the ActiveX control ?
  47. How to control no of digits after decimal place in edit box
  48. c++
  49. How to change text box colors?
  50. how to call remote CGI program
  51. Class inherited from CWnd, why OnSetFocus event is not called ?
  52. how to add on to menubar of other apps?
  53. VariantChangeType
  54. Simple Comm port Question.
  55. What is the SHELL32.dll
  56. Auto-Scroll down on Edit boxes?
  57. Starting download at a given position
  58. mfc
  59. Making a DLL in Visual C++ that can export and import to/from C kompilator
  60. Change menus and toolbars
  61. COM - Error Handler
  62. CSocket
  63. get and post method
  64. Visual C++6 Debugger Display of Arrays ?!
  65. How to: Change cursor when moving into an other view
  66. arrays difference
  67. Pipe output from cout or cerr into a text window handelt by MFC
  68. how do I use the same Dll in VB(5.0) and VC(5.0)
  69. vectorscope
  70. how to get the onfocus event?
  71. How to create User DSN for all NT users?
  72. pheew... using the modem to dial a phone number...
  73. pheww... using the modem to dial a phone number
  74. using the modem to dial a phone number... once again
  75. Control for displaying text inside bubbles like in cartoons
  76. DCOM
  77. Net Printing
  78. OleContainer
  79. Accessing Properties into Ole Container
  80. How to send text to a CEditView?
  81. Urgent::Dial up networking help
  82. Using my control in a dialog box
  83. How to retrieve identity of inserted row (OLE DB)
  84. Horizontal blank interval
  85. comparing part of the string
  86. How get Dialup Accounts, phones, logins, passwords?(I wrote dialer).
  87. How get OS Version?(Windows(95 or NT(version) or 98 or other))?
  88. Interrupt
  89. How put image at dialog background?
  90. DCOM - NT security issue
  91. URGENT: Need Help with Screen Saver
  92. Disable an item in the list of a combo box
  93. ANSI escape sequences in console apps don't work, help!
  94. realloc new and CArray
  95. Operating System
  96. Update Data Problem
  97. Open method (ADO Recordset) URGENT!
  98. s6233b30
  99. CToolbarCtrl - HideButtons
  100. Highlight of a CListCtrl Item
  101. System Clock problems
  102. How can I take more than one record out from a CDaoRecordset after a query
  103. Open method (ADO Recordset) PLEASE HELP!!
  104. Owner-Draw Scroll Bars
  105. Checking Client Type
  106. RichEdit control
  107. Need a CList of "CFolder" in class "CFolder"
  108. Popup windows
  109. RichEdit control
  110. block in mainfrm sends interrupt by global variable, how does it know it has been acted upon by anot
  111. GreenField CommX Active X Terminal Control
  112. HowTo copy the value of a pointer to another pointer//Undo/Redo
  113. How to link BC++ dll with VC++ ??
  114. Help Urgent!
  115. How to call a dialogue box from a dialogue based application
  116. Processes/Threads
  117. Passing Info Btw PropertyPages
  118. Printing from CScrollView?
  119. How to detect changes in Property Page?
  120. schematic editor
  121. complex class for visual c++
  122. rich edit controls and SetDefaultCharFormat
  123. string conversion to vector<char>
  124. Closing a CHttpConnection
  125. Help with Image at background.
  126. new/delete
  127. How to know Dll/Ocx used by a running process/application ?
  128. FileDialog
  129. "how to create CBitmap object"
  130. "drag drop using lbuttondown/move/up "
  131. "how to save the button's click locations"
  132. Images
  133. Confusued
  134. CommX 1.1 Tutorials for Visual C++ v.6
  135. How to detect that Enter key is pressed in Edit Control
  136. Dib's
  137. Zooming
  138. I am going nuts, and im sure its very simple
  139. win32 problem
  140. Software timer interrupts?
  141. Activex Executables
  142. Telephony
  143. List Box
  144. Add a quote to the beginning of a char*
  145. Restricting the bottom of a rich edit box?
  146. Opening a com port in dos?
  147. Screen Ouput.. PLEASE HELP
  148. ActiveX Control CommandButton
  149. Static Library in VC++ 5.0
  150. mciSendStr
  151. ActiveX Control
  152. how to get rid of the scroll bar of the form view
  153. PHC creation??
  154. search a file
  155. Changing a DLL without rebuilding the EXE
  156. Disabling mouse double-clicks
  157. Z-Order
  158. Live Update
  159. Control Panel!
  160. How to get files?
  161. URGENT !!! Need CList of CFolder in my class CFolder
  162. how to get the name of the instance
  163. Background of Windows..
  164. Remote Debugging
  165. How to change Mouse Pointer ::URGENT
  166. Any body have telnet or tracert source code
  167. Do I need Windows Sockets?
  168. How to use class drived from CSocket Class for SOCK STRAEM ?????
  169. Problem with ICMP
  170. problem with creating the cbitmap object
  171. drag drop using buttondown/move/up
  172. Sending mails in VC++
  173. Adding a new table
  174. Creating / Manipulating GIF and JPEG
  175. Default Browser Path from REGISTRY
  176. Remote Registry Editing under WindowsNT?
  177. Help! How put image at dialog background?
  178. How to keep track of Tab Order ?
  179. How can detect internet connection (and deconnection) ?
  180. How move the mouse cursor in a grid(likes snap of Autocad)?
  181. remove dialog border at runtime
  182. INVALID_SOCKET
  183. Need information about RasGetEntryDialParams, how use this?
  184. ActiveX Control works in Test Container but crashes VB!?
  185. CListCtrl - Converting int to string
  186. Composite Controls
  187. Hiding console window started using system() function
  188. ActiveX in ActiveX
  189. captionless dialog
  190. Fuzzy string search
  191. Help with SetTimer()
  192. How to tab around the controls with an OCX?
  193. Detecting errors from CreateProcess
  194. A Dynamic Caption for Dialog box
  195. Programming serial port under windows 9x
  196. Window handle of combo boxes in a dialog
  197. Help!?
  198. Urgent: Need to know TIFF File format
  199. Plug-in's
  200. VC 6.0 - compliation
  201. Setting flags in Makefile
  202. Titlebar icon - 256 colors possible?
  203. CTreeCtrl w/ GetItemState Problem?
  204. CFtpConnection
  205. Make window be always on top
  206. Can anyone please help me with an efficient file compression decompression code written in VC++6.0
  207. Direct3D Retained Mode
  208. Child Window
  209. Child Window
  210. Image at dialog background.(Look at my source).
  211. How do I keep a modeless dialog above my application?
  212. Invoking ActiveScript debuuger from script host
  213. Converting WAV to MP3
  214. display text
  215. Captionless Frame Window
  216. Resource localization
  217. CEdit Focus
  218. Need a member of a class in that class
  219. VC6++ Statement Completion
  220. How does C++ compile?
  221. ISAPI
  222. long text
  223. Need a CList <aClass, aClass> as member of aClass
  224. handling multiple objects and object selection
  225. Modem = COM1 = ttyS0 ?
  226. Hiding programs from ctrl-alt-delete
  227. Animated Rects
  228. How to a Skin Application
  229. how to skip code during debugging
  230. Resizing a CComboBox
  231. how to change DNS Wins etc Option in Windows95 Dialup Networking
  232. VISUAL BASIC
  233. HOW TO LINK C++FILES AND VISUAL BASIC FORMS
  234. Memory access out of the ordinary?
  235. ShowCursor is slow
  236. Mouse wrap-around
  237. TreeView
  238. 95/NT registry fcn. differences?
  239. Determining Exception Type in catch(...)
  240. VC++ Debugging
  241. How can get Ip address
  242. ModifyStyleEx vs. SetExtendStyle
  243. UI Skins - What is the best way to implement them
  244. Writing Device Driver
  245. How can I get IE's configuration from VC6
  246. Why is I hate Microsoft more each day !
  247. system call
  248. How does a button work
  249. How do I get CListCtrl's message "SetCheck()"?
  250. CSocket: OnReceive problem