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. EDIT associated with float
  2. Startup folder
  3. Access a menu item from the SDI view
  4. Simple LOGFONT Question
  5. CImage 8 bit vs 16 bit Problem
  6. Need Message Help
  7. Custom Dial DLL for RAS entries
  8. How to hide a button on a toolbar
  9. BHO sample skeleton code
  10. Hi every one! How can mouse display show info when it is pointing at toolbar item?
  11. name mangling
  12. Recovery of Source Code
  13. Runtime Error
  14. Mixing bold and normal text in a Rich Edit box?
  15. FOR LOOP! Need help! Simple...
  16. Icon setting code
  17. Who says that GUIDs are unique??
  18. linked list recursive reverse order
  19. Make Lib & Dll at same time?
  20. Question about CHttpServer demo
  21. rendering the content of a richeditctrl into a metafile (OLE)
  22. Vertical Scrolling in a Resizeable Dialog Causes the Dialog to disappear.
  23. How to add worwrap in CEdit control
  24. choosing printer
  25. Please help fix small Bug
  26. CheckBox as a group box title
  27. Activex problem
  28. ascii codes - dos X windows
  29. CArray, CTypedPtrArray, Serialize question
  30. shellexecute & firewalls
  31. multi threading
  32. how to transfer dynamic array to com control?
  33. scrolling in CView
  34. Reg compmgmt.msc
  35. Loading and Displaying 2 Bitmap!
  36. CallNamedPipe in GINA
  37. How to send mail from my application.
  38. How can convert char poniter Unicode string to String
  39. What is the fastest way to create a bmp and display
  40. time filter !?
  41. debug mydll.dll works fine, releaseminsize doesn't
  42. Click behaves incorrectly in ClistCtrl??
  43. How to free objects of a static CMap???
  44. how to create a CString with huge lengh?
  45. Move a record with ADO?
  46. Problem with Windows-Explorer File assocation
  47. file created??
  48. What's opened my file?
  49. Why toolbar is under menu by level as a CView ?
  50. MoveNext and MovePrevious in ADO
  51. memory leaks, optimizing
  52. assert failure
  53. windows handle list question
  54. SAPI 5.1 engine changing
  55. Help
  56. How to eliminate DHTML from htm file ?
  57. How can ActiveX control request to draw in Full IE area
  58. SDI Appwizard Application crash
  59. How best create CHM visually ?
  60. Changing user password in Active Directory using LDAP
  61. How do I know what is the directory in wich is my .exe?
  62. getting info about the calling application
  63. Linking Error
  64. urgent-pl.help me
  65. Proplem with the property page
  66. Problem using Unicode characters ?
  67. Creating Documents Manually
  68. TAPI Problem? On Intel Dialogic D4/PCI Board
  69. Problem: How to assign a Help ID to a CDialog??????
  70. Wm_copydata
  71. Urgent ... Doc/View Arch
  72. send data between apps
  73. win32 SDK multimedia program
  74. unicode
  75. MS Web Browser activeX issue
  76. Can SQL server database send back event to clients?
  77. Search for files in a directory
  78. SetUnhandledExceptionFilter question
  79. Killing anther Application
  80. flags
  81. List view control (non-MFC)
  82. Menus
  83. I need help with loading a DLL Application View into TVisualFramework
  84. Including .cpp & .h file from a different directory.
  85. user input
  86. Calling functions from a view in a DLL class.
  87. how to derive a class from a mfc class derived class
  88. Cgi
  89. an auto_ptr question
  90. Get Button Window Coordinates
  91. Visual C++ editor
  92. Problems with combobox under win 98 OS
  93. Holding mouse down on button...
  94. Parsing error: Expected"afx_msg".
  95. creating password access
  96. Moveable flash point...
  97. simple file control !!!
  98. MFC Extension DLL Help needed!
  99. About API hook.
  100. how to get rid of overlapped text?
  101. Tool Windows
  102. Looking for a control (ListCtrl TreeCtrl)
  103. CAn anyone help? please (Process ID)
  104. CListCtrl Selecting a whole row
  105. how to put background image in a List Control??
  106. visual studio deletes the file
  107. How to Get All Documents
  108. Problems with Dialogs in DLL
  109. Rich edit and bitmaps
  110. Urgent!!! Problem with Print & Dpi
  111. How to create window
  112. How to use CSplitter class in an ActiveX Control
  113. COM Doubts..!!
  114. How to limit the Edit control to a group of characters
  115. Readiin'& Ritin' under "Debug" v. "Release"
  116. how to create a install program of a protocol?
  117. How compiler works with passing by value
  118. Can I open and close recordset frequently£¿
  119. ATL simple object and RCW
  120. ESP ERROR, Calling convention etc
  121. Problem using MFC Activex control in Work97
  122. Using Activex thread in Word 97 Issue2
  123. Erro in Created simple worker Thread
  124. WSAOVERLAPPEDPLUS :: Winsock
  125. modeless dialog, property sheets and update problem
  126. Question about mapping mode
  127. onKeyDown
  128. Memory leaks in COleControl
  129. static member declaration
  130. possible or impossible to prevent hooking
  131. ADO problem
  132. Problem with a mutex
  133. simple hashtable
  134. toolbar button color changing
  135. cG
  136. Passing list to vb
  137. how to add WM_ERASEBKGND into a dialog
  138. Curious question: What is the F12 button in VC for?
  139. OnProperties handler not called
  140. How to debug service??
  141. How to stop ReadDirectoryChangesW() function waitting for signal??
  142. Initializing my DLL
  143. VC 6.0 project problem , plz help!!!
  144. Urgent£ºproblem of CString£º£ºMakeUpper
  145. javascript submit() from C++ ?
  146. Dynamically finding installed ODBC drivers
  147. How to show explaination text when mouse passes over a static edit aera?
  148. PreTranslateMessage() doesn't trap VK_F10 WM_KEYDOWN ...
  149. hardware
  150. Around and around.
  151. An interesting question about message handlers
  152. Dialog menu and XP glitch
  153. please help
  154. how to create a toolbar in a ActiveX control (use ATL)?
  155. about office develop.
  156. ADO Connection(s)...
  157. URGENT: Dialog Based MFC Application
  158. File security
  159. DateTime Picker Control
  160. Class View doesn't display all the function parameters
  161. Can choose different menu and toolbar when open new file?
  162. Class wizard support not available for Static Libraries?
  163. Tree Control.............
  164. where is InstallShield forum?
  165. factory mathods !!
  166. Reading Movie files
  167. "Virtual Keyboard"
  168. CEdit keyboard events in CView
  169. Active Directory password changing via LDAP
  170. Comparing 2 BITMAPS!?!?!?!
  171. urgent help?
  172. problem about manifest
  173. Memory management...!!
  174. load .bmp, .tiff, and DIB files in an MDI
  175. Getting HDN_ENDTRACK from 2 CListCtrls in a CDialog
  176. shortcut with parameters
  177. TabCtrl and other Controls
  178. CreateWindow() and destroying..
  179. default arguments
  180. c++ function with GET method to http
  181. Def and DLL
  182. Html frame source code
  183. Ethernet Class
  184. Doc/View Arch in a Ocx Control.
  185. Providing Graphical Interface to MY DataBase
  186. clistctril : change font size, how to change row size too?
  187. need help regarding an OLE Control
  188. CListCtrl change pos when shift is pressed
  189. nasty assert failure
  190. Help in editor
  191. Access violation pointing at tray icon
  192. help required - urgent
  193. How detect a memory leak for HBITMAPs?
  194. UPDATE_COMMAND_UI in CDialog with Toolbar
  195. Graph algorithms
  196. Query Execution
  197. ||, && and if()
  198. Column resize event for MSHFlexgrid
  199. Several links in bitmaps
  200. choosing the best window class and using it for bitmaps?
  201. Round function in VC++
  202. COM pointer and 2 threads
  203. show filename with own serialize method
  204. Rop4
  205. Frustrated by a simple (?) printing issue ...
  206. Basic Question - data storage - passing data
  207. cdialog
  208. How to Change the background of a Tab Control
  209. checkbox icons
  210. Enable/Disable Enter Key on Keyboard
  211. Can spammers fake sending time ?
  212. cascading errors - programing question
  213. Append a program
  214. build DLL in MV C++ 6.0 errors:LNK2001, LNK2019, LNK1120
  215. landscape printing
  216. Visual C++ .NET 2003 and XP Style
  217. CString - right fill n blanks
  218. Change selection color
  219. how to show data in internet explorer
  220. Retrieve the Handle of a Costom Property
  221. how to write a plugin for MSN Messanger ?
  222. DBL_MIN and DBL_MAX
  223. Antialiased 2D line graphics
  224. How to detect cable unpluged event?
  225. Radio Button Initial State
  226. Multiple view SDI app won't redraw
  227. _RecordsetPtr::Find(....) error.
  228. How to stop Arrow Keys
  229. Can't insert activex control
  230. Accelerator And Mdi Problem
  231. Control Bars
  232. how to include the dialog in the View
  233. Simulate keyboard
  234. A Graphical Progressbar with Static control..
  235. Implement a simple IIS using socket,need Help.
  236. Strange looking dialog
  237. Unicode debug build
  238. many dialogs, but only one Taskbar button
  239. list box problem
  240. How to build excel like application
  241. error LNK2001: unresolved external symbol _GetOpenFileNameA@4
  242. MessageBox under unicode debug build
  243. IME Issue in CTreeCtrl ...!!
  244. Access Windows CE Database using Rapi
  245. Disable Enter Key
  246. Loading gifs.
  247. IIS and access database
  248. start dlg with focus
  249. How to automatically register dll ?
  250. MFC CFileDialog Problem