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

  1. Changing names of help files.
  2. serial port
  3. VC++ Compiler locks up. (Compiling Active-X control)
  4. CEdit Caret Problems
  5. Multiple SaveAs filetypes
  6. How to break the limit of the CListBox ?
  7. Accelerators in Dialogs
  8. CDaoDatabase Woes - Part II
  9. Folder Dialog Box
  10. background of listbox
  11. Process Handle
  12. NT SERVICES
  13. MS Excel
  14. Proxy Servers
  15. Combo boxes
  16. WinHelp always on top?
  17. How to get check box status from different property page
  18. Dumbing down CArchive for History Logging
  19. Return memory to operating system ??
  20. How to make a user guide of an application ?
  21. Volume-Control CD-Player
  22. How to put a CFontDialog inside a template?
  23. Getting IE version and Service Pack number
  24. C++ COM port Communication
  25. Please Help! delete opterator
  26. Linker Error! Can't find mfc42ud.lib
  27. Linker Error! Can't find mfc42ud.lib
  28. Multiple highlights/selections
  29. HOW TO AVOID REFRESHING???
  30. Buttons on property sheet
  31. Sleep () and shutdown
  32. DLL tool
  33. Windows Media Player Control
  34. How can I avoid the Printer Setup dialog when I print from HtmlView?
  35. Storing web pages as local files using EI 5.0 browser control
  36. Creating CFormView without Doc/View Architecture
  37. How do I get a pointer to the parent CDocument?
  38. Clock in System Tray
  39. CListCtrl and selection hilite
  40. Bitmap as background for tittle bar in dialog window?
  41. Multithreading
  42. Get/SetCurrentDirectory
  43. Trying to drag and drop in a listctrl
  44. NETWORKING
  45. How can I create design-time custom controls
  46. operator =
  47. How to debug makefile
  48. Getting data in Form view
  49. Help Issue
  50. What is handle??????
  51. Fax application in C/C++ code on Windows
  52. Change text color on button
  53. DLL
  54. drag and drop icon
  55. Database Access
  56. Ole object field in MS Access
  57. VC++
  58. how to solve the resource limit of CFormView
  59. wav files
  60. how to get context menu
  61. how to access save function
  62. Debug a MFC NT Service.
  63. Base64
  64. CFileDialog
  65. Why can't I see my Bitmap
  66. RichEdit tabs
  67. ListCtrl multiselection drag
  68. GetLongPathName alternative
  69. connecting a data source at run time
  70. Remote or stand alone serwer launch
  71. How to use CLongBinary in MS SQL Server
  72. Dynamic menus...
  73. backgroundcolor of status bar
  74. Mouse pointer FLASH while run OnDraw()?
  75. how to Find item in listview?
  76. Windows NT Screen Saver
  77. How to change from auto-commit to manual commit ?
  78. How to add bulk record to DB
  79. ActivateTopParent() does not work under WIN98 HELP
  80. How to obtain SID in NT?
  81. NOVICE: List Control selecting a row...
  82. How workspace concept is supported in database access using Direct API calls ?
  83. Sending Keystrokes to applications
  84. void * into COleVariant(VT_ARRAY|VT_UI1)
  85. Standard AVI ?
  86. ActiveX control in ActiveX control?
  87. View full screen as in IE
  88. DDX_Control
  89. How to calculate a CRC32
  90. compound file that support the single-write, multiple-reader, direct mode.
  91. compound file that support the single-write, multiple-reader, direct mode.
  92. Mulitple Languages Option in VC++ Program
  93. URGENT: Log keyboard
  94. Toolbar
  95. Length of data to be sent.
  96. Clipping of child windows
  97. Proxy Servers
  98. How to activate the DispatchMessageRoute ?
  99. Where can I find info about how to create one CUSTOM CONTROL
  100. closing Excel 97
  101. System Image List
  102. Singleton
  103. ActiveX control to look like a caption window
  104. Virtual Classes
  105. Threads
  106. How to write CGI application?
  107. how to exit threads when ending a program
  108. How to programmatically install a printer driver?
  109. Format of a Windows Spool file
  110. Getting at the MFC sources
  111. Removing ActiveX controls from control bar
  112. How do I plot OpenGL into bitmap? PLEASE!
  113. How can I Get the IP of Modem?
  114. Limited number of instances on a network
  115. Is there a future for MDI ?
  116. CD-Roms
  117. Do u love reading?... multith-reading?
  118. Owner draw CListCtrl and Property Page
  119. Is upgrading VC5 to 6 really worth it?
  120. WM_GETDLGCODE message looping
  121. Creating dynamic array of character strings at runtime
  122. How do I capture OnSysCommand() in SDI MFC App
  123. Embedding muliple views
  124. Crystal Reports
  125. Pop-up dialog box in ATL application
  126. Menu
  127. Read file
  128. Dear Noam Ratem:File handling
  129. Displaying toolbars vertically
  130. Shortcut bar
  131. UDP Socket
  132. Setting Environment Variables
  133. CScrollBar control variation
  134. how do you convert a char* to OLECHAR FAR*
  135. classes on displaying graphics
  136. HighLite a List Control Selection
  137. Working code - would like someone to double check it for me
  138. Stop Esc Key from Exiting app
  139. how to click a tree item (not double click)to perform a task
  140. OpenFile Current Selection
  141. How to make window clear when scrolling
  142. Passing an Object as a parameter
  143. SP3 installation problem ! Please Help !
  144. How do I enumerate worksations...Urgent
  145. How to click a tree item(not double click )to perform a task
  146. Release vs. Debug
  147. Reading the Subkeys of an open key in the registry???
  148. Reading the Subkeys of an open key in the registry???
  149. Getting the data out
  150. Accessing other window contents
  151. Calling functions in VB app
  152. File Open Dialog
  153. Multimedia
  154. Createing a new View
  155. Network Detection
  156. Combining C and C++
  157. C++ tests
  158. C++ tests
  159. How to print listview item with doc/view but without using drawtext or textout
  160. CListCtrl
  161. Profiler in VC 5.0
  162. Set Cursor ..
  163. loops?
  164. Callback Function
  165. Shell Command?
  166. owner draw static control
  167. Using Windowing SendMessage between Processes
  168. Accessing an Access Database Object - Possible?
  169. CSharedFile::Detach problem?
  170. COM Ports above 9
  171. Internet Cache
  172. MIME type needed?
  173. Direct X & MFC
  174. Translucency in DirectDraw?
  175. About MS Word
  176. How do I run Profiler in VC 5.0?
  177. MFC and ODBC (a challenge)
  178. I LOVE C++
  179. Key repeating
  180. How to change tab order dynamically
  181. ::ExtractIconEx()
  182. Hex CEdits
  183. linking redefinition error (please help)
  184. Snmp API
  185. Local version of Developer Studio
  186. How do you use the UDN_DELTAPOS message???
  187. preventing screen capture
  188. Post Message problem
  189. Closing a CFormView App
  190. help me in COM programming
  191. help me in COM programming
  192. ADO and Class Wizard
  193. Changing the font in a multiline CEdit Box
  194. Buffer overflow in a CFileDialog derived class
  195. Dialog conflict between a dialog in DLL and a dialog in S/W using the DLL
  196. lock surface = lock machine?
  197. Help,About Wallet: Developing a New Credit Card Brand
  198. How to get list of files in a directory?
  199. Q:How to set the background bitmap
  200. Rich Edit
  201. Rich Edit
  202. Display an image in a windows program
  203. ActiveX Control Destructor is called , why ?
  204. How to create a DialogBox using CreateWindowEx
  205. Control inherithed from CWnd, how can I associate a resource ?
  206. can anyone show me how to use SetFont()
  207. CString
  208. IWebBrowser2->Navigate calls destructor of the Active Control - why ?
  209. ?ToolTip with TextCallback in CInitDialogBar
  210. VC ++
  211. How to get server time?
  212. Not getting registered
  213. Screen Resolution
  214. 24Bit to 16Bit
  215. Extension DLL
  216. remote shell
  217. Searching for information about CGM Graphic format...
  218. Context menu extention question.
  219. Getting rid of ODBC dlg box 2 (sometimes they're back)
  220. acess to frame data
  221. CListCtrl drop Item problem
  222. List control
  223. CRichEditCtrl - How to "GOTO TO LINE xxx"?
  224. Serialization
  225. convert float to chart
  226. Multi - Language application (VC++ 6.0)
  227. Win32 API program but use VC++ resourse editor
  228. UNINSTALLING FONTS
  229. Context help for DLL
  230. Visual appearance of Splitter window
  231. Q: How to embed a URL in a UI widget
  232. RTF 2 HTML
  233. Convert path-string to dos format
  234. Is there a way yo modify a CPrintDialog like you can a CFileDialog
  235. Socket data going to other IP addresses
  236. enable/disable close button
  237. create thread problem
  238. CRichEditCtrl and Pasting
  239. receiving CByteArray data
  240. LPT1 communication
  241. Where I can download the E-mail Bomber's source by C
  242. MFC-programming/Child Windows
  243. Adjust System dialogs to my needs
  244. Bitmap Color
  245. How to get a pointer to bitmap resource's data ?
  246. RemoveFolder
  247. Urgent: Auxiliary Input Control
  248. comma seperating statements
  249. MDI child w/ a menu
  250. How do you use the Windows Override AttachOnSetup, used when modifying a setup CPrintDialog