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. How to manage the direction key in my ATL control??
  2. Win media SDK
  3. Fill a colum..?
  4. What is the better place to perform the loadbarstate and savebarstate functions?
  5. help with ToolTip's Width
  6. STRUCT question ???
  7. Detecting communication stop
  8. Software protection using Memory Mapped Files
  9. Prog.
  10. CWnd OnCreate and OnDestroy
  11. Calling MFC based dll function from C file
  12. How do i use WMI Get CPU use rate?
  13. CEdit in MM_ANISOTROIC mapping mode
  14. How to Print List Control
  15. INI file for CE
  16. changing background color of edit control
  17. task switching problem in NT 4.0
  18. document/view question
  19. * Should be easy to answer but I'm a newbie :) *
  20. Drag&Drop
  21. How to use Animated GIFs and Animated Icons?
  22. How to compute the size a formated string occupies?
  23. How to change the text color of a control in a thread function?
  24. How to create a auto-size Dialog-box?
  25. CEdit Multiline
  26. How to get HTTP data in IE environment?
  27. SDI
  28. Visual Studio Problem
  29. Console window does not close when the program finishes
  30. image
  31. Create Object
  32. psapi.h
  33. Exporting function from a DLL
  34. How do i create and display a 24-bit image?
  35. how to get Virtual memory usage of a process ?
  36. Invoking Array
  37. .DSW,.DSP files
  38. Getting Windows version
  39. Draw Spiral Function
  40. Graphics Drawing Problem
  41. Problem with GlobalAlloc()..
  42. Http Response
  43. How to display percentage on progress bar?
  44. Scroll in richedit control
  45. Help needed
  46. sliderbars
  47. formview, make an illegal operation...
  48. BubbleSort flagging
  49. My first class
  50. How to embrass my application to Windows Shell?
  51. How to call color dialog form an property page
  52. How to derive one interface from another
  53. GetNextItem
  54. help me plz
  55. humble CTreeCtrl question
  56. IP helper library
  57. is the AfxDaoInit necessary when using DAO ?
  58. How to go programatically to end of a CEdit control
  59. Passing a pointer to a process
  60. Alignment in EditBox
  61. How do I hide a child window in an MDI app?
  62. Change Color in edit box
  63. changing background under windows
  64. Ignore Escape Sequence
  65. URGENT -> CFileDialog problem on PropertySheet !!!
  66. Change default font of a MDI application (cscrollview)
  67. cursor
  68. Add to BSTR to a new one
  69. can I get .net for free?
  70. How can I create new DBF file?
  71. Acrobat SDK & ActiveX
  72. help me plz
  73. InternetConnection
  74. File Transfer On Serial Port
  75. Sorting
  76. SDI to MDI
  77. Display text in CFromView Edit box
  78. TransparentBlt
  79. CComboBox help?
  80. ListView
  81. accessing IE pagesetup dialog
  82. Converting Wstring to bytes
  83. Pallette question, need help..............
  84. fstream problem in an MFC Dialog app
  85. VIrtual Key VK_ALT
  86. RegSetValueEx
  87. thread controlling
  88. Compound File
  89. Vertical Toolbars in a Dialog
  90. bitmap button
  91. Missing Iphlpapi.h and Iphlpapi.lib
  92. Control of bad close of application !
  93. Difference between CDialog::Create(ID,NULL) and (ID,this)??
  94. how can I make this more efficient???
  95. error C2143: syntax error : missing ';' before '*'
  96. Show menu and button text in different language other than the default language of WIN2000
  97. Connection to network database?
  98. Can some spare a few minutes and look at my method and tell me why it's generating an EXCEPTION???
  99. EnableMenuItem
  100. Context pop-up menu in Internet explorer
  101. Problem for capture message with windowproc!!!
  102. adding item to IE's "Standard Buttons" bar
  103. >>Skins of Media player 7
  104. using vc++ to create a software that can help us to create a setup file(.exe file)
  105. Locate A Backslash
  106. Using CFileDialog in CComboBox dropdown handler
  107. CListCtrl with CheckBoxes and HeaderImage crashes under win95
  108. Memory Leak
  109. function
  110. C Sharp
  111. Database problems using CDaoTableDef
  112. opengl
  113. Parsing error: "tagSpeed" is not a valid OLE parameter type.
  114. vector's
  115. Email Extractor
  116. Detecting empty records
  117. CreateDispatch error in Word automation DLL
  118. Printing Multiple Files
  119. Help me: Delete and Insert Edit Box!!!
  120. String Table?
  121. 2 little questions
  122. How do I add the ability to connect to the internet to my app?
  123. Help me: Delete and Insert Edit Box!!!
  124. SOCK_RAW: why offset must be 0?
  125. Help Debuging DLL with ISupportErrorInfo
  126. Socket handle passing to a thread
  127. Sorting
  128. C++
  129. splitter
  130. Loading frames from resources into CHtmlView
  131. BubbleSort flagging
  132. Variant Concatenation
  133. Scroll two views
  134. serialize problem
  135. defines and conditions
  136. Need help with CRichEditView
  137. Terminal Emulation Code Problem
  138. How to change the color of a toolbar ?
  139. Atomically replacing a file
  140. ListBox handlers
  141. CEdit::PosFromChar() broken?
  142. VB dll
  143. Creating array of ...
  144. Help in CPropertySheet
  145. My Experiences with CRichEditView and Richedit 2.0
  146. how to capture IGMP packet
  147. Close browser
  148. How to create DOMDocument?
  149. SSL
  150. Minimize All Windows
  151. msado15.dll frusterations
  152. pragma to switch between size and speed optimization?
  153. Drawing Arcs, non solid pens
  154. Movies
  155. Context Menu
  156. Find a File
  157. Start Menu control
  158. Problems with the IShellLink interface under MFC
  159. Growing C memory buffer
  160. Get File list in Directory
  161. ODBC -cannot open recordset
  162. insert objects with list into vector
  163. Sending with AsyncSocket
  164. autocorrect in powerpoint 2000/xp
  165. ODBC-Recordset
  166. How to Create a DockableWindow with Tabs similar to VC++ Workspace
  167. how can i get workgroup name from windows
  168. Major problem with ComboBox - Please help me Gurus !!
  169. Can HTMLView be updated without loading/reloading a file?
  170. API Programming
  171. Display Bitmap in a cell?
  172. copying CDC
  173. CListCtrl....
  174. How to subclass a CHeaderCtrl
  175. I Know It Happens. But HOW that's the question?
  176. problem in DDK build
  177. Getting Parent process ID on WINNT
  178. Comparing files
  179. problem with window destroy!
  180. Need Help with Assertion Error
  181. Hooking Keyboard
  182. Using ::SendMessage()?
  183. Find all run application
  184. Ctrl+Alt+Del
  185. On NT, Change path and environment variables
  186. Deleting a Font from the device context
  187. How to free CBitmap correctly ?
  188. DLL and templates
  189. sliderbar
  190. Switch CString
  191. Multiple browsers
  192. create window with window butoon
  193. Get the Installtionpath of SQL Server
  194. Why can't i delete a pointer?
  195. Excel Automation
  196. Registry problem...
  197. Crecordset. open?
  198. Get Hostname by Address
  199. CWinThread
  200. GUID CLSID
  201. VC++ Builds all files
  202. THREADPROC causing access violation or thread blocking??
  203. how to get CD-ROM serial number??
  204. IFilter
  205. Communication between Interfaceses
  206. Sockets
  207. Outlook Express
  208. Drawed lines disappear...
  209. Using RichEdit controls
  210. Can anyone has idea to display some chars or images in CMainFrame window
  211. show a bitmap
  212. Drawing ouside the dialog
  213. Which most left-hand point CListCtrl is now really visible?
  214. Please help with "wcstok"
  215. Editing bitmap resources
  216. ActiveX-control : Windows Media Player ... problem
  217. Borland or VC++
  218. Duplicate export functions (DLL)
  219. Soft to detect resource leak
  220. OnCreateClient() pContext is NULL
  221. Resizing Controls
  222. Keep Focus
  223. MDAC Install problems
  224. Printing from view
  225. How to get current application directory?
  226. What is the problem?
  227. bitmap and cursor
  228. Help - Vectors
  229. Selection a line from the editboxe
  230. property sheets
  231. recordset excel
  232. Trying to create editboxes at runtime.
  233. create window with window button
  234. Right Side Horizontal CTabCtrl
  235. argument passing with executable
  236. DirectSQL class
  237. How do I make a bimap smaller in size when displaying it to the screen?
  238. DAO
  239. Problem with my Vertical scroll bar
  240. Come on Palette Guru's!!!!!
  241. CFileDialog
  242. how to change menu Font size?
  243. timeout error & sockets
  244. Edit boxe: Problem!!! Check my code!!!
  245. Deleting objects
  246. CFile CArchive
  247. Please tell me how to change the width of the column of CListCtrl
  248. How to detect when a edit box is out of focus???
  249. HTML Offscreen rendering
  250. Static Color