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. multilingual once again
  2. Custom Toolbar
  3. link errors
  4. Toolbars
  5. Printing
  6. dynamically created CEdit : no border ?
  7. AfxMessageBox
  8. UINT32 and INT32
  9. setting default COMPRESSION when videocapturing
  10. Post/SendMessage
  11. To add a dialog to standard dialog box
  12. ScrollView/ EditView
  13. Design patterns for ADO SQL calls
  14. DAO in an ActiveX control -(repost) Help please!
  15. e-mail attachment
  16. about timer on print preview
  17. programmatically registering COM object (not regsvr32)
  18. SHBrowseForFolder
  19. WSAEventSelect....and ~
  20. One simple and general question about file formats & loadin' files!!!
  21. z-ordering
  22. Problem with data storage in different Locale's
  23. CWnd
  24. ExecuteSQL( )
  25. string from int
  26. Apartment Threaded to BOTH
  27. Afx Title Message
  28. Thread - Progress Control II
  29. Visual Studio
  30. How to know the screen's color depth?
  31. Getting variant from MsCom
  32. Unlocking the table
  33. Chopping a big GDI graphic in several pages...
  34. AfxMessageBox question
  35. Is here anyone, who is familiar with codebase 6.0.
  36. toolbar buttons
  37. ODBC - SQLConfigDataSource help...
  38. type of parameter
  39. Save file flag
  40. CPropertyPage son class without ID...
  41. Putting a single char inside a string
  42. get system color scheme
  43. Why doesn't the Menu Separator display?
  44. about GET_X_LPARAM
  45. List control font size chng
  46. CRichEditView problems
  47. How to print a 6 METERS graph
  48. Strange problem with big string
  49. Matrix
  50. How to see if NT is locked
  51. ATL Windowless control
  52. ATL Windowless control
  53. writing binary files: How?
  54. Debugger in VC 6
  55. Windowless ATL common control
  56. Windowless ATL common control
  57. PostMessage( ) sends MSG, but nobody "hears" it
  58. LPCSTR, HANDLE, DWORD and their friends
  59. How to name toolbar for DevStudio Add-In?
  60. Resize control with dialog
  61. Passing Structures
  62. networking
  63. Time-bombed Evaluation Software
  64. CProperty Page && ShowWindow !working
  65. Crystal reports / shareware / demo?
  66. Threading problem
  67. ReportEvent() grrrrr...
  68. Deny a dll loaded using AfxLoadLibrary from receiving WM_USER messages?
  69. do anybody know how to call .cpp files from .c
  70. Form view and menus
  71. upgrade
  72. printing bitmaps using MFC
  73. Passing by reference efficient?
  74. WinSock OCX control problems...
  75. Saving or Parsing HTML page w/ IE COM object
  76. Drawing line with angle
  77. XML AND VC++
  78. How to change a project dependencies?Can't understand this!
  79. Synchronizing threads
  80. CRichEditCtrl::GetLine and Windows 2000
  81. mem leaks
  82. Change system path in windows2000
  83. CEdit text colour
  84. Pointer
  85. opened file on NT file system
  86. ActiveX control's speed much slower than equivalent MFC app
  87. WIN32 code calling a DLL statically linked to MFC
  88. Windows Programming
  89. Any experience with CComEnumOnSTL?
  90. How do you attach an accelerator to a tab?
  91. a little help please
  92. Why my four radio buttons show up but no text next to them?
  93. How do I get info from HKEY_LOCAL_MACHINE/SOFTWARE/ODBC/ODBC.INI
  94. MSXML pretty printing?
  95. taskbar
  96. Large Integers
  97. Conversion help?
  98. property sheets
  99. bitmap buttom
  100. How to remove one big array from another bigger array?
  101. How to remove one array from another bigger array?
  102. How to remove one big array from another bigger array fast?
  103. Is there a way to rebuild a resource.h file
  104. HELP w/ PostMessage etc...
  105. CTypedPtrArray question
  106. Excel formulas via ODBC
  107. TabCtrl & ListView FindItem Messages
  108. Docking Desktop ToolBars ?
  109. Save user's preferences
  110. Why my radio buttons show up but no text next to them?
  111. Structs to DLLs
  112. parameters in CString and executeSQL( )
  113. Adding items to a List Control on a Modeless Dialog
  114. Creating ScrollView with a ruler (able to show/hide)
  115. printing document data
  116. ifstream?? numbers in files.
  117. onNewwindow2 & IE
  118. Why their parent is different?
  119. SendMessage(WM_DRAWITEM...)?
  120. converting CString into char?
  121. Multiple Selection from CTreeCtrl
  122. Multi-Column Search
  123. I dynamically created push buttons are visible but not their label?
  124. SafeArrayAccess - Is it mandatory here?
  125. Need ownerdraw combobox example
  126. HPC WinCE CeRunAppAtEvent for Serial Communications
  127. SetFocus and SetCapture ?
  128. Can not Terminate *.BAT process which Create by CreateProcess
  129. Please help me, about a very strange problem!!!!!!!!
  130. How to set a CSocket to Blocking mode?
  131. How to Disable menu caption?
  132. How to get popup menu in editbox other than Standard one?
  133. Saving Files
  134. Default directory
  135. Porting from 16 to 32 bit
  136. Combobox in Toolbar
  137. How can a CSocket object be used in different threads?
  138. Message Loop handling in VC++
  139. Suggest me a Good WinSock Book PLZZZZ!!
  140. IWebBrowser2
  141. Problem in creating a DSN by programming?
  142. Import Dialog Resource with class
  143. waiting the end of an aplication
  144. manupulating registry
  145. COM -> DCOM ?
  146. disabling Menu Caption
  147. opened application
  148. En/Decryption needed
  149. Beginner VC++
  150. Symbol font encoding
  151. Timers/Delay
  152. Compile DLL
  153. modaless Dialog box
  154. Get-Long-Path-Name
  155. problem with printing a line of text
  156. property sheets(dynamicly created)
  157. How can I transfer parameter when I call C function in Masm file,and how can I get the return value.
  158. How restore deleted built-configurations in a Visual C++ project ?
  159. CRecordset::Delete fails
  160. CreateEx
  161. Need help Serialize CBitmap ,what's wrong with my code ???
  162. problem with <map> function
  163. cpu load
  164. String length
  165. place to store password
  166. THIS ?
  167. how to display html page in the dialog?
  168. Bitmaps
  169. multiple line tool tip
  170. VC++
  171. Excel automation
  172. Problem with CWinApp::Run.
  173. ComboBox & Dialog App
  174. The Similarity and Difference between Owner and Parent ?
  175. icon on dialog
  176. #pragma and stuff like that
  177. ASNI char's in VC6
  178. VC++ AND Microsoft Web browser control
  179. Messages from child control
  180. Editor list in Listbox of a Dialog
  181. Adding an existing Dialog and displaying initially
  182. Function parameters
  183. Formulae setting in excel cells using VC++ fails
  184. Interface based on 'skins' (as WinAmp interface) with Visual C++?
  185. GINA auto logon
  186. thread-safe object?
  187. debugging vb dll from vc++
  188. Notification package problem...
  189. Write data in existing text file
  190. getting the data to be rendered in the Graphics Printer Driver for Windows2000
  191. Default Dialog
  192. Menu
  193. Communication
  194. Very odd problem
  195. min/max macros undeclared identifier
  196. accesing an Cview function
  197. VC++
  198. To get no of pages printed
  199. Send Arguments
  200. Max number of controls
  201. CPalette
  202. To zip/unzip strings
  203. Application Argument
  204. how to remove title bar in SDI
  205. Cross compiler for Macintosh?
  206. User's menu in VC++
  207. AfxOleRegisterTypeLib()...
  208. DirectSound buffers
  209. clearing recycle bin, old shell32.dll
  210. impossible??
  211. Help please?
  212. Activex Control
  213. Writing to a view
  214. DOCUMENT
  215. Socket - Not receiving OnRecieve event in client.
  216. get resolution changed message
  217. rich edit control print preview
  218. printing images
  219. CPropertySheet in Dialog-Based application
  220. Disabling the view source command with BHO
  221. how to get the multiple values at one time from a List Box
  222. So very basic, const pointer....
  223. Can't Scroll in CDialog
  224. How to implement Drag & Drop between different windows?
  225. Save HTML doc using the CWebBrowser Act-x control
  226. Passing a list of structs to a VB or any other client.
  227. Disabling a portion of a window
  228. Debug vs. Release DLL Callback
  229. CBitmap to mdb
  230. Loading and Opening files with extensions!!!!!
  231. Single Write Multiple Read problem
  232. C++ challenge..what do you think?
  233. Creating OCX in Screen Saver
  234. Exporting Functions
  235. launch HtmlHelp from exe
  236. what does x = a + b ? 3 : 2; mean in words?
  237. standard vs. classic c++
  238. Tapis
  239. HELP Error CSockets with CSocketFile and CArchive
  240. flexgrid control
  241. Serialize nested CLists
  242. CRect::DeflateRect
  243. TransparentBlt,Win95,memory leaks etc
  244. ptr to CView
  245. ActiveX in Dll
  246. has changed
  247. dialog interface
  248. CWebBrowser & right-click
  249. assert fail in sockcore.cpp line 513
  250. List of members at runtime