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. Button color distress
  2. copy file - simple question
  3. Using an MFC extension dll from a MFC regular dll
  4. Want to know how to generate file
  5. netBios
  6. Document Class and Dialog Windows :: MFC
  7. ISensLogon, System Event Notification Service
  8. Dim the top level menu items: in which .CPP file?
  9. what event was triggered?
  10. LoadLibrary and STDAPI?
  11. Why can't I create CSocket derived socket?
  12. Very Urgent
  13. Dialog Windows Hidden Problem :: MFC
  14. Docking 2 dialogs
  15. OpenPrinter
  16. what's wrong with my capDlgFormat() macro of VFW!!
  17. ICCompress Problem In Win-XP
  18. CWinThread object dump
  19. intellisense and classview
  20. Why the waveInStop API don't return immediately
  21. how to implement a underline of listctrl?
  22. Tooltips problem
  23. How to get the cuurent user name
  24. installshield help needed
  25. what message will be informed???
  26. Communication between two separate programs
  27. VC++ Programming
  28. VC++ Programming
  29. displaying large bmp file
  30. Differ Z from CTRL-Z
  31. Delaunay triangulation and Interpolation..help
  32. Getting the height and width of any chosen sign
  33. Weird crash?!? please help!
  34. Premature termination when using CAsyncSocket and CWinThread...
  35. suggestion
  36. OnSaveDocument formatted
  37. physical drive bus ID
  38. Freehand drawing using GDI+ ...
  39. Web Browser Control
  40. Web Browser Control
  41. Ask about drawing red point in display window.
  42. An OCX Control...
  43. wave out based playback
  44. API to change IP address
  45. 3D Combo
  46. Wm_char
  47. analyzing true type fonts
  48. Writing in a CD
  49. Reporting
  50. ITMediaPlayback interface
  51. TAPI 3.1 good refrence
  52. I need to add to CSliderCtrl scrollbars (like for any screen that has scrollbars)?
  53. Playing MP3 files
  54. FindItem() Run Time error ?
  55. Starting minimized
  56. Time addition
  57. reinterpret_cast vs (type *)
  58. CWaitCursor
  59. Add stock property to ActiveX control
  60. (NTDLL.DLL): 0xC0000005: Access Violation)
  61. Elementary question concerning functions.
  62. disappeared Class from Workspace.
  63. set an extension to a file being saved by MFC application
  64. A question about DirectShow in DirectX 5.0
  65. Splash screen at startup
  66. Need help in removing element in std::map !
  67. User-defined messages
  68. TreeView ListView associating
  69. Enter data with a listbox
  70. Catch email event using CDO in MFC app
  71. Dialog Title
  72. how to convert document into an image
  73. Opening Text Files
  74. Getting Active Windows Present in the Desktop
  75. FindWindow question
  76. VXD controls
  77. ADO, Access, SQL Select statement
  78. Strange behavior in Dialog
  79. CListCtrl - navigate around using keyup/down.
  80. how to add an item to start menu?
  81. TreeView_FirstVisible
  82. Serious problem.. (hacking unknown binary file)
  83. Toolbar initialization in MDI project
  84. CFormView With Tabs: Should I Use CTabCtrl or CPropertySheet
  85. updating SQL using clongbinary or cbytearray
  86. Strange problem - main frame is deactivated when...
  87. Howdo I set BG color for several EditBoxes seperately?
  88. How to run a pg in the other computer
  89. Media Player Control - Size Question?
  90. cWordArray and Commiting Contents to file
  91. how to make an edit box invisible in a dialog box
  92. format string question?
  93. EXE /COB file / function pointer / pointer offsets
  94. Media Player Control - SetSendPlayStateChangeEvents
  95. how to change the background?
  96. Adding animation to a dialogbox: how involved?
  97. Pointer Help!!!!!!!!
  98. Property Sheet~
  99. what's the equivalent of loadicon for text file?
  100. about "CListBox" 's question?
  101. Where can I find guides on VSS?
  102. Register ActiveX while downloading
  103. Deriving protected from CObject subclass
  104. query directory for size and number of files
  105. Please Help, NetWkstaGetInfo
  106. BMP file
  107. How to call a function present in a dll file in C program?
  108. how to get the editlabel of the listctrl?
  109. file exists
  110. start application from within another application?!? howto
  111. Regarding SAPI 5.0
  112. Getting HINSTANCE
  113. Howto Debug ATL-COM plug-in
  114. Click button on dialog box to open window.
  115. RichEdit and Color Selection
  116. large bmp file to display
  117. strange c++ phenomenon??!!!
  118. How to hide CWinApp::m_pMainWnd - handled dialog?
  119. IDispath Wrapper
  120. Error handling problem
  121. quality of vector graphics (.emf)
  122. CMDIChildWnd Create
  123. GetUserName(), I cant get.
  124. Dialing a wave file
  125. COleVariant
  126. Dockable Tree Control?
  127. Controls on a CScrollView and Focus
  128. Is App running in VC-IDE?
  129. MS Layer for Unicode and Win98
  130. Relative paths to source files in PDB
  131. sizeof() always reports even number!
  132. Small Serial Comunication problem
  133. EOF Unicode
  134. Disable Help File Compile
  135. Check MSDN
  136. exiting a long loop with a dialog button
  137. Problem Opening a File
  138. TCHAR, DWORD, and LPTCSTR
  139. Prog doesn't start on other PC's
  140. C++ Macros
  141. Adding stock property prob. not yet solved
  142. ADO threads in win98
  143. how to add elements in a tree?
  144. creating a firewall
  145. MSDN oct02 not found by VC6?!
  146. Please Help me TCP/IP data lost problem
  147. writing one char to CScrollView
  148. Acceleration Needed. Help.
  149. How do I make my toolbar always X x Y buttons?
  150. Dynamic popup menu works perfect in WinXP but not Win98!
  151. Assertion _CrtIsValidHeapPointer(pUserData) in dbgheap.c line 1010
  152. Trace?
  153. 'scanning' a class for its public variables
  154. emf files
  155. oledb connection string for SQL
  156. PEDump.exe cannot detect DOS excutable file(s), why?
  157. uninstall and start menu
  158. Programming Languages
  159. Thumbnail of the Images
  160. internet shortcut
  161. MouseExit() and MouseEnter() in VC++...
  162. install shield problem
  163. restore dialogue window
  164. WM_KEYDOWN and editbox
  165. FileMapping Question
  166. A question about compiling
  167. [RESOLVED] how does a PE file Loader work?
  168. MFC, CreateProcess and ShellExecute problem
  169. TYPE_E_CANTLOADLIBRARY while automating excel XP
  170. Adding Icons to the Left side of Menu Items
  171. CFile::Open doesn't return
  172. Ask about SetPixel, Lineto and Moveto
  173. Transfer dynamic size data by socket
  174. Capture screen for film without bitmaps
  175. Problem of TCP/IP
  176. command line compile with STL
  177. Use the address bar of explorer
  178. Multilingual Interface
  179. dll function with param
  180. IDL dispatch Combobox?
  181. Dialog bar behaves differently in dll
  182. Monitor Thread help needed
  183. Printing Multiple Page
  184. DNS API for Win2000/XP question
  185. MSXML and very large XML documents...
  186. Determining if running native exe or as hosted ActiveX
  187. type casting problem
  188. Saving array onto disk
  189. MSDN: Can use "CAnimateCtrl" in Win95 only?
  190. Static Text
  191. returning strings from a component
  192. send an email with attachment?
  193. How can I implements a tab window dock to any inner side of the window?
  194. How to generate file?
  195. Clipboard using no++
  196. Trace
  197. Can't free memory inside PostMessage()
  198. Window won't display text??
  199. play sound on keyDown
  200. create a CListCtrl
  201. Difference between const char* & char*
  202. Problem of POINTER~~~~
  203. Need help for a beginner
  204. Too Wierd....
  205. Deleting memory allocated to list view items
  206. Need Urgent help
  207. How to access site thought proxy???
  208. Convert double to fraction (a/b)
  209. how can u dial a phone number?
  210. DLL Question
  211. DLL Question
  212. Importing a DLL file
  213. how can i check if the internet connection is ON?
  214. Memory Leak with OpenURL
  215. microsoft chart control 6.0 simple example
  216. MFC app with no file menu bar
  217. Exception Handling
  218. ActiveX control on HTML file ( WEB ... using IIS)....
  219. About net speed
  220. cashable CList
  221. Need to send multiple TIF images as attachment in email
  222. How can I write an ini file in an app's root directory?
  223. TEXT Control.(Like in PAINT application)!
  224. Getting CLSID of a Built-in ActiveX Control...
  225. Book
  226. connecting to net
  227. load jpweg in view
  228. entry in scheduler through install shield?
  229. resetting the device context object
  230. CryptEncrypt
  231. Exporting an exception derived class in a DLL
  232. Services: Disable change of startup type
  233. How to find the parent directory of any directory?
  234. ISAPI Filter:How to hide/modify the response header
  235. DrawDIBDraw
  236. Serial Communication
  237. How can i change the active pane of my explorer like splitted app ?
  238. Struggling with ScrollWindow ...
  239. CStatic control with smoothed (anti aliased) font
  240. Modem Connection
  241. Window elements and text of third party windows
  242. How to display output of DOS-Programm in my window?
  243. Newbie vs. Edit Control
  244. ActiveX/OLE Container..
  245. socket problem?
  246. Getting E_ACCESSDENIED error
  247. Db grid control problem
  248. Problems in paint of Status bar
  249. CriticalSection w/ forced unlock question
  250. wincrypt: help enumerating certificates!!