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. How to load custom menu in Masked edit control?
  2. Simulate Ctrl+F Programatically
  3. Socket error:10061 Connection refused
  4. Opening Popup Window
  5. IActiveDesktop
  6. Open ports
  7. error code 995 from WriteFile()
  8. ntdll.dll
  9. MFC class in DCOM server
  10. NTDLL.dll
  11. FindNextPrinterChangeNotification()
  12. How can i store values in a combo
  13. how can i add my custom menu on Dev Studio?
  14. Compacting DB with password
  15. Thread Ends -> Close dialog
  16. Opening more than 509 files using VC++ 6.0 SP5
  17. Dos/Windows directory names
  18. Future of VC++ programmers compared to C programmers on Unix
  19. Farsi strings problem !!!
  20. ActiveX and IE cache
  21. Drag and Drop
  22. Dynamic creation of controls
  23. Memory leaks and boundschecker
  24. Creating "self extractors"
  25. Getting the focused state of an item in CListCtrl
  26. CListBox Assertion Error
  27. How do I get the path name of an application
  28. FARPROC Problem
  29. Portable C++ classes and VB
  30. What's wrong with LVN_HOTTRACK notify handling.
  31. how do i split window in SDK
  32. For Xeon and all programming
  33. Linking Errors Please HELP!!!!!!!
  34. ON_UPDATE_COMMAND_UI map
  35. CryptAcquireCertificatePrivateKey problem.
  36. Program entry point
  37. Program entry point - again
  38. printing
  39. Shared folder
  40. How to trigger OnPaint
  41. infared sence
  42. software protection
  43. Help with compling errors please
  44. Drawing and Erasing a transparent bitmap?
  45. ADO - DAO
  46. Reading a text file in C++
  47. Database and VC++
  48. Convert int to a string?
  49. dll can self-register on WINNT4.0 but not on WIN2000
  50. Security Device
  51. How do I release memory used by a COM object?
  52. Problem using GetDiskFreeSpaceEx
  53. When I Run VC++ I Get Error - "Unable to load DEVRES" what causes this??
  54. Clicking in the list ctrl in dialog
  55. File Manipulation
  56. Problem with list control that MUST be solved!
  57. Creating thread in component
  58. Thread problem
  59. keyboard message in dialog based app
  60. fonts in CListCtrl & CEditBox
  61. Avoid access of other processes to the specified folder
  62. How to add icons in list box in SDK
  63. Problem with RichEdit control
  64. control dilog object through Thread?
  65. Spin Control Increment
  66. LineTo() is EVIL!
  67. Marshalling Error.
  68. IE SaveAs dialog - which class for the buttons ont the right
  69. Working with menus
  70. Combo box
  71. How to change CPropertySheet styles
  72. ADO AddNew with autovalue-fields ?
  73. File reading?
  74. TAPI
  75. Sort in ComboBox
  76. How to generate ID's ?
  77. automatic allocation?
  78. Windows Messages
  79. Create .mdb with ADO
  80. COleServerItem drawing?
  81. Task Manager like list of apps
  82. LRESULT CALLBACK functions possible in classes?
  83. problem with fonts in dlg...
  84. Can an app's message queue fill up?
  85. Hey, what's database schema by the way?
  86. Declaring classes with hungarian
  87. Group box with check box
  88. IOCTL's
  89. IOCTL's
  90. Not a question - ADO: Seek with multiple key values
  91. Not a question - ADO: Seek with multiple key values
  92. Character code of a character
  93. Splitter views
  94. SDI Multi Frame
  95. CoInitialize
  96. Win98 equivelant of Task Manager?
  97. All Filename in a Directory (win32)
  98. CListCtrl
  99. working path
  100. ActiveX ListViewCtrl ImageList
  101. MAPI :Moving email from inbox to another folder
  102. To add another Help link to VS menu
  103. How to obtain a client IP Address???
  104. Socket
  105. Graphics-OpenGL Display of Images
  106. modem
  107. can extend brush size?
  108. Closing a Browser Window
  109. How to Delete all temporary files of IE?
  110. Using an exported class
  111. Different views in dynamic splitter
  112. abt number of tabs in a tab control
  113. getting index names using ADO.... Please help me out...
  114. Zooming in MDI
  115. CString - How can I copy strings.
  116. How can my app receive notification when a new page url is visited from IE?
  117. Adding to System Tray
  118. How to prevent system's right click menu in Masked edit control?
  119. New Telephony service provider TSP (TAPI)
  120. use edit box
  121. function callling by function pointer
  122. File reading?
  123. Again: Flickering
  124. Excel Automation
  125. Word Automation: Iterated through the Acitvex in a Doc
  126. Convert Time in String datatype to time_t datatype
  127. Listbox
  128. Mousepointer
  129. ShellExecute in COM
  130. FindWindow in service
  131. Top Wnd From COM
  132. How to send messages to controls in Internet Explorer
  133. Multicasting supported in Winsock2 ?
  134. Need an ATL/COM guru, please.
  135. Desktop Icon
  136. Task Manager
  137. ActiveX for IE: selfprinting
  138. Help ! Excel Automation
  139. PreTranslateMessage does not work in a Modeless Dialog
  140. How to implement "?" (CONTEXT HELP) in property sheets
  141. Multimedia.....Pls. Help
  142. abt TCITEM str
  143. Howto Link a Static Library
  144. Open .dbf with ADO
  145. CFileDialog & shortcut
  146. Property sheet
  147. Automation in word
  148. SlideShow Desktop 1.3 has been released! A shareware Jedi gives his thanx.
  149. Porting to Unix
  150. Passing an array into COM method - How
  151. embedded visual C++
  152. Selection.InlineShapes.AddOLEObject
  153. problem with property sheets
  154. Buttons in group
  155. Repainting outside client window
  156. Edit String Resource in Dll?
  157. reply if u know the means in it!
  158. Build output
  159. MessageBox
  160. Week of Year
  161. Debug vs. Release
  162. exporting VC.NET project to VC6.0
  163. How can I make a menu item only be highlighted if a view window is opened? in an MDI doc/view app..
  164. If fie is not found while using ShellExecute() ??
  165. checking if a control is currently visible !!!???
  166. is there a handler that gets called when you switch between view windows?
  167. ToolBar with Bitmap
  168. How to Use Timers in COnsole Applications
  169. how can I programmatically click the next button on yahoo?
  170. Loading Animated Icons(.ani files)
  171. Loading Animated Icons(.ani files)
  172. my own CFileDialog
  173. Code for Ctr-C event
  174. Help me! About CFtpFileFind Question!
  175. Copy array to antoher array
  176. what handler gets called when a view window closes?
  177. How I can change the color of the caption bar?
  178. How to add strings with associated icons in list box in SDK not in MFC
  179. Memory handling with COM/ASP
  180. Memory management in COM/ASP applications
  181. MFC Extension dll linking
  182. Win32 Dialog Questions
  183. Memory management in COM/ASP
  184. TCP/IP connections through proxy
  185. Exporting to Excel
  186. Moving DCs
  187. CFile Question
  188. ComboBox Text Color
  189. vector
  190. killing dllhost
  191. CListCtrl
  192. Ms Word, Automation and loading ActiveX
  193. HELP with Database
  194. OnConnect in CAsyncSocket based clasess
  195. List Selection
  196. RasDial
  197. Use MFC to develop printer Port Monitor
  198. dll without header
  199. Html View In a List View on a Dialog
  200. How to create a Language Dictionary
  201. how can I trim trailing whitespace off a std::string ?
  202. How to make icon text background transparent
  203. How to make tray icon reappear after Explorer crashes?
  204. copy file
  205. Copying Files
  206. thread and modeless
  207. How to draw a "unsharp" line
  208. hey! Di ma myanmar shi la???
  209. Streaming a resource in an .exe out to a file????
  210. CListView-->proper use question
  211. Problems creating custom control
  212. SQL Query
  213. ConfigDSN library file
  214. Help link on VS menu
  215. fatal error C1189: #Fehler : The DAOSDK 3.5 libraries will not operate correctly if built with MFC
  216. How to get unicode characters from CRichEditCtrl ?
  217. getting reverse find to work w/FindText
  218. mshtml always reformats source??
  219. CListBox
  220. How do I biuld
  221. GetTextExtent() not consistant.
  222. VB Form Object from windows handle?!!!
  223. A very simple question
  224. Get Remote Time - 'Net time' command
  225. Refreshing a window....
  226. Device Context Confusion
  227. fputc() help
  228. Simple CStdioFile question
  229. Help! Convert a string to integer
  230. Tool to find resource information
  231. File Extension Check and Name
  232. Maximizing a Dialog Box
  233. Passed parameter to CreateThread()
  234. UPDATE_COMMAND_UI does not work!
  235. IPicture doesn't display WinXP icons properly
  236. IPicture problem to display WinXP true color icons
  237. Custom OnDraw for CHTMLView
  238. IPicture doesn't display WinXP icons properly
  239. Localization
  240. Problem with GetDlgItem
  241. splitWindow time,the error what?
  242. edit box in dialog bar
  243. i think construct a CSortStringArray from CStringArray,click NewClass time base class CStringArray n
  244. Multi-tasking?
  245. How to initialize my scroll bar?
  246. How to do?
  247. Thread Problem
  248. Accessing menu its to grey them?
  249. Display Windows NT Select User dialog
  250. Multiple Selection in CTreeCtrl