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. Change The Width of a Window
  2. File time and consistency between file system
  3. desktop window
  4. Is pointer safe?
  5. How do I add an existing class in Visual Studio?
  6. In MFC - Given a Path - How to find out if the folder in empty ?
  7. How can I test an Object to see if it already exists?
  8. How does MFC framework keep the file name?
  9. windows Beep() insync?
  10. Adodb
  11. the file can't be opened immediatly
  12. Keyboard layout
  13. Problem in accessing class view on Visual studio
  14. How to convert VC++ project to a distributable exe ???
  15. iphlpapi.h & iphlpapi.lib ???
  16. Help with SendMessage()
  17. Processing messages in long loops
  18. Help with help
  19. ascii to hexa conversion
  20. How to define a hot key for buttons on dialog
  21. Stack Frame
  22. How to change persisted properties inside ATL?
  23. Can I prevent people of debugging my code?
  24. Data type to string
  25. Flyout Toolbar
  26. Converting console application to MFC-based dialogue
  27. Help! Where's this assertion?
  28. HELP! Keeping a CWinThread alive!
  29. Getting a double value from the dialog
  30. call dll function from within VC++ dll
  31. How to draw over contros?
  32. Question for underdog about EnumWindow????
  33. CMD help !
  34. the exit/quit (x) button
  35. Passing arrays to DLL's
  36. TreeCTrl / Hide Children
  37. ControlPosition an Scrolling
  38. Checking mouse
  39. Limitations with virtual functions?
  40. Windows resize limits
  41. Why use the param of CDC* in CreateCompatibleDC(CDC*)
  42. About MSFlexGrid -- Cell/text color values
  43. Excel-like string-double/double-string conversions?
  44. Problems with progress bar
  45. How to extract from char?
  46. 2 Questions
  47. getting a pointer to document with in a dialog
  48. Problem using Itunes SDK in screensaver
  49. CreateFont
  50. problem with decryption
  51. Change Tab Length
  52. Annoying build warning with CList::SetData
  53. Copy Dialog
  54. How to add control on a Button?
  55. How To Play A Encrypted Movie?
  56. ONSize()
  57. How to use a COM component
  58. "many To many" proxy, HELP!!!
  59. ComBoBox Question
  60. CreateProcess
  61. Read RAM of my computer
  62. Ascii to Binary....
  63. Rid program of level 4 warnings
  64. File creation problem??
  65. Bitmaps
  66. difference between using an activex control and creating & using an ATL control
  67. Bitmaps
  68. prevent exe file from running
  69. COM in MSDEV 6.0
  70. SqlSetPos
  71. Use of extern "C"
  72. Hook HElp
  73. COleDateTime - CTime
  74. Applying resource limitation to a specific process
  75. debug assertion error
  76. Class members not visible...
  77. Static Control
  78. Transparent background in CWnd
  79. Finding Row & Column
  80. Fast CStatic counter
  81. IHTMLDocument + DOM problem ?
  82. Minimum size of window
  83. systray icon
  84. String tokeniser for C++
  85. How to create a bitmap from the text that user typed?
  86. CListCtrl and maximise problem
  87. CTreeView & OnRButtonDown
  88. changing the edit control background color
  89. Tree view problem
  90. RichEdit Control
  91. Disable/enable camera on USB port
  92. problem with property sheets
  93. Help, I've painted myself into a corner!
  94. Control Active/Focus Problem
  95. Error loading type library
  96. ADOX and Access97
  97. Font help?
  98. CPageSetupDialog and paper orientation
  99. How to output an int from an AfxMessageBox
  100. Spedia bar
  101. DLL or EXE
  102. Colors
  103. screen capture to a jpg
  104. Rich Text Controler
  105. Close ChildFrame at OnInitialUpdate();
  106. Search Files (*.txt) in a Folder from MFC project
  107. How To Play An Encrypted Movie?
  108. How To Protect the Movie Created Ourselves?
  109. is there any cplitterwindow class that can contain more than 2 rows
  110. Wierd Class problem
  111. Graphical Equalizers Independent of any Format
  112. C++ problem,simple one
  113. CpropertyPage Initialization
  114. dll not registering
  115. Problem With Interface DLL (ATL/COM)
  116. reading a text file...
  117. printing the file length
  118. how to execute a local app using http and send parameters to it
  119. Rich Edit
  120. CStatic with own font on a CDialogBar
  121. fast serial transmission (COMMTIMEOUTS) URGENT!!!!!
  122. Link Text in Rich Edit Box
  123. CTreeCtrl Hide Item
  124. Localisation of MFC application
  125. stupid C++ question
  126. Creating a new window within a function (Part II)
  127. How do I get Hardware Information in MFC...
  128. how to register an app to a xxxx:// like ed2k does
  129. URLDownloadToFile + maximum waiting time
  130. First chance exception
  131. Class Declaration
  132. How can I Update a PropertyPage before calling DoModal()??
  133. ActiveX control method fails
  134. crashes on Release
  135. MFC VS Java
  136. Dialog Pointer
  137. record keystrokes ?
  138. Database connection...
  139. ex aequo algorithm
  140. GNU getopt for windows
  141. small question
  142. DHTML control(VC++7) fails in Win98
  143. Doubt in Filter Driver!
  144. How to hide menu in SDI
  145. Hooking another application
  146. Mutual ON_EN_CHANGE
  147. Bitmap & MM_LOENGLISH
  148. debug assertion
  149. ActiveX Mouse events
  150. List Control - Icon disappears
  151. Reference to main window
  152. Drawing over controls
  153. Download files from Server
  154. Videosoft FlexGrid
  155. How to use dynamic Memory i.e new Operator
  156. Debug assertion failed
  157. Bitmap upside-down
  158. ShellExcuteEx
  159. #ifdef/#endif Compiler error
  160. spreadsheets in VC++ dialog
  161. properties
  162. Error in mlock.c: Where to get more information?
  163. question about _beginthreadex and handles
  164. memory manipulation for doubles
  165. Excel Spread sheet data linearization function in C++
  166. activex control does not load fully when hosted in IE
  167. strcat Equavalent in CString ???
  168. jpg
  169. Need some advice/help
  170. CTreeCtrl::Can't InsertItem after DeleteAllItems
  171. How to access a Tree control in Form2, from Form1 ?
  172. Help in writing directshow filter
  173. MSFlexGrid (again) -- How to "insert" new rows/cols...?
  174. cast _variant_t type into CString
  175. Packet the c source code to library
  176. Interesting Small Query
  177. Ms-access Security
  178. How to create a multicolumn list box ?
  179. code commenting issue
  180. How to create a SDI-App with CHtmlView?
  181. how do I send parameters from my html web to my local app?
  182. How to disable dropping text to w word doc?
  183. Edit control CTRL + C for copy and CTRL + P for paste.
  184. free allocated memory
  185. redirect console output to me
  186. How to change style of combobox?
  187. how to access view's member variable from the dialog initDialog func
  188. Close console ?
  189. CFileException::sharingViolation
  190. Limit Dialog movable area
  191. if i function looks like this:char *func() const,what does the "const" means?
  192. Redirect output
  193. ASSERTION on CListCtrl's SortFunc
  194. ATL COM+ dll
  195. Download problem
  196. Starting Excel
  197. DLL with resources
  198. List control
  199. Outlook Programming: m_spApp.Release() Crashes
  200. CreateDirectory and SECURITY_ATTRIBUTES
  201. Getting the Library version number of VC++
  202. MFC-Way to read UNICODE files
  203. Exception Handling
  204. Never seen such an error!
  205. any functions to search within files ???
  206. Lifetime of HBITMAP
  207. Databases and C++
  208. Brackets???
  209. how to do this with rects...
  210. Wrinting into file
  211. OpenGL
  212. saving an excel file from MFC
  213. DLL tutorial ????
  214. **PLEASE HELP!!** COM and Outlook 2003: How do I get rid of this dialog?
  215. Strange Spin Control Behavior
  216. Strange List Control Behavior
  217. Accessing a web service from a VC++ application
  218. Looking for an example
  219. #include problem, and another
  220. Modalless Dialog box from a dll
  221. COMException when using multiple threads
  222. How to generate *.txt files from a MFC Program
  223. Dynamically size combo box
  224. MSDN documentation sucks
  225. using OnFileNameOK()
  226. Call back not working for Outlook Add-in
  227. Bulk Row Fetching with CRecordSet
  228. Including ActiveX in a Visual C++ project
  229. stuck, app crashes in release
  230. How to check if file on internet exist?
  231. MFC program out of control
  232. dll
  233. Don't work EM_SETCHARFORMAT
  234. Serial Communication with HEX Data
  235. how to make my ActiveX control be downloaded and registered?
  236. Problem with help
  237. anything wrong with this C++ Class??
  238. Delay when activating a child window by clicking titlebar, no delay in client area
  239. Extract preview image from powerpoint template
  240. dynamic append menu item
  241. fread() with excel and powerpoint files
  242. Printing HTML with out header and footer info
  243. Password in Internet Explorer
  244. Debugging Techniques
  245. Hyperlink
  246. Question about projects and workspace
  247. Active Document - pls help
  248. deleting singleton object
  249. onMouseMove Problem
  250. MSInstaller