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. associating file types with my program and more!
  2. Strange compilation behavior
  3. Help with frame resizing and HTML View
  4. Reading BMP file pixel by pixel
  5. Control state-specific ActiveX initialization
  6. Classes In A DLL
  7. Problem with changing button texts of the print preview menu bar
  8. Setting a static frame
  9. MediaPlayer GetVolume() does not work.
  10. Component id of COM server
  11. PlaySound with Aliases
  12. Window Styles
  13. CDialogBar
  14. Problem with "CArchive" usage.
  15. Show check box in a list view control
  16. handle vs pointer
  17. problems using old c++ headers, STL with MFC
  18. Change the Class Name for MainFrame Window
  19. How to resolve DDraw.dll Error
  20. Passing value of a variable...
  21. I have to ask, no offence please! (Printing)
  22. Winsock 1.1 on Windows 98
  23. Auto Resized Objects in CFormView :: MFC
  24. silly question, how do u import a lib?
  25. Passing the string from one docView to another
  26. draw on top of a button...
  27. hardware access
  28. Callback function issues
  29. how to control a line printer with vc++???
  30. Validating input
  31. 2 questions(Tool tip & Menu Prompts)
  32. Load Bitmap from bmp file in run time
  33. Question about CControlBar
  34. how can i make my application disappear from taskbar?
  35. cant find WM_SETFOCUS...
  36. File Read
  37. CFormView and CTabCtrl :: MFC
  38. How to copy data within first text file to second text file (use CStdioFile)
  39. c Program Analyser
  40. basic question on File handling
  41. Connecting DOS To network?
  42. Drawing to the Desktop window
  43. Registry in Windows 98
  44. Calling MS Word document from my application
  45. Array reading a two-demensional table?
  46. how to add my exe before Windows2000 logon?
  47. problems with daylight saving time change file times
  48. ActiveX in ATL
  49. How to identify a modal dialog
  50. to convert MFC .exe to .dll
  51. Atl
  52. Atl
  53. TrackPopupMenu !!!
  54. Problem with GetNamedSecurityInfo when Pathname length exceeds 221 characters
  55. Problem with GetNamedSecurityInfo(security sdk)
  56. Please help me! Thanks!
  57. how to resize the custom view class?
  58. Office XP Toolbar Hover
  59. The Windows Media Player ActiveX Control : MSDXM.ocx
  60. Debug version dll name
  61. Open MS Word document from my Application without using MS Office
  62. Tape Backup
  63. How to abort a OnOK function before it finish.
  64. conversions problems
  65. about system icon
  66. Access 2000 database and password
  67. How to give connect to web link from application
  68. MY ODBC driver
  69. map basic concept
  70. language selection
  71. How do you get Outlook PAB file path programatically within c++.
  72. EnumFontFamiliesEx and callback function?
  73. Class Access in Visual C++ Pointer to Member Operator
  74. [RESOLVED] Windows 95 System Programming Secrets by Matt
  75. How to prevent data in database from being stolen?
  76. ATL control doesn't register (0x80040154)
  77. onchar command in an edit box
  78. Store data in an Excel Spreadsheet
  79. Difference between WM_DESTROY and PostNCDestroy?
  80. Exporting functions...
  81. Help with WebBrowser controll object
  82. How to insert data to the top of exist text file?
  83. _com_smartptr_typedef / Dll
  84. Dialog control error messages in Japanese
  85. dhtml and setfocus()
  86. CBitmap -> HBITMAP
  87. can't create dialog from dll.Please, help!
  88. CImage
  89. An easy question
  90. CDragListBox overrideing droppd function
  91. Resizable dialog
  92. CWinThread calling a DLL to create dialog allways fail, Why?
  93. CString::Replace warnings
  94. Sample source code for doing voice over IP
  95. Button click event won't take parameter
  96. CALLBACK function, getting error:
  97. Visual C++ help
  98. CEdit Validation
  99. missing export GetLongFilenameA
  100. Minimum Windows Size (CFormView) :: MFC
  101. How would I go about doing this?
  102. auto scrolling???? Help me, Please! :)
  103. First Chance Exception using CPropertySheet
  104. How to get network bytes sent/received info
  105. Animated desktop backgrounds
  106. Using 16bit Borland dll with VC++ 6
  107. Catching BN_CLICK through the ON_CONTROL_REFLECT
  108. Slider Control question
  109. AVI Animation
  110. Closing application...
  111. Named Pipe communications
  112. Retrieving Bios Settings from Windows
  113. Selecting a directory
  114. I need to write a web cam like program?
  115. OnPaint Problem
  116. How to resolve IP Address for a known MAC Address ?
  117. CPropertyPage
  118. Debug problem
  119. CDialogBar question
  120. Trustbridge?
  121. AfxMessageBox
  122. New project problem?
  123. delete CObArray Issues
  124. [q] hardware acceleration ?
  125. CRecordSet and m_strFilter
  126. dialog based ?
  127. Non client area painting
  128. Porting Win32 Code to MFC
  129. Windows CE Visual Basic Toolkit or eMbedded Visual Basic?
  130. char* to LPCWSTR conversion
  131. how to resize the view in the childframe
  132. makefile to dsp : problem at build
  133. embedded objects
  134. installer of VC++ application ?
  135. Display multiple line data in list box/edit box?
  136. private or public or what?
  137. Sharing Physical Memory
  138. Sharing Physical Memory
  139. Owner Draw Menu
  140. Get handle to current window from an include file
  141. error in kernel32.dll
  142. Lossless streaming compression algorithm
  143. AfxMessageBox in Dialog App when dialog is gone
  144. Am I just tricking myself?
  145. Splitter View
  146. new & realloc. a lethal combination:(
  147. Does Access databases support SQLFetchScroll?
  148. Add new hardware through program instead of "Add new hardware"in ControlPanel?(Win98)
  149. My experiences with CAsyncSocket (totally bugged)
  150. OnMenuChar
  151. a problem with a memory allocation
  152. How to know which domain my computer belongs to??
  153. Size Of A Sql Server 2000 Databse
  154. Creating CImageList
  155. Gdi++
  156. Tricky question about the CFile object
  157. CreateThread. How to pass parametre
  158. print an *.ini file
  159. Expression breakpoints
  160. Start and stop an application from program
  161. Why the item text of treectrl will disappear ?
  162. domodal 2nd time fail!
  163. weird pointer thing
  164. Problem obtaining audio CD position under XP
  165. annoy flicking number...
  166. Printing from a CWebBrowser2 control
  167. To know file path of explorer
  168. Unselecting item in CListCtrl
  169. How to tell if a file is open
  170. How to DEBUG A DLL
  171. Strange problem !!!
  172. OpenPrinter(), StartDocPrinter(), etc... Qustion about using?
  173. CComboBox
  174. Mulit Thread - Simple Example - Big Problem
  175. Disable a row in CListCtrl?
  176. How to convert binary data to UNICODE string
  177. Pushpin in Propertysheets
  178. How to add new Activex Control to my current project?
  179. Can someone help me with this string manipulation?
  180. How to store the contents of SDI into BMP-File
  181. Initializing ActiveX enumerated property types
  182. Network Slowdown when Window is visible
  183. MFC - Communication between Dlg and Objects
  184. COM - how many clients connected ?
  185. Passing LPVOID from DLL to EXE
  186. vector: how to get the index?
  187. Update button style in toobar
  188. how to retreive extended properites fro listview URGENT!
  189. CChecklist in formview
  190. LPTSTR to TCHAR[]
  191. Custom Form
  192. I need an mxn array! Please help!!
  193. Mmc - regsvr32 problem
  194. CFileDialog
  195. Sqlserver 2000 ldf file ??
  196. Persisting Active X Properties
  197. Window Deactivation
  198. how to compile in UNICODE mode for MFC wizard produced dll?
  199. Installing Visual Studio 6 and .NET as a server application ?
  200. How to check duplicate line in text file?
  201. Change bit depth of a non-primary monitor
  202. function in dll processing mouse input in client
  203. Menu in the Title Bar?
  204. WaitForSingleObject
  205. what the heck is a callback function?
  206. MS Web Browser Control
  207. communication
  208. GetFileAttributes and network folders
  209. Combine 2 CBitmaps into 1 bigger CBitmap
  210. #pragma warning (disable: 4390) doesn't work!
  211. capture active window
  212. drag file on exe
  213. Strange error on a CFormView
  214. clist memory leak
  215. Sound problem about ATI TV Tuner
  216. Problem with Frame Minimizing at start
  217. edit box activation.deactivation
  218. postmessage to another instance of my app?
  219. Getting Length from void*
  220. How to convert from SYSTEMTIME to tm
  221. How to load whole file to a CStringEx object ?
  222. Dynamically Creating Controls.
  223. Overlapped I/O and Completion Port :: Winsock
  224. Protection of images
  225. Send key to other program
  226. how can i create alpha blending for only a portion of a dialog or view?
  227. New thread VS timer callback function.
  228. how to get the Hander of IHTMLMetaElement in CHtmlView or IWebBrowser2 ?
  229. Multi-threading
  230. Very Strange!The word said "Not enough memory",when I was doing DoDragDrop operator.
  231. Why must View object return a const reference to its control?
  232. installer for evaluation/personalize version
  233. mutex
  234. linking problem with NEtApi s
  235. how to use CRectTrack to show the selected range?
  236. Can anyone give me some ideas on how to use IHTMLMetaElement?
  237. Question about Twain32 and EXIF
  238. On DDE technology
  239. import problem
  240. Failed to create empty document
  241. Anout DLL and Exe
  242. Change background color!!
  243. Creating centerable multiline CStatic
  244. Static MFC Problem
  245. Apply Button Does Not Get Activated In Property Sheets
  246. dup() fails for stdin, stdout and stderr on Windows 98
  247. put numbers in calculator
  248. how to send mail
  249. Raw socket not along
  250. How can I make a Tab control contains other controls placed over it