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. Need to load a .WAV file into memory !
  2. Protect log file from being editted.....
  3. sorting ctreectrl
  4. Maintaining the selection mark in CListCtrl
  5. BLOB Data
  6. Referencing CDocument
  7. How to Set Font in Dialog Box
  8. How do I display a windows content in another window? (Sorry if double post)
  9. Save and Upload a file to the server in the background
  10. Accessing Outlook from c++
  11. TFTP Code?
  12. carriage return in an edit
  13. Please help with AddPrinterConnection
  14. Error compiling COM+
  15. Perplexing Program hang - Urgent
  16. Sending/Receiveding Data on LPT port
  17. Simple Graphics
  18. Changing IP address programally
  19. OnDestroy in application
  20. Crystal Reports Run From C++
  21. Urgent help needed with COM question
  22. NM_CUSTOMDRAW and CListCtrl
  23. NM_CUSTOMDRAW and CListCtrl
  24. Exception on Windows 2000 Advance Server
  25. Power Meter
  26. List of databases in an SQL Server (programatically)
  27. dialog
  28. 16-bit colour
  29. Visual C++ Add ins
  30. ClientRect issue
  31. easy Algorithm?
  32. COM
  33. About Virus
  34. Getting File Name from systray?
  35. memory leak in rational purify
  36. Showing Properties (updated)
  37. Type Casting a DWORD to a string
  38. Please HELP with com server
  39. TreeCtrl - GetSelectedItem()
  40. Release Builds, DLLs, and Windows Versions
  41. Error when registering DLL
  42. The parameters list question
  43. Help With FindWindow
  44. CEdit Border
  45. Looking for HTML parser for finding links in an HTML file!
  46. Create YESNO column in Access
  47. USB access
  48. What's your favorite font ?
  49. pointer Tiff
  50. How can I remove parameter "CWnd* pParentWnd" from my Class.
  51. html to text
  52. html to text
  53. window messages
  54. MAPI - Send mail automatically
  55. RAS Hangup
  56. Serialize Problem
  57. DeleteFile
  58. Couldn't launch the server
  59. Default variable initialization.
  60. Windows API data types + LPCBYTE
  61. How can I dock a Dialog to any side of the desktop ? (like winamp)
  62. unexpected end of file while looking for precompiled header directive
  63. FindResource returns NULL
  64. Making a no-border window
  65. Xeon in Danches' Valley #1 : The Girl with the RichEdit Blaster
  66. Attaching a Class to a control.
  67. Socket buffer size
  68. Cut, delete on IWebBrowserControl
  69. MemDC cannot use MM_HIENGLISH?
  70. COM and File I/O
  71. Like a osk.exe(onscreenkeyboard in Windows 2000)
  72. Reading system info...
  73. View CArray<...> in Debug window
  74. XML download and read.
  75. Accept and Split String Pleaseee Help
  76. what is the pop and smtp host name of hotmail and yahoo
  77. what is the pop and smtp host name of hotmail and yahoo?
  78. Is it possible to have Windows send a notification when file attributes or location etc is changed?
  79. Constructing object arrays
  80. Windows Dialogs
  81. Help Needed again with FindWindow... plz!
  82. placing .max files in dialog picture box
  83. Optimize COM+ performance
  84. BKcolor
  85. Version Independence
  86. Win NT graceful closure of sockets can't be achieved...
  87. Paint-like program
  88. sorting, callback mycompre
  89. Key Handler - WM_KEYUP
  90. disable taskbar
  91. Help "FindNextPrinterChangeNotification()"
  92. Can you recommend articles or books for VB/Java programmers learning Visual C++?
  93. How can I get data from CMyView inherited from CFormView
  94. Bond Formula - sorry if wrong forum
  95. Sockets
  96. Looking for some Recourses on Hooks
  97. Correct way of learning VC++
  98. Dynamically sizing a resizable dialog
  99. What's next? (books)
  100. How does the keyboard stream work?
  101. Setting Window Color to Desktop Color
  102. Setting Window Color to Desktop Color
  103. MDI Doc/View defaults
  104. programmiticall putting static text on screen?? Please, any response.
  105. CSplitterWnd
  106. DataBase VFoxPro6.0
  107. CSplitter SetFocus to a Ctrl in a pane
  108. Unicode resource file?
  109. asterixes
  110. Asterixes again...
  111. getting a multidimensional array pointer
  112. adding a bitmap to dialogbar buttons
  113. Server/Client MFC CSocket question on multiple users
  114. WaitForSingleObject
  115. how to get the whole URLs from the file (the internet shortcuts) in "c:\windows\history"
  116. having more than one pointer look at one field in DB
  117. Easy sizing question
  118. How to hide status bar?
  119. Serious focus problem with the rich edit control : IronMan's MagnaCannon Now!
  120. how to return one class with one dynamic array to the caller
  121. addnew records to database thro datagrid
  122. programmatically login
  123. How to find out (runtime) the directory from that my program was started?
  124. regarding document view
  125. Using CPropertyPage as CDialog
  126. regarding document view
  127. Loading Multiple .rc files?
  128. How to get remote computer's share information?
  129. [WinAPI] MP3 Decoder
  130. single MFC methods in nonMFC project
  131. MP3
  132. NT Service and ODBC
  133. How can I display a web page from a CString object containing the source code written in plain text?
  134. Fetching the environment PATH
  135. sorting folder and files, ctreectrl, help please
  136. Urgent help need regarding illegal operation involving MFC42D.dll and MSVCRTD.dll
  137. Displaying Windows Shutdown Menu (win98)
  138. Displaying Windows Shutdown Menu (win98)
  139. Problem with CTreeCtrl in Win2000
  140. How can i stop Windows XP from protecting system32 folder. I want to do this manually, not programa
  141. Blamking out the desktop
  142. viewing a field more than once in a dialog
  143. Availability of mfc42.dll
  144. loop in Combobox drop-down
  145. Re-drawing Controls
  146. How can I pass a dialog box variable to another class?
  147. MFC control
  148. Queing
  149. C++ source code
  150. Conversion from string to hexa
  151. Any help. Thanks
  152. Dialog and message loop
  153. Sharing resources between projects in Visual Studio ?
  154. A prolific question asker writes ...
  155. CDaoDatabase and the MFC DLLs
  156. Problem with uploading file -- using PutFile(..)
  157. Dynamic Controls
  158. How to rename a file?
  159. InstallShield
  160. advanced iexplore control stuff
  161. How can I play 2 sounds at the same time?
  162. Problem with CAsyncSocket::OnReceive()
  163. How hide caret of CRichEditView???
  164. Color Blending Without Loss of texture
  165. OT: How long you all been programming MFC?
  166. library files in gina
  167. Dialog/Beginner (rate for sure)
  168. Sniffer / Firewall Development in C++
  169. A question about StretchBlt()?
  170. Returning array of structures
  171. Database
  172. How do I email from my application?
  173. CString defined in CDocument-derived class cause crash
  174. Text in windows
  175. CFormView like Dialog based app
  176. How to append new field into recordset
  177. going nuts
  178. input
  179. What kind of Brain do you need to be programmer ?
  180. Urgent
  181. Reading Value from Memory
  182. How to manually assign Language in RC file
  183. socket programming
  184. Tray Icon Question?
  185. DeskTop as Application Window
  186. using both __stdcall and __declspec(dllexport)
  187. related to window exe image
  188. Using SendInput(..) fails
  189. Setting and Getting Text for controls - making them work and look normal
  190. Dialog box in eVC++
  191. Dialog box in eVC++
  192. CFile
  193. How to authenticate the use of a application with Window NT Logon dialog
  194. MultiByteToWideChar
  195. How to open a file with the associated program?
  196. Button radio above PushButton
  197. How to get a modeless dialog acting like a modal one?
  198. Print a Bitmap from the Resources
  199. how can I transfers binary data asynchronously!
  200. Question to char buffer[100][15]
  201. regarding document view architecture
  202. regarding null pointer exception
  203. what is wrong with my code
  204. CFormView
  205. HELPME How can I create a barcode on a Crystal Report report
  206. Set icon from .ico files
  207. IE Programming
  208. storing an object in a pointer-Please help
  209. How to get what's beneath an ActiveX?
  210. How could i keep dx window and show my dialog without going back desktop
  211. Why malloc fails?
  212. converting japanese multibyte string to unicode
  213. why don't rc mc cl compiler run under win2000?
  214. MSFlexGrid control
  215. CopyFile problem !
  216. Help me to get improved.
  217. Can't build again
  218. Networking
  219. File Mapping
  220. Adding a library
  221. Displaying Bitmaps
  222. NT Authentication
  223. Installing/deleting printers in Windows 98 programmatically!
  224. Active Doc for CE
  225. Detect Mouse During Resize?
  226. Problem of OpenGL in MFC MDI
  227. Displaying ascii value
  228. Overlapped custom controls returning incorrect Control ID
  229. C++ Guru
  230. DCOMcnfg
  231. GetFileTitle still returns extension !?!?
  232. Add MFC support to Win32 Dll
  233. C Calling C++
  234. MCSD Tutorial
  235. Help Reqd for getting printer Info
  236. IP Telephony G.723
  237. CListCtrl and CheckBox
  238. Help on loading .gif file
  239. Detect all errors in a control
  240. Array chars to int
  241. Creating a temporary file
  242. API CAll
  243. Getting filenames from dir
  244. Easy One: Web Page Link
  245. CRichEditView and Splitter
  246. BHO and dispinterface
  247. Problem with read
  248. How to manipulate the radio button??
  249. Menu Bar Size
  250. MFC question reprise