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. static chars into ressource
  2. Event Firing in ATL
  3. Config network settings API
  4. Setting a value with IPAddress
  5. Need some help with Class problem
  6. #ifdef's and resource.h
  7. Grid Background in SDI APP MFC...?
  8. Radio buttons, Grouping and Adding to an existing group
  9. Dropdown listbox
  10. Active Window
  11. Autoskiping entry fields
  12. Imaging for Windows
  13. Dim Text on Status Bar
  14. nmake caused error of non-existing dll
  15. Help!!!
  16. Program leaves open process - why/how ?
  17. Urgent!! How to create temp table
  18. pointers
  19. Scroll bar in ListBox
  20. Capture Desktop to GIF/JPG/BMP
  21. 2 frames in 1 appl
  22. Memory Allocation in windows
  23. Pleeeeasse help me here
  24. Limit on Macros in ATL Class??
  25. Image Files Loading
  26. How can i draw forms with gradient colours
  27. Urgent - help with Audio Playback!!
  28. About Dialog Bar
  29. Stretch a Bitmap
  30. bitmap pallete index
  31. Application starts but after some time error says NT service could not start?
  32. Learing ActiveX com
  33. Please help! Graphic problem
  34. methods other than cookies to track sessions -help me
  35. Logging into Mailcity from an application
  36. How to implement "Send to" functionality ?
  37. COM DLL Registration, Urgent!!!!!****
  38. VC++ Resource Problem
  39. MFC Extension DLL problem
  40. CTree instead of CList in ComboBox, please help
  41. Active X calendar problem
  42. "Connect As..." Dialog
  43. spin control upside down!
  44. How do I play a wave file continuosly using sndPlaySound or somethig else?
  45. Win32 SDk URGENT!!!!!!
  46. URGENT !! pointers and references
  47. Tab COntrol background colour
  48. Programming hardware interrupts on MS Visual C++
  49. CFormView
  50. How to run program in other machine?
  51. Beginner Question
  52. Asyncronous Pluggable Protocol
  53. CString to char[] ?
  54. Deletion of local variables
  55. How make pause?
  56. Browser Object Size
  57. coordinate system
  58. "File created" callback
  59. How Export the program to the other computer?
  60. audio mixing
  61. how to use progress bars?
  62. Sending Fax through VC++ application
  63. COMMTIMEOUTS
  64. Timer (countdown)?
  65. Dynamic ActiveX object creation
  66. Convert 16,24,32bpp to 256 color
  67. CEditView
  68. UI
  69. single insteance of exe
  70. HELP! How to destroy a PopUp menu!?
  71. Javadoc equivalent in VC++
  72. Basic question: How to use MSFlexGrid in my project?
  73. Accessing C++ classes from VB
  74. New to Visual C++ - Need Tips for Starter
  75. PLEASE HELP! RichEdit Control - How to capture a "NM_KILLFOCUS" message???????
  76. How do I set Content-Type to 'application/rtf' using MapiMessage?
  77. remote user
  78. direct printing
  79. win2000 - CFileDialog crash??
  80. COM problem...child in COM DLL
  81. The compilations errors
  82. CMapStringToString
  83. How to use LogonUser
  84. sel.always not works
  85. I've got a problem with this directx code please help!
  86. Send Voicedata
  87. Virtual memory
  88. Problems printing DIB
  89. Selecting a propertypage
  90. HELP with CScrollView mouse click coordinates !!!
  91. Multiple TrayIcons
  92. Read from keyboard
  93. FileFinder? Urgent!!
  94. com
  95. Dissapearing graphics
  96. Weirdest code I've seen (ever)
  97. copy files from here to there?
  98. How to check if process is responding
  99. HELP PLEASE:: launch program
  100. Font memory Leak
  101. Telephony
  102. How to diable BACK button in Propertysheet wizard?
  103. Resize a object form it's container
  104. Determining Geographic Location from IP
  105. Change size of in-place scrollbars
  106. MS VC++ Dialog
  107. How to import class from a DLL
  108. Hold that Dialog
  109. Non-task bar Popup controls
  110. CFile::Rename
  111. Dialog Box closes on Enter
  112. Win 98 and Win 200
  113. CommandLineToArgvA?
  114. Keyboard key: make 'enter' do something else
  115. FindWindow and child dialog
  116. How to simply BOLD CEdit?
  117. copying a database
  118. Data from a client to a ISP server with MFC?
  119. Urgent - ReadProcessMemory
  120. urgent - interact with NT
  121. strncpy
  122. How to make selected tab bold or a different color?
  123. PROFILING IN VC++???
  124. HELP PLEASE: How to resize an object that is inside a container?
  125. trouble with file i/o
  126. How do you disable the close [X] Button
  127. unresolved external symbol ConvertStringToBSTR
  128. Combo box or list box dealing with a text box
  129. DeferWindowPos
  130. OpenGL Pan & Rotate Help
  131. Dialogbar Message Mapping
  132. EditBox problem displaying numbers
  133. Ado & foxpro
  134. CMapStringtoString Help Need Quick!!
  135. find where memory leak occured
  136. Download a powerful OLEDB module
  137. How can i check whether Network drive exists or not?
  138. char* stuff
  139. LoadString in a non-MFC DLL
  140. RGB from bitmap index
  141. Parent and Child
  142. Fairly complex question (to me anyway) about program structure.
  143. How do you make sure a message loop actually exists?
  144. EXITING FROM THREAD???
  145. ATL OLE DB oject
  146. CDaoRecordset and SQL-Statement
  147. newline character
  148. Different views on a single document
  149. dll in vc60
  150. Updating all views in an SDI app
  151. Help! -- Custom Event Handler
  152. Splitters Generation Problem
  153. ADO Data Bound Dialog Wizard
  154. About windows with skin...
  155. CStrings
  156. Sound with DX7
  157. Sound with DirectX7
  158. Update ComboBox
  159. is there a no-sort option for STL map?
  160. WM_SIZE / SetWindowPos
  161. Hard Disk
  162. No flicker
  163. How BMP to GIF conversion in C++?
  164. Receving input from keyboard inside COM object
  165. Outlook/Exchange APIs
  166. How to create a hyperlink in WIN 32 SDK without using ACTIVEX controls
  167. Hi Please i'm real new to DirectDraw and Direct3d could someone give me simple code
  168. invalid value - hamper the user !
  169. TimeOut on Receive() of CSocket
  170. How To get BLOB Data from database by ADO with VC
  171. Could anyone tell me how ScrollBar works?
  172. pop-up window
  173. Drawing with this code! Urgent Please help!
  174. Help with selecting focus on split wondows.
  175. How do i force a timer ??
  176. Getting and Setting register variables problem
  177. current user
  178. print without class view
  179. Please Urgnt problem with this code! Thanks
  180. Please Help!!!!
  181. DBGrid AxriveX controls
  182. How to Show CRecordView?
  183. Windows Toolbar
  184. List Control
  185. On Top!
  186. Can anyone explain this??
  187. How can i detect right mouse click ??
  188. MFC and AppWizard and WinSock2
  189. How do I find the Desktop menu class name ?
  190. Sorting a text file
  191. Scroll bar on CDialogBar
  192. Inserting a Hyperlink into a CRichEdit
  193. How can I detect changes in a directory and its subtree (Added, Removed files and directories)?
  194. Event Handler Implementation - Help!
  195. CString question
  196. Using msgbox in DX
  197. Shareware. Check user ID with my server whenever user using my software.
  198. Static Member Functions
  199. Any Class to compress a disk file and decompress it
  200. Can I use a single port for Chating & file transfer at the same time ?
  201. Kill Focus in RichTextBox
  202. Static class?
  203. visitor pattern
  204. how to use CreateDirectory? (plz help!)
  205. DrawText problem when changing colors
  206. looking for geometrical algorithms site
  207. Determining position of control within window
  208. Why WSAStartup/winsock2.h/ws2_32.lib not working in Windows95?
  209. Inserting multiple records in a recordset
  210. Problems with Threads, Messages and Views...
  211. Develop my own ActiveX based in my own derived class in a simple MFC EXE project...
  212. SendMessage Exception?
  213. How to create Line Object?
  214. Creating a simple server/client app..
  215. File I/O Opeation
  216. Assert error
  217. Automation of a client application from a remote server
  218. Console Question
  219. Access 2000
  220. Send to URL within program....??
  221. Simple Question
  222. How to pass a IPictureDisp pointer from Out-Process server to consumer?
  223. Spy++ code?
  224. Please read and respond
  225. vc++,listview
  226. vc++,editview
  227. How do I create a dialog that has an icon in the taskbar???
  228. AppWizard and WinSock2
  229. tool bar
  230. system idle time
  231. pop-up window help
  232. Whats the best way to keep a gaming high score list on the internet
  233. CEditView Control
  234. CControlBar
  235. Equivalent of MFC's CMemFile
  236. drop down list
  237. Toolbar problem
  238. ADO at runtime
  239. Use proxy connection with CInternetSession::OpenURL ?
  240. Use proxy connection with CInternetSession::OpenURL ?
  241. RButtonDown in ListBox on CFormView
  242. Function returns diff value under MTS context
  243. telnet app help wanted
  244. edit boxes,PlaySound and progress bars (please help!)
  245. recognition of filled-in forms
  246. BITMAPINFOHEADER and BITMAPINFO problem
  247. Screensaver programming!
  248. IShellBrowser
  249. SMPT mail
  250. SMPT mail please answer here!