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. Dialog with Toolbar
  2. Timers
  3. Debug Session crashes before executing anything
  4. Centered control
  5. garbage collector
  6. how to iterate through a collection?
  7. how to iterate through a collection?
  8. Connecting to a FILEDSN with SQL
  9. Add a row to an object of MSFlexGrid
  10. Take a look at this ADO Tutorial
  11. How to create memDC
  12. Changing the monitor's refresh rate
  13. Check box list
  14. Is C++ dying or dead?
  15. Code implementation
  16. Submenu
  17. Microsoft internet transfer control
  18. How do I use GetOpenFileName?
  19. Maximize the view
  20. C++ & Rose
  21. Need linked lists source code
  22. Need linked list source code C++
  23. Need linked list source code C++ please
  24. String formatting question
  25. BMP to AVI
  26. Codepages
  27. Environment Variable
  28. Launch exe file through activex
  29. adding pointers
  30. Is there any way to determine if a given application is currently running? (0)
  31. why this iteration doesnt work?
  32. why this iteration doesnt work?
  33. Re: how to get filename selected by user after MFC's OnFileOpen()
  34. HtmlHelp
  35. When process terminates
  36. strings ...help
  37. How to use CreateFile(...) for multi access?
  38. Directory tree and file list
  39. Finding the Version of the Operating System (OS) of another computer
  40. Getting CPU or HDD's Unique ID
  41. _beginthread
  42. Dialog Box Trouble again
  43. CDO-can't get it to compile
  44. CDO-can't get it to compile
  45. uestions about Files
  46. Thread Enumeration.
  47. Riddle me this (WM_NOTIFY)
  48. Need a C++ & HTML Client sample w/SOAP
  49. correction... iteration
  50. correction... iteration
  51. tricky unix c++ question
  52. Syntax error, can anyone see something?
  53. mail
  54. InstallShield
  55. Display a different Icon in the Frame window
  56. XML SDK in VC++
  57. Istall Shield
  58. Allocate unknown derived class at runtime
  59. Use tooltip as the entrance of the web site
  60. ADOConnection object
  61. Pass derived type to pure virtual that wants base type
  62. On pull down menu and launching application
  63. title bar in splitter window windows
  64. Creating iso file
  65. Setting focus to tree control
  66. ADO: How to set up DefaultValue using ADOX?
  67. sending telnet commands, streaming socket..
  68. Unresolved Externals
  69. do... case or switch?
  70. Dropping on an inactive View
  71. File Size
  72. STL & Container classes
  73. How to quit excel.exe
  74. Pragma
  75. Link error C++
  76. How to issue a system command from a Visual C++ program?
  77. How to Trap WM_EXITSIZEMOVE
  78. DCOM
  79. GetFileTime and GetFileInformationByHandle?
  80. C++
  81. How To force wordwarp when I reach a spesific column number?
  82. SendMessage & ON_WM_DRAWITEM
  83. Devide float number by 100
  84. Windows Socket Communication using OverLapped Mode
  85. GetCursorPos within a CListCtrl?
  86. C++
  87. Dynamically displaying menu strings in the status bar?
  88. cTreeCtrl multiselect
  89. Vectors
  90. IXMLDOMDocument & ATL
  91. Changing ToolBar Background
  92. Automation???
  93. Writing a macro aroung sptrinf?
  94. Need info on exec files
  95. SOUND CARD Signal...
  96. Is too long time?
  97. Implicit linked DLL error senario!
  98. Windows Message Handler ...
  99. Batch updates (simple I thought)
  100. Urgente! Strange problem with my ADO code
  101. VC++
  102. in MFC?Source safe Object
  103. How to locate system tray
  104. Anybody can check my code
  105. Menu
  106. COM Beginner needs help URGENTLY
  107. Custom type into a C++ DLL ActiveX w/o wrapping it into a COM object
  108. Fatal error C1083 in ADO
  109. GetSafeHWnd( )
  110. Pen color
  111. How to Set Brush Org In Windows 2000 when draw hatch pattern?
  112. WaitCursor not displaying? why?
  113. Encryption and Decryption
  114. ODBC--restrictions?
  115. Resource Addition
  116. IP Address control.
  117. RSVP - Protocol
  118. Sinking Events in VB
  119. a easy question-draw a line in view
  120. Sending/Receiving Mail through my MFC Program
  121. Shortcut Bar
  122. draw a line in view
  123. DCOM through Dual Network
  124. How can I use the CAsyncSocket class in document based application?
  125. Memory allocation problem!!
  126. CComboBox
  127. Advise
  128. Remote MTS objects
  129. scanning a XML-File
  130. Advise
  131. How To force wordwarp when I reach a spesific column number?
  132. How to popup menu when the right button down?
  133. App Error
  134. How to wait for 1000/60 milisecond?
  135. Connection pooling
  136. A directory contents listing function in C++?
  137. CoolControlsManager
  138. Encription of file
  139. pointers..
  140. Gaming simulation sites / help
  141. MS-Office like "shortcut bar"
  142. Proxy-Stub?
  143. Using not MFC project in MFC project
  144. Menu
  145. _NET_DISPLAY_USER
  146. Wizard for Wizards?
  147. Spline Interpolation
  148. How to get the DESKTOP handle ?
  149. refresh rate
  150. Basic doubt in Visual studio editor
  151. How to create a custom window class name in MFC
  152. Database-Controls
  153. Comand Net Send
  154. Text File Importing
  155. Text File Importing
  156. user rights under Win NT
  157. Play wav
  158. End a thread prematurely?
  159. Customize OpenFile Dialog
  160. Starting EMail-Programm
  161. Lock record
  162. How to use OLE DB CArrayRowset
  163. .Ico
  164. Using CBulkRowset i cannot sucesffuly call CRowset::MoveFirst() after I get first (CRowset::MoveNext
  165. Default constructor
  166. dialog memory cleanup
  167. Socket
  168. help on runtime classes
  169. Faster parsing
  170. Cant see rendering
  171. Execute SQL
  172. Re: Windows Message Handler ...
  173. OnDestroy()
  174. DDV with floating point precision spec
  175. Microsoft ODBC - 256 symbols limit?
  176. Quick Qs. - dual intf.
  177. File IO
  178. Ado problem under COM+
  179. Selecting a tree Item
  180. Yeap another generic socket question
  181. SQL Server and COM
  182. Problems develop ActiveX
  183. Tray Icon
  184. Strange error
  185. problem with beeps
  186. SQL-Help in the Internet
  187. RS-232 easy
  188. Template classes
  189. radio button error
  190. Timeslices
  191. OLE automation to access Visual SourceSafe command??
  192. MultiLine rows in List Box
  193. HELP! Oracle Locking
  194. ActiveX in html
  195. Peregrine DB Access-Urgent!! Pl. Help
  196. How to verify NT username and password?
  197. Database access problem after CFileDialog
  198. IsFieldNull & SetFieldNull
  199. From MFC Src code: COleControl
  200. Edit box problem
  201. ADO - automatically COMMIT
  202. No title bar on modeless dialog....
  203. How can I open keyboard window on PDA?
  204. COM/ActiveX/Resource ID issue
  205. Starting programm...
  206. Add a toolbar to a Dialog based app?
  207. CAsyncSocket
  208. Application Icon on Alt+Tab
  209. CFormView
  210. Non-blocking listen() call
  211. Close all opened documents
  212. Dialog app
  213. Tabstops with CCheckListBox
  214. CEdit click event and keyboard
  215. #include spam
  216. CWinThread::OnIdle causing problems?
  217. Get width and height from DC
  218. using new and delete in functions
  219. How can I draw a tracking rectangle?
  220. Ctrl-List --> save the Items
  221. TextOut
  222. how to hide scrollbars from CFormView
  223. drawing a bitmap on a bitmap
  224. keeping the quality of a gif
  225. Can't hide a dialog bar in rebar...
  226. Setting Dialog control text
  227. Realy need help
  228. Implementation of paper: "Reliable tracking of facial features in semantic-based video coding"
  229. suggestion for a good messaging mechanism?
  230. DAO/ADO and MS Access
  231. Bis Problem with ConnectionPointer in ADO
  232. Find the Eigenvectors and Eigenvalues of image
  233. Multi Instance of Com Server
  234. Programmaticaly adding a button to a toolbar?
  235. How do I catch events from Windows - not made by my app?
  236. CStringArray to CString?
  237. bmp palette optimization
  238. Explicit Dll loading
  239. Moving Minimize Maximize & Close Icons Left
  240. Windows version compatibility
  241. Copy constructor
  242. Size of PropertySheet
  243. CSocket terminates my console server
  244. Derefernce operator
  245. Height of colapsed ComboBox
  246. calling b/w 2 com servers
  247. getting Errorinformations if wrong SQL-Statement
  248. Closing Files
  249. How to Use Datagrid component in DAO
  250. Please! Need HELP! Thread problem!