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. Deploying an ocx control
  2. float to string conversion
  3. How to determine clock speed of your systems processor ... in Hz.
  4. MFC Form Editor wanted
  5. How can I get all files and subfolders in a special folder?
  6. Process Injected DLLs
  7. How to use LPCWSTR ?
  8. Two questions
  9. Passing BSTR as output parameter from C++ to VB
  10. IE 5.5 issues
  11. adding a "save-file" dialog
  12. why nafxcwd.lib(thrdcore.obj) : error LNK2001: unresolved external symbol __endthreadex occured?
  13. EDIT BOX TEXT COLOR ??
  14. Very advance
  15. Please ..Please.. tellme how to edit an editbox in Win32.. Iam trying it for so many days
  16. Interface-pointer
  17. Copy CBitmap object
  18. ?afxCurrentInstanceHandle in COMserver
  19. ISAM Files
  20. operator=
  21. How to do text filling rectangle
  22. CTreeCtrl::DeleteAllItems is tooo slow
  23. SHChangeNotify
  24. How to delete a Registry Value?
  25. Copy directories
  26. OnTimer
  27. HOWTO: move parent over childs
  28. pointer data member in MFC
  29. MFC data member pointer
  30. How to detect a IE 5 or 5.5 url request
  31. Canofile
  32. Combobox and member variable problem
  33. Failure to load resources in DLL called by ATL COM object
  34. Calling functions
  35. Calling functions from another class
  36. Missing scroll bar for ATL HTML controls (VC++ 6)
  37. how to print
  38. How do I read a simple field from a recordset?
  39. Single precision math functions
  40. Can someone help me with this [nonsensical] compile error ??????????
  41. Need to make a record from various data
  42. Property sheet question
  43. CEdit max buffer size (like a queue..plz read)
  44. floating labels
  45. accessing registry problem
  46. accessing registry problem
  47. accessing registry problem
  48. accessing registry problem
  49. accessing registry problem
  50. accessing registry problem
  51. accessing registry problem
  52. accessing registry problem
  53. accessing registry problem
  54. accessing registry problem
  55. accessing registry problem
  56. accessing registry problem
  57. accessing registry problem
  58. CRichEditCtrl
  59. How to use SetActiveView to view next active document?
  60. Outlook and C++
  61. Why can't I add strings to a combobox?
  62. error C2079, C2143, C2975
  63. passing struct pointers
  64. Problem: SendRequest with data
  65. The effect of deleting a NULL pointer in VC++
  66. Can use a SOCK_DGRAM ' sock !
  67. quick question re: serialization of int
  68. DIALOG: Non-modal and always on top
  69. Rookie question about CFile........
  70. word-wrapping ON/OFF during runtime
  71. CFile
  72. search in strings
  73. Simple Date question VC++ (I'm easy to impress too...)
  74. CPropertySheet Question
  75. Console SendMessage
  76. window using dcom
  77. LAN
  78. Script Files
  79. Need help with UpdateData from recordset to combo box
  80. TreeControl
  81. prevent file extension registration
  82. C++ & Java
  83. AFX Woes
  84. How can I select an item in a CListCtrl?
  85. Installshield and icon parameters
  86. Bmp Buttons On First dialog box
  87. Help on Hook function
  88. CFile ??? Help with my code
  89. STDAPI DllUnregisterServer()
  90. Using Class Objects in STL List
  91. Finding Files that Aren't There Yet
  92. What is °ý ????
  93. Need to hide main Dialog but NOT the task bar icon
  94. ActiveX Events ....
  95. Registry
  96. Visual studio6 troubles
  97. PROBLEM: word-wrapping
  98. Problem with CComPtr (or tlb)
  99. WaitCursor while dlg is being initialized & drawn
  100. transfering data
  101. Thanks to everyone on this board!!!
  102. Focus!!!
  103. [RESOLVED] CArchive
  104. NT Services
  105. File monitoring using WMI
  106. What does this compiling error mean?
  107. COM/ATL Dead-End
  108. update an edit box
  109. How to do an evaluation at runtime.
  110. How do I programatically register file extensions?
  111. Sound formats
  112. MFC question please.
  113. Casting from LPCTSTR to LPTSTR
  114. Play notes
  115. Can never get radio buttons to group properly!
  116. How to use MCISendString() ?
  117. signal a busy running thread
  118. Find an HTREEITEM inside a tree control with a CString...
  119. ADO Multi-Column ComboBox
  120. HOWTO: Connecting event handlers
  121. ODBC drivers?
  122. CFileDialog
  123. Hiding Help button in property sheet!
  124. Does anyone have or know of any code that makes a nice looking box plot?
  125. SetModified and Apply button in Property sheet
  126. How to realize screenshareing like application-share applet of Netmeeting?
  127. how to change a COLORREF var to cstring or hex ??? >>#FFFFFF
  128. Property Sheet
  129. Is there any utility similar to javadoc for C++?
  130. Global ...
  131. How to cancel an FTP transmission
  132. C++
  133. Selecting Active X Control
  134. Graphics & Games
  135. opening recordset (Using ODBC)
  136. How To Recod voice In GSM Or in Other Formats Other Than PCM
  137. Can we check whether Monitor is ON or OFF?
  138. IP_HDRINCL failed?
  139. Single document, multiple views
  140. GetDiskFreeSpaceEx() crashes COM client
  141. Problem with fread, fwrite and class.....
  142. problem in ActiveX
  143. Process existance.
  144. Data-bound controls
  145. Q:no message line prompt
  146. how to acces to user machine from a web server
  147. A Problem when linking
  148. Activex Control Bonding Rectangles
  149. dialog visible, but mainframe not shown yet
  150. draw in scrollview
  151. Resolving NetBIOS names using WINS
  152. Why wont the text change in size with different map modes
  153. meta file creation
  154. Checking if a ws is locked
  155. help with debug assertion failure !!!!!!!!!
  156. NT Service Creating a Local Server
  157. How to use SetActiveView ?
  158. class member variable or global variable probem
  159. MFC Dialogs and Controls
  160. MSDN CFile error?
  161. 2D SAFEARRAY
  162. Problem with GetDlgItem( )
  163. ActiveX control Help
  164. Customized CFileDialog
  165. Why gethostbyname() not working inside proxy ?
  166. How can enable winsock server using my com port?
  167. play avi in DOS
  168. How can I zip a file in my program ??
  169. Textmetrics & string width in pixels
  170. Crash! IsWindow( )
  171. Get Grandparent?????
  172. How to link libraries
  173. Dialog in Frame (no accelerators)
  174. CArchive simple question
  175. Multiple sub-string searches
  176. Transparent CListCtrl
  177. ShellExecute and DOS Command ligne
  178. Class Question
  179. Grids
  180. Grid
  181. How do I create a structure?
  182. CPropertySheet and CTabCtrl
  183. CString to char *
  184. Display a view
  185. access dialog class from allpication class
  186. List control
  187. How can I know the number of records after filtering?
  188. Message Pump
  189. How adjust initialize size of ActiveX ?
  190. How to determine if a directory exists?
  191. How to determine if a directory exists?
  192. ActiveX question
  193. File->new problem
  194. Disable Keyboard
  195. How can I use external font files?
  196. How to use SetActiveView to change active document showing?
  197. How do I make the mdi window raise maximize?
  198. Creating a button dynamically
  199. List ctrl in run time
  200. PROBLEM: BitBlt() swallows colours
  201. Conver CString to char*
  202. ActiveX Control with CFile
  203. List Box
  204. Accessing Public Data from another View
  205. How do I check if a style exist in a listctrl?
  206. Invisible program
  207. API Hook code's problem,Please Help me!
  208. API Hook code's problem,Please Help me! !
  209. Try, Catch THROWS?
  210. 3 ways of function calling
  211. WHAT'S WRONG WITH THIS CODE??
  212. a newbie here can anyone help.
  213. How do I receive strings from vbscript ?
  214. An easy question
  215. Exif images
  216. Netscape Messeging Programming help need!
  217. Netscape Messeging Programming help need!
  218. Message Pumping
  219. problem with C program...
  220. CFile in a ActiveX control
  221. C++ Primer Plus study group.
  222. Progress ???????
  223. Seting filename in titlebar of dialogue...
  224. preventing the a dialog from closing
  225. NEEDED: function that gets called when non-modal dialog disappears
  226. Beep! Attention! Question about Beep(..) function
  227. Deleting dynamically created controls
  228. Making a button think its been clicked
  229. CHTMLView
  230. App.Path
  231. Get File Information about a file on the internet?
  232. FtpGetCurrentDirectoryW Failing!
  233. Creating a Thread which makes a progressbar be independent from the program thread?
  234. avoid opening hundreds of dialogs by silly user
  235. are there web sites for programmers to upload beta software to?
  236. Win32 EDIT controls
  237. Capture the string under the cursor
  238. Problem with instancing my own class...
  239. stl & Dialog
  240. Adjust size of ActiveX
  241. How to Lock Records with ODBC driver for Access 2000 ?
  242. How to Show ODBC Records in a ListControl/ListBox ?
  243. Toolbar
  244. array constructor question
  245. ListView line select
  246. ListView interaction
  247. Telnet help
  248. C2679?? CListCtrl Text
  249. How to write a ODBC driver?
  250. My doubt about MFC DLLs