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. dao 3.6 /jet4.0 setup?
  2. Should work...right?
  3. Help me find a B-tree
  4. ConnectionPoint-Like with standard RPC
  5. CDC to draw the line?
  6. Parsing (using fstream & getline)
  7. Control Container
  8. To DanielK and the rest.
  9. Simple Question regarding CListCtrl
  10. Animation...Where Do I start?
  11. view graphics while downloading them.
  12. Load data on init
  13. Programmatically create Propertysheet/PropertyPage
  14. COM Client and try catch block
  15. pointers
  16. Q. How to Disable "Enter" Key message on Dialog?
  17. source code
  18. DoModal();
  19. Q. How is the CArray impremented?
  20. Detecting change on Slider control
  21. User Input
  22. text color
  23. Edit control...
  24. Help on Hearts
  25. Combobox Background color ok, but text...
  26. Pointers to Child windows
  27. using 'delete' makes program crash
  28. integer to hex to string
  29. Winsock Question (very easy)
  30. Hiding Start menu items?
  31. Adding a toolbar to IE
  32. Where can I find good tutorials to learn VC++???
  33. Window size
  34. CSocket.Recieve problem.
  35. Dialogs and which control user is on
  36. Help needed with ReadFile()
  37. Bitmaps in Visual C++
  38. setting file atributes
  39. Use the class CAnimateCtrl to display AVI files
  40. help with making rand() more random?
  41. Convert: Unsigned Char
  42. Help unfix result
  43. Threads in VC++
  44. Threads in VC++
  45. ActiveX controls in main application window??
  46. Simulate a key pressing...
  47. How can i determine,who is the father?
  48. Variant with 2 parameters
  49. System Information
  50. Fixed Result
  51. CDaoQueryDef
  52. Process Priority
  53. Serial ports registers
  54. Are windows controls just like that???
  55. Progress Ctrl
  56. How to retreive member variable of dinamicaly created object?
  57. Mouse System wide hooks
  58. toolbar ComCtl32 crash
  59. RAS, WM_RASDIALEVENT
  60. CList with lines
  61. Internet & C++
  62. CList
  63. about oppression message-tranmitt
  64. Data Base help...
  65. Nested classes
  66. dinamically load the ActiveX control
  67. Accessing CDocument's member functions & variables via a modal dialog
  68. problems with pointers to nonmodal dialogs
  69. Toolbar in DialogBar
  70. Using CMDIFrameWnd::MDITile()
  71. Registry question
  72. Dialog Color?
  73. DirectShow Volume Values
  74. Writing in files
  75. How to dinamicaly allocate an array using operator new?
  76. Plugin for Office 2000
  77. ellipse problems
  78. DOS Application
  79. 2 min/max problems. Please Help!
  80. Hurry! How much size of an object with or without member function?
  81. property sheet,problem with font
  82. CTabCtrl
  83. How can I become remote user in Windows NT
  84. Utility to Create lib from dll
  85. Urgent, Returning ANY to VB from COM DLL
  86. MFC SplitterWnd
  87. Bitmap button! I cant get it!!
  88. Transparent color in bitmap...
  89. suspending application
  90. its about socket APIs
  91. Write data into existing file
  92. sending a message to a WebBrowser control or CHtmlview class
  93. How?
  94. How to make own clock
  95. i wish to add icons to buttons ive created! HELP!
  96. JPG to BMP file
  97. Simple question for you experts
  98. how to show a dialog on the top of all windows?
  99. Can't get text
  100. To get the type of field by ODBC.
  101. How can I define a input parameter's type?
  102. New Pointer Problem
  103. getting output result info from an EXE with ShellExecuteEx
  104. How to get a random number between 122 and 233?
  105. new, delete, crash
  106. Very Serious Problem (So far no sloutions in forum)
  107. Get VB array problem
  108. ocx work on IExplorer, test container but not in vb
  109. Need Expert's help--How to show a minimized window with such features...
  110. How to set papersize in NT?
  111. Really no one can answer this?
  112. Horizontal scrolling in CList
  113. C++ Guide
  114. Hum memory leaks.... :(
  115. Problems with CTreeCtrl
  116. Mouse Hook
  117. Working with Wizards...
  118. Help me on this pls
  119. VC++
  120. CCriticalSection compiling error
  121. how do i keep...
  122. CoCreateInstance()
  123. Embed OCX
  124. How to display it?
  125. API functions
  126. Please tell me how to set papersize in NT.
  127. Is there really no experts who can help this poor chap.........
  128. Could this be the end of CodeGuru??
  129. ActiveX events - What am I missing?
  130. Whats wrong with this???
  131. SOCKET
  132. Connction to a DB via OLEDB
  133. Receive Event Message
  134. Problem: Font difference in PreView and on paper. What to do?
  135. Connection points in ASP Pages
  136. How can I use CImageList class in Drag and Drop Action?
  137. Registry Access Problems
  138. Overlap two BitMaps
  139. Windows 2000 new UI features
  140. OneEye
  141. Need something like cout or printf, but in VC++
  142. change the text color
  143. Label editing in TreeView
  144. Problems with CListCtrl
  145. use MAPI function to invoke Netscape to send mail ?
  146. Splitter Windows
  147. Arranging Windows
  148. How to create a frameless Mainframe-Window???
  149. Error in CMultiDocTemplate
  150. Timer problem
  151. transferring code from Borland to Visual C++
  152. How to dinamicaly allocate an array using operator new? #2
  153. writing to output files in systemetic manner
  154. writing to output files in systemetic manner
  155. Please, Fix the Problem
  156. Please, Fix the Problem
  157. Please, Fix the Problem
  158. Creating an empty Recordset
  159. Grahpics.h in vc++
  160. Registry Access
  161. Registry Problems
  162. How to update the text type in an edit box to a static box on a form view (CView class)
  163. getsubmenu, mfc
  164. Problem with compound files.
  165. debugging into STL-Container
  166. Setup File
  167. Borland and VC++ compatibility
  168. Simple question just for general knowledge..
  169. Change the pallette...
  170. dynamic casts
  171. Custom controls in win32
  172. Custom controls in win32
  173. Thread Safe Code
  174. Check box, and If...
  175. SQL "SELECT" Parser
  176. Use of RUNTIME_CLASS
  177. Treeview problem
  178. URGENT!!!! Could not associate menu with CCJTabCtrlBar....
  179. How to set the background color of Dialog
  180. Clist problem
  181. Paint
  182. Parsing the command line
  183. Centering OpenFileName Dialog
  184. DIB to JEPG
  185. GetUpdateRect
  186. Scollbar
  187. Catching ESC Key
  188. Help: problems with DirectShow
  189. _MBCS
  190. Stay on Top Window
  191. Updating windows from a worker Thread
  192. ActiveX Event
  193. GetUpdateRect
  194. ClistBox problem
  195. Toolbar button
  196. Message if textlimit of an Editcontrol is reached.
  197. How can i do to send a message to an object that doesn't derive from CWnd ?
  198. help
  199. Serialization
  200. Filter driver
  201. Download a html file for processing
  202. ShellExecute
  203. Database
  204. Combining Print Jobs
  205. Calling C++ from C
  206. Optional Parameters on ATL component
  207. Virtual COM Port Driver
  208. ODBC
  209. pointers
  210. Serios problem with serialization
  211. Curious problem with MFC and java style interfaces.
  212. How to write a hidden process?
  213. template problem
  214. CTL+ALT+DEL
  215. Socks5
  216. CCheckListBox
  217. VC++ vs. VB Client Performance
  218. queryinterface in com
  219. C sources for reading/writing binary data to an Access database
  220. How do you control Property Page redraw?
  221. How to minimize and restore a dialog-based app ?
  222. iunknown marshalling
  223. Two CView's and One CDocument
  224. How do you get the correct pixel size of a text string?
  225. com question
  226. OLE DB open-help!!!!!
  227. OLE DB open--help!!!
  228. DlgDirList problem
  229. SystemParametersInfo & WINVER >= 0x0500
  230. Simple Encryption code causes ASSERTS in Debug mode
  231. Determinate speed to some host
  232. please help me
  233. Calling a method from an MFC Extension DLL
  234. com comp. for ERP
  235. ActiveX control in IE (newbie questions)
  236. C++/MFC Developer wanted
  237. WndProc
  238. Here is your question for one million dollars
  239. Error in Microsoft KB Article Q155918
  240. two questions for OS independent test program....PLEASE HELP!
  241. Please Help, Unwanted ScrollBars
  242. Characters on disk different from their short file names in Windows?
  243. ChttpFile and finding an internet file size
  244. Competant VB programmer seeks rapid VC tutorials?
  245. Getting app directory
  246. Server waits for Recieve to initialize code?
  247. display file
  248. property sheet
  249. SQL Filter String
  250. MS word password