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. Images in MSFlexgrid
  2. Help with active movie 3
  3. pointers of structures
  4. Storing/retrieving OLE objects in/from Oracle database
  5. Send To Menu
  6. problems with MFC, WindowSockets, Release and Debug versions
  7. Thread closing issue
  8. Drawing problem
  9. Problem about GetMenuInfo()...
  10. HTTP 1.1 Client Source Code
  11. Software keyboard
  12. How can List-View Control be shown in windows Xp
  13. send SMS
  14. Help me about MINE RFC
  15. changing text
  16. Detecting mouse clicks
  17. Read Switch (Case)
  18. StatusBar - change color of single pane
  19. How to get the current mouse cursor state (API)
  20. PostThreadMessage
  21. Problem in ADODB::_ConnectionPtr::Open
  22. Linking error
  23. OnHScroll
  24. ultoa
  25. Help with CByteArray
  26. Getting state of a window
  27. color edit boxes
  28. How to create the resource file DATA...
  29. Error executing link.exe. when I create toolbar
  30. Urgent! - Multi Threading problem
  31. Thanks
  32. CRichEditCtrl.Urgent
  33. Get HWND from WindowTitle
  34. Change IP of a WIN2k System
  35. XP Pro / WIN 2K Pro file/directory security
  36. passing parameter to _beginthread via a function call
  37. Radio button problems
  38. PhotoShop Trace Contour
  39. Adding multiple records with addnew
  40. distinguishing seperate words in a char*
  41. RichEditCtrl Notifications in Dialog
  42. MFC Programming
  43. Calculating a color 'average' from a bitmap
  44. How do I zoom text size?
  45. CListCtrl row as bold
  46. how to handle SendMessage
  47. Single instance of DLL
  48. Office Shortcut Bar Like Application
  49. how to handle SendMessage
  50. Single instance of DLL
  51. return an error string to the client form COM
  52. CreateWindowEx
  53. The fastest way to read file beginning from Xth line
  54. Dialog Box Position in eMbedded VC++ 3.0
  55. copy and rename files
  56. CTreeCtrl
  57. ++MAX_PATH characters in CListCtrl
  58. How to detect that a drive is a DVD ?
  59. Parallel Port Communication
  60. Can SHGetSpecialFolderLocation get the Quick Launch Folder?
  61. How to create a Toolbar in a dialog based application?
  62. How to create a Toolbar in a dialog based application?
  63. Compiling .hh files in Visual C++ 6
  64. regd timer
  65. Detect file writing
  66. HANDLE and his Owner
  67. Dependencies of a DLL...
  68. Derive a class from CDateTimeCtrl??
  69. Number of copies printed
  70. Controlling Navigation in IE
  71. mfc40d.lib and Link Errors in VS 6.0
  72. How to get a handle to another window
  73. Problem in displaying japanese characters in CView
  74. COM pointer released 'behind my back'
  75. MDI pointer problem
  76. IE Menu and Toolbar like ?
  77. How to set compressed attribute?
  78. Bitwise operators...confused..can someone explain?
  79. Problem with Toolbars when closing the Print Preview
  80. how to manipulate 'alien' controls
  81. Where to put ddx.clw ?
  82. write a function to get next token from a txt file
  83. MSFlexgrid scrollbar
  84. MDI mainframe not updated after application switch
  85. multithread and winsocks Guru only !!
  86. default parametre in a com interface
  87. How do I send a message FROM Mainframe TO theApp?
  88. MFC Dll calling DCOM/COMP error marshaling array of strings
  89. Debug question
  90. Display discrepencies
  91. Error when deleting CPropertySheet
  92. how to send listctrl selected index in one recordview to another recordview
  93. Exception..!!!
  94. Exception..!!!
  95. Calendar Control
  96. Property pages and tab controls
  97. Urgent - SetWindowPos()
  98. Communication Problem
  99. Prevent screen capture
  100. Bulk Copy program
  101. How to consider namespace while parsing?
  102. Single process DLL
  103. using namespace std ??
  104. Problem displaying property page
  105. DCOM configuration in Win2K
  106. Removing Unwanted Controls
  107. Process ID
  108. How to change User's Access rights
  109. Refresh toolbar because timer set window active
  110. Threads
  111. how to change system date format
  112. Help - how to automate html post in VC++
  113. MFC-ActiveX
  114. ActiveX Controls
  115. Sleep
  116. Drag and Drop text into an edit box and insert text into exact place of drop - how?
  117. CListBox color
  118. How create desktop process in a service process?
  119. Weird differences between application compiled on Win98 and Win2000
  120. list view problem??
  121. Long process progress control
  122. Hide registry key
  123. CEditView!?! it's seems easy, but...
  124. ocx containing another one
  125. CString Problem
  126. Nuance
  127. CreateRemoteThread
  128. CControlBar::DelayShow.
  129. Play video with WindowsMediaPlayer
  130. Need help to use HttpOpenRequest()
  131. HOWTO calcualte real text length in a CStatic
  132. SetFocus question
  133. zlib: appending a file to a zip file.
  134. Printing extra blank page in window 95/98
  135. strange OnPaint() problem??
  136. How do I drag and drop text into an edit box and put text into exact spot of cusor?
  137. My own subclassed control used by View.
  138. Showing a BMP picture on the dialog
  139. Vk_return In Edit Box
  140. Using the RegKeyOpen()
  141. SendMessage in thread
  142. Sending a PASTE message to another app ...
  143. CRecordset
  144. How to create new document with view from the thread?
  145. printer properties
  146. Invalid Column Number
  147. exception handling
  148. How to check opened XLS file?
  149. Edit box problem
  150. OnKeyDown() Problem in Custom Controller
  151. Bizarre behaviour with SetSysColor
  152. CDXMappy!!!!
  153. Runtime Database Modifications
  154. app related to given file extension
  155. Help. automatic reszing !!
  156. Help. automatic reszing !!
  157. OnCreate in dialog based app
  158. A Multi-Threading Q
  159. Need help accessing datafile...
  160. Chat programs
  161. CheckBox in ListControl
  162. Editing VML with MSHTML and WebBrowser Control
  163. Odbc
  164. Simple Question About Subclassing PLEASE
  165. Excel Like tab.
  166. Serial port in Win32 - please help me
  167. DCOM/ATL VARIANT(SAFEARRAY(BSTRS))==NULL on server
  168. IWebbrowser2 not working properly for win 95/98
  169. MSFlexgrid rows
  170. Can I link an MFC dll in another C++ compiler?
  171. toolbar sticky buttons
  172. Sp5 And Xp
  173. Dynamic linkage
  174. dynamically allocated array, , fintdtotal of averages??
  175. RichEdit & inserting bitmaps
  176. Change font in CPropertyPage
  177. registry trouble!
  178. Dialog box size
  179. Does Unicode APIs auto convert for ANSI text?!?
  180. MSN Messenger
  181. Does Unicode APIs auto convert for ANSI text?!?
  182. How can I design a ocx project which have a property of Imagelist.ocx
  183. Problems matching a CPoint in a CRect
  184. ODBC and Oracle ROWID
  185. How to do a balloons look dialog...?
  186. Message box
  187. MS Agent: How to add some controls in its default balloon?
  188. Has anyone experienced this strange problem?
  189. Changing a 4 bpp CBitmap's palette directly
  190. How to Hook Application destroy message on Win9x??
  191. MFC issue with open common dialog
  192. CObArray memory exception error
  193. CString problem
  194. frequently updating text
  195. VS Printer 7
  196. Hooking into KERNEL32.DLL?
  197. Delete CString *
  198. Hi gurus,front page insert table like dialog
  199. drawing a SMALL icon
  200. direct input, mouse, and windows problem
  201. more info
  202. Text compression API's / Open source
  203. How can I create a translucent window?
  204. Why does this leak?
  205. Registry function error.
  206. DAO,MS Access Problem
  207. drawing outside the main window
  208. Drawing Boxes in Windows
  209. Dword ?????
  210. Resetting MSVC Project Settings
  211. Property Map for controls
  212. Linker errors
  213. Linker errors
  214. Dialobox problem
  215. (sub)class not visible in ClassWizard
  216. how to draw a curve in VC++?
  217. Simulate OnHScroll
  218. Expression parsing code needed
  219. ATL Control webbrowser from CommBand
  220. file size event support in Win32 OS
  221. changing filedialog path during its life
  222. how to change system resolution
  223. Spin Control, edit box question
  224. Strange error in VC++
  225. Help files, where to get information?
  226. how to define...??
  227. Drag and drop to a MFC Application Dialog based
  228. A simple question about scrollbar
  229. Using ADO UpdateBatch
  230. print view in doc/view
  231. Redirecting output from console app
  232. Editing registry remotely
  233. Strange stuff about EnumWindows
  234. std::vector removeAt(10)
  235. OnIdle()
  236. Two-way COM interface
  237. CRgn assertion failure
  238. Deriving CTreeView in Visual Studio 5.0
  239. MSVC 7.0 Profilig
  240. Install SSL certificate
  241. show Html-file in a dialogbox
  242. Getting the mouse position
  243. Windows API override
  244. How can I call a function in Visual Basic dll from Visual C++
  245. Console output
  246. Calling a VC++ dll from Power Builder
  247. CSpinButtonCtrl
  248. CreateProcess() not terminating
  249. SDI mainframe questions
  250. Type of Dialog box for messages?