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 modify standard path of open/save-Dialogue
  2. a service problem,sos!
  3. service problem
  4. a question about execute a procedure which take a long time
  5. function2(int* i) and void function1(int& i) ?
  6. Applications with Outlook98 style
  7. WebBrowser control doesn't work in dialog
  8. Getting HTTP queries from IE
  9. Hide Export DLL methods
  10. Mouse pointer in edit field
  11. Reusing Microsoft's HTA applets
  12. multiple views in sdi
  13. sort function for other language
  14. fwrite keeps breaking..is something wrong with params??
  15. SelectionStart/SelectionEnd and MediaPlayer ...
  16. multiple threads in com application
  17. dynamically adding items in the existing menu in an sdi application
  18. dynamically add items in the existing menu in an sdi application
  19. multiple views in an sdi application
  20. Drop down meni in VC++ 6.0 Editor
  21. Multi language support
  22. Multi language support
  23. How to create second CSplitterWnd in Main Frame
  24. icon in status bar
  25. can some one help me
  26. CDROM-DVD name
  27. where can i gather sample of control points?
  28. Resolving TCP/IP address, winsock
  29. Create a new message in the Outlook Express
  30. install stlport for VC++
  31. Function pointers
  32. Performance Counter
  33. Wininet / InternetConnect Problem
  34. _AFX_EDIT_STATE unresolved under Release VC7 MFC7 build
  35. Sinus Sound Programming
  36. Managing a MFC application
  37. Why would pDC->SelectObject fail?
  38. Default Window Background Color
  39. Question regarding structure size mismatch
  40. DCOM
  41. Automation/Collection question
  42. IntelliSense ??
  43. Outlook 97 Automation
  44. Could not allocate space for object .. 'PRIMARY' filegroup is full??
  45. How to show 2 CListCtrl in on CControlBar
  46. Help with struct ponters
  47. How to open a default document in an MDI application
  48. Does any body has any idea about scrolling of an OpenGL window?
  49. Making a Button in a dialog an "Apply" Button?
  50. Port of core algorithm => VC++
  51. memcpy my ***!!! you have GOT to be kidding...no function for this???
  52. arg, MCIWNDM_NOTIFYMODE norification messages received too slowly
  53. How to pass data back as BSTR type from C++ COM to VB client URGENT!!!
  54. SOCKET Pramming
  55. double pointer
  56. Dialog with a bitmap
  57. CRectTracker Problem.
  58. error C2227: left of '->setText' must point to class/struct/union
  59. error C2227: left of '->setText' must point to class/struct/union
  60. Releasing Memory for a Variant
  61. getting groups/users on 9x?
  62. Deconstructor
  63. CListCtrl with one column
  64. Operator
  65. no overloaded function takes 2 parameters
  66. Error C 2664
  67. Error C 2664
  68. Creating a user and giving them Administrator rights
  69. Printing problem
  70. Mysterious RTF text can not be removed?
  71. If statements and function calls
  72. How to create impressed toolbar button?
  73. Error compiling!
  74. How to QuERy a database??
  75. How to pass a value back thru function
  76. How can I lock a file?
  77. Handling CStrings??
  78. Custom Context Menu
  79. web browser control
  80. Diagnostics
  81. LoadImage Vs CreateDIBitmap
  82. How can i add MFC support to my ATL control?
  83. How can i add MFC support to my ATL control?
  84. How can I display real update data in List Control?
  85. How can i add MFC support to my ATL control?
  86. How can i add MFC support to my ATL control?
  87. how to make EXE file for MFC
  88. Adding a control to a SDI MFC AppWizard program
  89. asm code in c++
  90. how to add status bar to Dialog based application
  91. polymorphism and deep copy
  92. ListBox at runtime on CEditView
  93. How can i access ports directly
  94. How to send user-define message to application (AppWizard)?
  95. something wrong? about object pointer?
  96. image attributes
  97. bitmap brightness
  98. bytes and bits
  99. Running JScript from MFC
  100. Brightness and Contrast Operations on Bitmap Image
  101. bitmap position
  102. C++ Keyword Search
  103. Getting List of file in Directory
  104. waveOutProc makes my program hang, why?
  105. HTMLView
  106. Scrollbar
  107. Desktop Capture
  108. error C2011!!! type redifinition
  109. I accidently password protected a word 8.0 document and now i dont remember the password
  110. Multi-Color in List Box
  111. Detect image device on PC..
  112. Reducing Flicker?
  113. Transparancy
  114. malloc problem
  115. Rezie mainframe window to desktop size
  116. detecting if a program is already running
  117. Windows redraw
  118. Filtering Databases(PLEASE HELP!!)
  119. C++ Builder 6
  120. Creating an object from a binary array.
  121. Telnet Class
  122. testing
  123. SSH through MFC
  124. MFC input
  125. setting header of CListCtrl
  126. DIB Bytes
  127. How to zoom currently displayed pic in MCIWnd
  128. You can help!
  129. function question
  130. dll file
  131. Detecting WM_CLOSE for another applications windows
  132. On Button Click
  133. testing and eliminating
  134. simple: function expects file pointer, but I want a memory stream
  135. A Question about IE
  136. File Reading
  137. TreeView
  138. MIME
  139. Extracting attachments or mail information microsoft outlook
  140. How can I specify a proxy-server for each Webbrowser control
  141. why this doesn't work???
  142. Getting the CEdit Object of the Visual Studio
  143. error C2011: type redefinition
  144. Regsvr32 - Registration problem
  145. Need to convert Integer into four Bytes (char)
  146. Socket problem
  147. Listbox on CEditView (Important)
  148. Prevent flashing when maximizing
  149. Always maximized children
  150. Running Console Applications With MFC
  151. dynamically created controls' event handler
  152. How I can get the pointer of jpeg???
  153. A thread question!
  154. Removing Box Around Slider Control?
  155. Trouble creating toolbar with custom bitmaps
  156. Setting the cursor
  157. Docking Windows in Win32 SDK
  158. Grab Text ?
  159. Time Trial?
  160. Running Console Programs from MFC
  161. Running a console program from MFC
  162. Playing a .wav
  163. calendar control 8.0
  164. Gray String
  165. Toolbar flashing
  166. Add & Append
  167. Converting CString
  168. USB device description
  169. About Timer
  170. CPropertySheet AND EnableStackedTabs(FALSE)
  171. PlaySound()
  172. CSpinButtonCtrl
  173. Modeless Message box??
  174. Dialog types available in resource editor
  175. Storing "Document" in a Access DB
  176. CStringArray::Add and Append
  177. networking
  178. CComboBox derived class not displaying initial value
  179. Using Ctrl keys to move selection in CListCtrl
  180. Selection color in CRichEditCtrl
  181. FoxPro database generate Excreption in Recordset:snapshot & Recordset:dynaset. Why?
  182. terminating an application from a dialog
  183. insert menu item
  184. Change Font of AfxMessageBox
  185. MFC accessing between classes
  186. copy home dir
  187. Display Function
  188. Create CListBox & CDialog with modal style
  189. Array
  190. How check the msaage status?
  191. Array
  192. can any one help me
  193. Win32 Dll want to use MFC
  194. RS232 Communication thru MSCOMM
  195. adding toolbar (urgent!!)
  196. Bitmap on Button
  197. Need help!Pls.....
  198. About Inserting ATL
  199. combo box, font size, win32
  200. About naming rule
  201. Is there any example of directly accessing I/O with dll?
  202. Is this a .net bug?
  203. int to CString (look simple but...)
  204. IPicture Problems
  205. API intercept:how i should do?
  206. Problem with initializing a CRecordView object
  207. how to do this!!!
  208. How to avoid memory leak ?
  209. adding a toolbar to a dialog
  210. Hide Caret in CRichEdit
  211. Image in the Tree Control
  212. a question about cwebbrowser control
  213. How to send HTML mail with default email client ?
  214. ATL COM deploy
  215. ActiveX Browser & LoadLibrary
  216. Using c files in a VS 6.0 project
  217. MSXML4.0 DOM whitespace problem (pElement->text)
  218. How to get name of ID Menu Item in string?
  219. a mathematical question
  220. how to drag files
  221. CMSWinsockControl
  222. Undeclared identifier
  223. HTTP Authentication
  224. Sniffer
  225. Problems by converting dll call to Vc++
  226. COM Object deployment -> TLB needed ?
  227. Structured data
  228. Screen saver in C++
  229. stl min max of objects in vector
  230. System icon corruption
  231. How to create bitmaps for toolbar buttons?
  232. object limit in dialog box
  233. Get String from Runtime created ListBox
  234. Memory allocation
  235. multithreading synchronization+loop?urgent!!!
  236. How to check the name and size on the server
  237. Check file name and size on the server
  238. how to know threads end?
  239. Help with CopyFile();
  240. toolbar help
  241. How to ... change a description string in a VENDORS OCX?
  242. Unique number help?
  243. Exception handling to report line number?
  244. DirectShow filter
  245. Saving palette
  246. printing
  247. how to Maximize control ?
  248. Caret
  249. how using WaitForMultipleObjects?++++
  250. Linking