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. HELP ME PLEASE HELP ME HELP ME HELP ME. ITS KILLIN ME....
  2. Help needed on graphics.
  3. Saving using Serialize Function- Urgent
  4. How to Start
  5. Help on dialog box
  6. What exactly is Containment in COM? Is it a container for keeping CLGs(cute li'l girls) inside?
  7. Set focus
  8. Using Dlls in VB
  9. How to get the CWnd* poniter to a window by it's HWND handle?
  10. Specify parent window and attach window
  11. How do I implement an owner-drawn list view with each item having thicker heights?
  12. how to learn COM?
  13. Status bar
  14. DropDown in a ToolBox
  15. Urgent .. How to get msg for mouse click?
  16. Color balancing for an image.
  17. How to use word COM object's events in VC6
  18. Detect Scrolling of browser in sample MFCIE
  19. How to change CEdit 's foreground color and background color
  20. Combo Box and context menu for its edit control
  21. about VoiceTalk
  22. Customizing SYSTEM MENU
  23. USB Driver
  24. std::vector problem
  25. Clipping
  26. Thumbnail Display with ClistCtrl
  27. refreshing view
  28. Help needed on HitTest
  29. Once more need help with dialog in COM-server's interface...
  30. DHTMLEdit Control
  31. Shutting Down System
  32. Not using MFC
  33. About FlexGrid size
  34. How to vorbid that : System prints Text from one View in another!
  35. How to copy CArray
  36. CURSOR :HELP
  37. retrieving a registry entry.
  38. Getting file via url
  39. reource ID at runtime
  40. How to attach a menu to a CWnd derived class like CPropertySheet?
  41. system rights under nt
  42. ie programming
  43. Getting installable components from the Registry?
  44. Dynamic Collections
  45. game map
  46. Workspace dialog
  47. down movement
  48. Sending mails via extended MAPI
  49. Clear consol screen
  50. howto make TASKBAR window ?
  51. ATL with ASP Intrinsic
  52. Global variable
  53. I/O Operations under Win9x
  54. inside files or working with file blocks
  55. VC++ MM controls
  56. Release building
  57. doc/xls to html
  58. How to Activate window which locate in other process
  59. Problems joining VC++ ActiveX and VBasic GUI
  60. Problems joining VBasic GUI and VC++ ActiveX
  61. List control extended style
  62. How do i create my own library???
  63. OnCancel versus Destructor ......
  64. Explorer style animated icon?
  65. begining
  66. how to access doument variables......
  67. Status bar control
  68. class declaration
  69. CListCtrl in DLL-Dialogs
  70. OLEDB for commercial development
  71. Can I embed a property sheet into a view either SDI or MDI?
  72. Stack
  73. Array from ASP to ATL
  74. malloc fail
  75. SendMessage Problem
  76. How can I get into a specific path?
  77. Create a view add attached it when opening a given file
  78. How gethostbyname() getting information?
  79. double to int dropping the numbers after the decimal point
  80. how to read and write true color icon file???
  81. Com
  82. Pascal vs. C++
  83. DDX question
  84. How can I get the numbers of MDI Chield windows?
  85. lparam , wparam help
  86. Help Me VGirish ... Emi or anybody who can
  87. RegConnectRegistry API call is Failing please help...
  88. Help , i need this for my job // VB -> VC COM Fcn.->thread->fire event-> vb
  89. Setting the view size
  90. Urgent! But maybe just asimple questions...
  91. A Rebar within a property page
  92. Separating COMPLEXREGION into no of SIMPLE REGIONS
  93. how to put command line argument?
  94. how to put command line argument?
  95. text file opening
  96. Reverse engineering
  97. How to invoke toolbar by clicking on button
  98. Show Toolbar
  99. Any know how to use CScrollBar
  100. Win32 Function call from Console App
  101. overload
  102. Standard window font and size
  103. IP Address
  104. //Operations //Implementation //Attributes
  105. MRUs ???
  106. Adding an External Dialog to Resource Files
  107. Winsock2- Server and Client
  108. CEdit & BKColor
  109. Interprocess commmunication
  110. How to kill an thread ?
  111. Error C2491 for dll
  112. Debugging a VC++ ISAPI DLL from VC6
  113. Debugging a VC++ ISAPI DLL from VC6
  114. Hidden dialog
  115. Database Corruption Issues
  116. where is SetTopIndex
  117. General Database/Table Locking
  118. Creating window from within console
  119. Why codeguru don't have category on Winsock ?
  120. Repeating Button
  121. icons
  122. Is there anybody know how to use the API function:AnimateWindow() in VC6 enterprise edition?
  123. refuse connection
  124. CListBox - Horizontal Scroll Bar
  125. Passing THIS pointer
  126. testing
  127. i need BOOKS which cover very good how Threading works!
  128. Writing to registry...?
  129. Problem adding subitem to CListCtrl
  130. MARK and SPACE Parity
  131. System setting File Deletion
  132. Menu bar on an ActiveX control
  133. How to concatenate strings using Transact-SQL?
  134. Debugging a VC++ ISAPI DLL from VC6
  135. Dragg-dropping files problem
  136. Automatic deletion of file
  137. Communication
  138. char array
  139. CTreeCtrl and graying out checkboxes
  140. Exe to Dll
  141. Registry EASY QUESTION!!
  142. Windowless ATL control
  143. Detecting if logged user is administrator
  144. Displaying Bitmaps
  145. callback function
  146. NCB file ...
  147. Thread Synchronization
  148. Color
  149. Send File by Email
  150. Zeros in my date....
  151. If I want my class to receive messages what class I should derive it from ?
  152. Win32 Console App Fails without printf ( )
  153. ATL COM MAPI class sending email
  154. How to add a bitmap to a button
  155. ListView Animation
  156. Rubberband dragging in mfc
  157. Dragging
  158. How to get browse folder dialog
  159. MDI frustrations
  160. MDI or SDI please explain
  161. Save Word Document
  162. Help on using HitTest
  163. Help need on using CRgn
  164. TLB problem
  165. After CFtpConnection::GetFile I cannot delete the file from server
  166. ListView Initialization
  167. Why does API function "SetCommState()" raise an "Access Violation" exception in Win98?
  168. Combo Box
  169. How to forbid text selection in my own webbrowser
  170. ILC_MASK and ILC_COLOR24 in CListCtrl?
  171. combobox
  172. Array Control
  173. About CStatic::SetBitmap
  174. Identify a binary file
  175. Window Message Queue
  176. Bitmap at the Background of Window
  177. Help needed
  178. Property Page Tabs ......
  179. MDI App Title
  180. MDI App Cascade
  181. Color Cursor
  182. Warning BK4503
  183. about voicetalk
  184. Help Me
  185. Message Handler
  186. Control Bitmap
  187. How to shift the viewable window from a DC?
  188. screen copy
  189. Help needed
  190. Strange behavior while setting font in a simple CTreeCtrl.
  191. How to reference to dll in VB ?
  192. how to use ado in COM?
  193. Stack overflow
  194. Getting the x and y coordinate from mouse cusor
  195. Add-in to add GCC compile command
  196. Keyboard Message
  197. How to add customized submenu (Its urgent)
  198. Runtime Menus: HELP!
  199. CDC.Escape(PASSTHROUGH,...)
  200. MS Excel Bug ?
  201. Screen Resolution
  202. Minimizing Application to System tray
  203. Painting in COM-Server's interface - function?
  204. BSTR to CString
  205. CSocket problem
  206. How to Implement a roadmap on a wizard?
  207. Thread code (0xBAADF00D)
  208. DirectInput Dik from an EditControl
  209. Question on DC
  210. Adding Tool Bar in Developer Studio
  211. What is the best way to automate Excel
  212. Strange error
  213. Windows Semaphore
  214. Correction
  215. How can I access a function from a class
  216. diagonal process
  217. play sound in Dos prompt
  218. Find the functions in a lib
  219. Subclass a combobox
  220. Yet another ComboBox Question
  221. CList problems
  222. WSAAccept and WSAConnect
  223. Find Display Resolution
  224. Find Screen Resolution
  225. Programming
  226. Window refresh problem
  227. Replacing the MSVCRT.DLL
  228. Replacing MSVCRT.DLL
  229. How to get the column length of access data with ADO?
  230. transmitting variables by url
  231. Excel Automation
  232. How to protect my software?
  233. Is anyone familiar with the Word Wrapping technique? Please help.
  234. Access Database Filter String?
  235. Set Line Width during display
  236. SetKeyValue and QueryValue in MFC??
  237. How to display fullscreen like ACDSee32?
  238. duration of the system-defined double-click sensitivity
  239. CRecordset::Open problem
  240. Programming
  241. record sound in win32 console
  242. Button problem
  243. How to retrieve local IP address?
  244. Show Toolbar
  245. Simple UPDATE query in Access doesn't work!
  246. inline or not inline
  247. Icon Issues
  248. Bookmark problems in ATL OLEDB Consumer Templates
  249. Cwnd and socket
  250. How can i INITIALIZE a DWORD* ?? (very easy)