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

  1. User Defined Messages
  2. To load the Bitmap of all formats
  3. how to obtain information about clients in the network
  4. Outlook's PST files
  5. Problem with DateTime field
  6. List Box, VC++ 5.0
  7. Atl Executable sever actinex control gives problem in VB 6.0 ole Container Control
  8. Disconnected rowsets in ole db
  9. Time&Date Conversion
  10. Writing to the registry
  11. Pasting Bitmap
  12. Windowless activex control
  13. output
  14. Getting Free System Resources
  15. Splash Screen
  16. Using a graphic class
  17. How do I change the text color when the CEdit control is disabled?
  18. Problems With Strings in PAI
  19. Project Settings.
  20. CStatic and OpenGL
  21. status text
  22. ComboBox: Is this possible?
  23. Sound Card PCM Waveform Level Detection Event
  24. OnAmbientPropertyChange
  25. Unresolved External in VC++ 6 ATL ActiveX Control
  26. Creating a release version/"package and deployment"
  27. jep, thats happends
  28. Calculator, need help with accelrator
  29. CPropertySheet
  30. classwizard
  31. IPC using DLLs
  32. unregistering COM object
  33. Intellisense with NT
  34. Number of days between two COleDateTime objects?
  35. How to invoke the Organize Favorites dialog
  36. How to develop WINAMP like interface
  37. ClassView pane
  38. Getting_a_second_Window
  39. How to get PC Cuurent Time by using C
  40. ISAPI Debugging
  41. Creating the tab control dynamically in ActiveX control using MFC
  42. How to add Coolbar to a Dialog Box
  43. How to make my bitmap button have transparent background
  44. C and C++
  45. Which application is better (Console or Windows and Win32, or MFC)
  46. Ever add a context menu to COleControl?
  47. Executing DOS batch files from C
  48. File Handling??
  49. Receiving info after connecting to a port on a server...
  50. on top
  51. character array v/s character pointer
  52. Getting workstation name given a username on NT
  53. Trouble with edit boxes
  54. minimize
  55. c/c++ big number structure
  56. minimize when starts
  57. ModifyStyle
  58. Changing Colors in Message Box
  59. Invisible bitmap when used in Delphi
  60. Printing Client area to scale
  61. Catching A Command?
  62. MFC Owner Draw Controls
  63. Restrict the size of a window
  64. edit controls-urgent
  65. How to get the short and long filenames of a file?
  66. Help me out in using Application Wizard
  67. Visual C++ bugs?
  68. how to get reliable date/time
  69. GetFreeSystemResources
  70. MFC Activex public source code ?
  71. File Locking a serialized Document
  72. Font scale on Print preview
  73. Loading Skins
  74. WATCH VALUE IN DEBUGGER
  75. Auto Play CD!!!
  76. Control Coordinates
  77. Header control scrolling
  78. SQLFreeHandle ?
  79. ClipCursor & region ?
  80. How can I know how many connections to my database
  81. BLOB
  82. How can I know how many connections to my database
  83. Dlg Hwnd
  84. HOW CAN I INSERT A BMP FILE INTO THE TOOLBAR?
  85. Arrays and Frequency
  86. Collections
  87. How to set MessageBox's default option button
  88. OnClose or something for CListView
  89. NT SERVICE
  90. Iconize an app : small icon ??
  91. MessageBox - How to center it to app
  92. Dealing with Ocx Externally
  93. DB Application
  94. SQLServer. Devices size.
  95. File Searching??
  96. Text Color in CListCtrl
  97. delete Already defined????
  98. #includes and forward class declarations
  99. How to move the cursor?
  100. Works in Debug...Does not work in Release
  101. question about "const" keyword
  102. ADOX for expert
  103. Timer
  104. ADO + Sybase (OpenSchema method)
  105. ASSERT in DestroyWindow
  106. Tab controls with Property Sheets
  107. DAO and Oracle
  108. Capturing into CBitmap
  109. Access Registry
  110. Transparent blitting without directX or MFC????? How?
  111. Graying of ICONS
  112. DHTML Object created by ATL Object wizard...
  113. Excel grid ?
  114. ODBC API Transaction
  115. Sending data to another application
  116. checkbox
  117. How can I clear image in bitmap?
  118. How can I find out which VC++ Version starts my CustomAppWizard???
  119. Adding child controls in MS Froms Frame control
  120. Splitter windows, it's easy to attach dettach new views ?
  121. Function to access CD Drive
  122. Rich edit control in html
  123. TreeCtrl with checkbox
  124. parse source code
  125. IShellLink from pidl
  126. Get the operating environment
  127. Loading ole bitmap objects from RTF files into RTF control.
  128. Keeping Menu on screen or another Menu Control
  129. Splitter Windows How to delete one of the views and put other...
  130. clipboard
  131. Totally stuck trying to create the following GUI..
  132. WinCE Menu Scrolling???
  133. Creating new window doc.Please Help!
  134. Sorting CListCtrl in Icon view?
  135. ADO: Recordset's Requery() method
  136. Text clipped when printing
  137. ADO: Recordset's Requery() method
  138. If statement base on timer?
  139. I dont want it in debug mode...
  140. Slider tooltips
  141. How to show values in a x,y coordinate system?
  142. HotKeys...?
  143. IE History and Favorites
  144. Any ideas on a general purpose database?
  145. Client system crash during ODBC API Transaction
  146. Visual C++, DDE & Excel
  147. Flicker Question
  148. Font Size
  149. Direct access to BTrieve database
  150. Detecting DHCP under Win95
  151. MS C++
  152. MultiThreaded Windows
  153. How do they create the "Page Layout View" in Microsoft Word?
  154. How to change CList class?
  155. WinNT!
  156. Splash Screen
  157. Access97, ODBC, multi-threading problem
  158. Passing C++ member function pointers to C functions
  159. Help! How to mimic IDE resource editor
  160. TWAIN. Help me search documentation.
  161. Modeless dialog box
  162. Copying a CDaoTableDef
  163. non-modal Dialog
  164. Return codes in COM
  165. RichEdit buffer size.
  166. Help with CReBar !!!
  167. Need pointed in right direction
  168. Scrolling
  169. Need pointed in correct diretion
  170. On File New, dialog asking for parameters
  171. On File New, dialog asking for parameters
  172. How to change the Font Size in a RichEditCtrl??
  173. dialog & string resoures
  174. getting a single line from an edit box
  175. Adding Progress Bar control to console- How to? - Need help
  176. Customizing File Open Dialog System Wide
  177. MDIChildSwitching
  178. Adding tabs to control panel?
  179. How to Create Buttons dynamically on Tool Bar
  180. drag and drop in a dialog - Help me please
  181. sound
  182. Registrering controls
  183. how do I set the scroll position in an edit box
  184. error codes in ado
  185. Adding page breaks to WordPad?
  186. Default Parameter (ActiveX)
  187. How to create 2 View classes on 1 Document class
  188. Scrollbars in ActiveX control
  189. HELP! I need to create broadcast sockets
  190. DirectShow CSourceStream question
  191. NT Services and CreateWindow
  192. Need an Encryption Algorithm
  193. SubItems in List Ctrl
  194. importing callback function
  195. how can I view an escape sequence
  196. ATL Client for ActiveX control
  197. simple question, I guess
  198. drag and drop
  199. input sngl char
  200. date field
  201. Changing the font of the items in the dropdown menu from an ActiveX control
  202. disk searching
  203. ISAPI HTTP up load
  204. MSFlexGrid/Drag - n Drop
  205. How to find scrolling increment?
  206. Questions on MS FlexGrid
  207. catch minimize/maximize window event
  208. All powerful cursor...
  209. How do I setfocus to a button in CPropertyPage
  210. Two Mouse Pointers
  211. Mouse notification in Tab control
  212. Urgent: SendTo functionality
  213. Basic WinAPI Trouble
  214. How to put a Jpeg on a Dialog Box
  215. Printing a Tree Control/View
  216. Resizeable Dialog box ??
  217. How to resize propertypages at run time in an MDI appication?
  218. Custom made DateTimePicker!!!!!
  219. How to use ActiveX control (with MFC) in a win 32 application.
  220. How to use ActiveX control (with MFC) in a win 32 application.
  221. How to use ActiveX control (with MFC) in a win 32 application.
  222. code problem
  223. Help me with CFormView !!
  224. Lighting with "Glide"
  225. How can I create my own base class and child classes?
  226. RGB to CMYK
  227. What is the parameter UINT nID within CWnd's Create function?
  228. Toolbars on Dialogs
  229. Using Dialog Data Exchange
  230. Resource file size (*.rc) becomes HUGE after saving !
  231. How to know if a COM interface is registered
  232. How do i get the position/string of the currently highlighted menu item?
  233. Exporting VB DLL methods
  234. Creating a pop-up window from a SDI application
  235. Toolbars & Dialog Boxes
  236. CALLBACK
  237. Multidimensional array
  238. Records inserting via SQL
  239. Oracle --- Stored Procedure with C600
  240. elizeu@internetcom.com.br
  241. Help... Oracle X C++
  242. Help... C++ X ORACLE
  243. Help ::connecting oracle through OCI in C++
  244. Error retreiving text field from MSSQL stored procedure using CRecordset
  245. Get System resource
  246. programming
  247. make a Class function as a List
  248. com
  249. Does anybody know how to remove a control from the toolbar?
  250. Change Background Color of CStatic Control