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. Windows utilities in C
  2. Preventing the ExitProcess function to kill the process
  3. How to print MDIFrame
  4. Uploading a file..
  5. !! ADO
  6. Binary Trees and Iterator operator ++ ()
  7. CScrollBar inside DialogBar
  8. MFC Bitmaps
  9. can't register component
  10. SetPixel
  11. Registry
  12. SetPixel()
  13. CanUpdate() Passes but process fails
  14. Screen parameters
  15. Backgrounds
  16. GetFtpConnection call fails when rasapi32.dll is loaded
  17. How to Fax in VC++
  18. Window close
  19. Retrieving list of files at www. address
  20. GetOpenFileName
  21. OLE DB with SQL Server
  22. Can I create a Menu Bar in IE 4+ with an ActiveX control?
  23. Telnet
  24. Very urgent (ODBC+Java)
  25. Simple Graphics in C (not C++)
  26. link error...
  27. Conversion
  28. dialog box
  29. Using ATL to Implement Sink
  30. Sizable Thin Borders
  31. button control in Active X
  32. OK For all interested in MFC bitmaps!!!!!
  33. Java Applet
  34. Moving the split bar between two splitter panes
  35. Getting filenames of files on internet
  36. Heapsort
  37. A socket based app delays too much the first time...
  38. Automation in a working thread
  39. Linux -> Win32 porting
  40. Multiple fonts in an edit control
  41. Multiple fonts in an edit control
  42. Help with time needed
  43. Converting to a 256 .bmp
  44. Setting Large Binary value in registry
  45. Setting binary values in registry
  46. animate tif.-images?
  47. Init code should be put where?
  48. ' in query and CListCtrl->FindItem
  49. MFC CView and Scrolling
  50. infile.get/ cin.get question
  51. Page Preview
  52. Couple Question about Compression, Encryption, etc..
  53. How do I know if a process is up and running?
  54. Application Icon
  55. how to save richedit content in custom format?
  56. Internet expert...Help help please .......
  57. How to Override Invoke function?
  58. backward compatibility of ocx controls
  59. randomize
  60. ODBC DateTime problem
  61. MFC Beginner - CRecordset Troubles?
  62. about web browser control
  63. How to free up my resources??
  64. Finding Exe's on a remote computer
  65. HELP!!! post data with Netscape
  66. RichEdit in PropertySheet
  67. VC Editor Problem !
  68. V-Tables Info needed
  69. Registry
  70. Failed to create empty document
  71. webbrowser without IE4.0
  72. Text color in a file
  73. How to handle the message maps in a dialogbox, Urgent!!!
  74. get data from netscape
  75. View Source Code
  76. Does crystal report fech data directly from DB?
  77. What is this error about
  78. Outlook-Style
  79. Assertion Error
  80. PagePaintHook
  81. Populate a TreeCtrl in a Docking window
  82. API listbox
  83. Mouse Event
  84. pop-up menus
  85. Button
  86. Fireing event from worker thread
  87. pb with string and dcom
  88. RTF document printing
  89. What is multicast??
  90. CWebBrowser2 get html text
  91. Default button && CPropertyPage
  92. How can i change CEdit text font?
  93. Populate a TreeCtrl in a Docking window
  94. How to map a message to a non app wizard created class?
  95. Drag & Drop
  96. MFC Toolbars
  97. Select statement always fails!
  98. Can'nt Find Infoview Tab In Workspace Bar In VC++6.0 MSDEV
  99. Hook chaining
  100. Rectangle Function
  101. ATL Getting Owner's Window Handle
  102. Project Settings in Microsoft Visual C++
  103. Toolbars
  104. Error in Linking
  105. Various views associated with a window at the same time
  106. More than one view associated with a Frame Window ????
  107. Pre-compiled headers
  108. Sibling Item ?
  109. How to hide a scroll bar ?
  110. put a new this pointer in CClientDC object
  111. IE + NN Plugins
  112. VC++ - New button in the Title bar - How To?
  113. CreateFont() function. How to colorize a text?
  114. Creating Header files
  115. Using DCOM over Networks
  116. How should I draw graphics?
  117. SPEECH RECOGNITION MICROSOFT
  118. Possiblilty to supress new Hardwarefound
  119. Display matrix of bytes?
  120. Slider and Buddy Edit
  121. vector
  122. DirectX Help
  123. Serial communications under WinNT
  124. CSocket Problem !
  125. Scandisk (a:)
  126. Keyboard Input; WM_KEYDOWN
  127. _filelength
  128. Dynamic array of structure, is it possible ?
  129. Browse dialog
  130. SELECT statement in Access via MFC
  131. MSFlexGrid datasource
  132. SetCaretPos
  133. Problem with the display of a bitmap in a property page.
  134. How to include one ATL dll into a visual c++ project
  135. GetUserName
  136. Working width different time-zones.
  137. Default CListBox.Create(...) when calling OnInitialUpdate( ) within CFormView???
  138. How can I have a lass control?
  139. Fill In <TEXTAREA></TEXTAREA> Value In A Web Page From an MFC App?
  140. ExecuteSQL and BLOBs
  141. PageSetup and Envelopes
  142. What's the best way of displaying and dragging text on a CView?
  143. Help!! with CDaoRecordSet
  144. AVI files to Bitmaps
  145. CRecordset and ODBC 3
  146. Using CAsyncSocket
  147. Design Issue - Public/Private members
  148. Messaging
  149. How to set background color for specially line in CRichEditCtrl?
  150. How can I display CHINESE characters
  151. MFC: How do I change the standard Ready Message
  152. List box's parent window???
  153. CFormView problem: resizing mainframe to FormView size
  154. Calling COM Object's Parent's Methods
  155. Non-incremental linking busted?
  156. CTime
  157. How to highlight selected item in TreeCtrl
  158. Direct Draw in Windowed mode
  159. Help! Linker problem...
  160. How to create a TextBox?
  161. Re: Passing messsages to and calling user defined functions in Wizard from CView
  162. Please Help with Help
  163. How can I get a handle on my vertical scroll bars? (hwnd)
  164. !! Binding CDaoRecordset
  165. RecordUpdate
  166. Views & frames
  167. toolbar bkg
  168. Messaging a parent dialog
  169. Rich Edit in a property page--HELP!!!
  170. DCOM and Windows2000
  171. if statement failure!!
  172. CoCreateInstance and CComPtr
  173. ADO (or OLE DB) records insert from a tabbed tex file
  174. DirectDraw - what are clippers???
  175. Auto Scrolling CListBox
  176. Somebody help!!
  177. CListCtrl and Images
  178. CFileDialog and toolbar
  179. Automating DevStudio W/ C++
  180. ListBox
  181. ToolBar Buttons
  182. Get control over an CStatic text from an other Window
  183. memory leak
  184. Get control over an CStatic text from an other Window
  185. MFC window properties
  186. Multiple Selections in a List Box
  187. CreateProcess() and GetExitCodeProcess()
  188. DestroyWindow()
  189. Disabling Menu selections
  190. Colors
  191. Active Modeless Dialog
  192. Help menu
  193. Debugversion of new crashes outside the debugger!!!!!!!
  194. Dialog exit when I hit enter
  195. Create object derived from CObject?
  196. CSplitterWnd
  197. ATL Data Access Consumer
  198. ReBar
  199. How to use multiple monitors in W2K?
  200. CreateInstance.. It's always NULL!! Why?
  201. Declare function
  202. smart tree item right-clicks.
  203. about scrolling text
  204. How to control these function
  205. Append text to a CEdit control
  206. ReadDirectoryChangesW() drops events?
  207. CSocket Problem !
  208. FTP
  209. non-floatable toolbar
  210. Performancemeasuring ActiveX objects
  211. Access permission on WindowsNT
  212. Playing non wav files
  213. Trying to make a static control to look like a button
  214. load data
  215. Windows NT Hardware programming (Paralell Port) : How?
  216. Win32 MDI appln
  217. Create a modal dialog without making the app active
  218. c++
  219. How to create link as in the internet explorer?
  220. Get, Set data in register
  221. Repeating a function over untill a certain condition is met.. could I use a callback function??
  222. ShellExecute() - what's possible?
  223. Property Sheet. How to add a button?
  224. Creating combobox dynamically
  225. SUBST
  226. Error message
  227. Disabling second instance
  228. CBitmap
  229. How to create a link like in the Internet Explorer?
  230. Use multiple databases in one program
  231. install
  232. DCOM Error
  233. How to zoom the screen in VC++ 6.0
  234. drawing object?
  235. Implementing Help on PropertyPages
  236. ODBC and SDI
  237. Anyone know how to communicate with a PS/2 device?
  238. ListView Control
  239. A finder Tool code like in Spy
  240. How to define several owners for a single object/class ?
  241. how to avoid repaint effect in VC++ 6.0
  242. What is this error about?
  243. 3D Terrain Representation & Visualization
  244. Call OnInitialUpdate() manually???
  245. COleDataSource
  246. Print MSChart
  247. Save without Save-Prompt using Serialise() !!!
  248. Convert BMP to JPEG
  249. How can I get a local coordination of a sketch stroke?
  250. serialize an icon