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. Get rgb pixel values independent from device
  2. using different files in one project
  3. User input !
  4. Routing combo-box messages from toolbar to the frame to the view?
  5. [RESOLVED] Every body please help
  6. Getting Your Application's Directory
  7. Is there a system CopyMemory for ULONGLONG size?
  8. GetDriveType Problem....
  9. My registered activex control is corrupted or missing.
  10. Win32 Service doesn't work arghhh
  11. How to create an annotation
  12. Clear Back ground
  13. Cross application process handle
  14. CFileDialog
  15. DLL explicit linking problem
  16. Bluetooth pairing
  17. How to have different sized icons in same imagelist for Toolbar
  18. Manual adding controls
  19. Converting a large application to use Unicode
  20. How to change place of activex control at run time
  21. Default Debugger
  22. Changing Menu items appearance at Run-Time
  23. How to have multiline...
  24. unfound component
  25. Strange Debug Assertion Failed error
  26. Install internet explorer BHO
  27. Simulate a 7-Segment LCD...
  28. CSplitterWnd manipulation
  29. Get returned value from exes
  30. C++ and C# Combination...
  31. CDatabase Question
  32. Where does this link point to?
  33. Handling Large Files
  34. Thread vs Process
  35. Same subfolder name in workspace
  36. Dockable Menu Bar??
  37. Moving a bitmap
  38. Please do me some help.....
  39. To provide Checkbox
  40. How to Get messages for a checked Item
  41. the time in each function
  42. Code for Vista's UAC
  43. Trouble with Comm ports.
  44. STL issues with sort()?
  45. Resource file compiles when it should not
  46. Tooltip on button in a dialog box
  47. Blocking COM object and worker thread.
  48. MFC and VC++ 2005 express edition.
  49. tab control problem
  50. mouse events for menu items
  51. Wifi Signal Strength using C++
  52. How to "associate HTML file" with a folder?
  53. Get Application Path Directory
  54. How to interact with IE7 tabs? Please help...
  55. show or hide a button on IE toolbar
  56. To Calculate the String length in Pixels
  57. GDI+ without MFC
  58. [RESOLVED] displaying double value
  59. CMenu not found..
  60. Resizing Isuue with two bitmaps to be loaded on the same control
  61. Starting Grid!!!
  62. Assert failed
  63. [RESOLVED] Writing in a file
  64. Print does'nt work but preview does
  65. [RESOLVED] Resolve merge errors
  66. How do I create a virtual serial port?
  67. Text is RTL or LTR
  68. Dynamic Allocation of Memory
  69. Dockable Menu Bar??
  70. Embedded Excel Problem
  71. Capturing a portion of a window as bitmap
  72. vc++ with strings
  73. Searching a word doc
  74. Including "limits.h" in .idl file (VC 2005)
  75. How do I make an executable from my MFC program?
  76. Getting all user tokens
  77. App workin with Database, please help!
  78. Custom Cursors - No DropShadow?
  79. DirectX and Visual Studio 2005
  80. Failure - Installing embedded Visual C++ 3
  81. [ASK] Wav player on visual c++
  82. How system updates input languages for processes created before input language change
  83. KillTimer : welcome screen
  84. weird characters
  85. Visual C++ V8 Debugger not working
  86. #include winsock not fount
  87. Can you help us in this open-source game? (C++)
  88. Redraw Child Windows in ActiveX Control
  89. How to get pixel color without getPixel or BitBlt?
  90. How do I find keyboard 'devide identifiers' list for LoadKeyboardLayout() function ?
  91. Structure of MS Help 2.x *.HxS file?
  92. MSXML Parser didn't work well. What is problem?
  93. How to create a New Folder through MFC
  94. How to convert date formate
  95. OLEDB + Date
  96. Win32 Console vs Win32 GUI
  97. "Turn Windows Feature on or off" in vista
  98. passing pointer from DLL(VC6) to APP(VC8)
  99. help with LNK2019: unresolved external symbol errors
  100. Break points are not working properly
  101. Loading multiple projects into workspace
  102. How to extend the scrollbar?
  103. Unicode version choice
  104. Passing information held in one tree to another
  105. CBitmap::CreateCompatibleBitmap and LoadBitmap
  106. Dynamically calling variables
  107. SideBySide application fails to find mfc dll
  108. Inherit and overwrite const variables
  109. makefile project
  110. MFC & WM_APPCOMMAND
  111. [RESOLVED] Detect Maximizing/Restoring of MDI child windows
  112. How to insert a .msg file into a word doc..
  113. Hello World
  114. How to convert CStringW to char*?
  115. Spoofing HTML settings in a SWF ActX obj
  116. system32\cmd.exe taking too long to load file
  117. convert mpg to avi error in directshow
  118. GDI/DC Issue
  119. EVC3 - Minimize windows
  120. function call (.lib, mfc)
  121. Vista & SetWindowsHookEx
  122. Memory Leak loading Bitmap
  123. Read from excel file
  124. Vector, object, pointer
  125. Terminate mfc application
  126. Sendkeys problem
  127. How can i create multiple views using a single document class?
  128. Namespace extension Default Contex Menu
  129. CFileDialog
  130. Using Static Control
  131. ODBC Driver Configuration Dialog
  132. Get cookie from url?
  133. Dialog box
  134. Help with ActiveX needed
  135. How to Pass Values from HTML to ATL ActiveX Control
  136. Assertion error
  137. what is wrong with this code?
  138. How to get total CPU usage under VISTA
  139. Where to move Controls?
  140. ComboBox: Detecting text editing
  141. CDialog and message loop
  142. Changing test on title bar
  143. structures as arguments
  144. Opening multiple files in an MFC dialog application
  145. Popping dialog app from system tray
  146. Delete file
  147. [RESOLVED] WM_" " that handles on dialog open?
  148. [RESOLVED] MDI - Maximize views - Remove buttons
  149. Method for updating a progress bar?
  150. How do you set thread speed?
  151. [RESOLVED] Link Errors...help!
  152. MFC View MainFrm in an SDI
  153. Microsoft Visual C++ 2005 Express Edition
  154. Recording Sound
  155. Socket programming
  156. a pop up saying an executable file is terminated
  157. window in an Win32 Service
  158. CListCtrl SortItems
  159. Regarding export.mdb file
  160. RTP Directshow Filters
  161. Detect Firewire Devices
  162. Microsoft Excel 2003
  163. One project referring to another project!!!
  164. Trace, Verify
  165. How to make an application for uploading a folder
  166. Help: Media seek in directshow
  167. Mouseclick falling through File Selector
  168. I don't understand wt is lvalue and rvalue
  169. Direct X help.
  170. Recordset without Database
  171. ActiveX help needed
  172. DayLight Time Savings Change Notification
  173. Get selected item from tree control
  174. dynamic 2d arrays
  175. office programming
  176. Customizing file type combo box in CFileDialog
  177. Sharing an INI file causes issues? [VC++6]
  178. c++ help
  179. memory leak problem n my code?????
  180. Program crashed with event viewer log
  181. build SDI app from dialog based source
  182. about map mode!
  183. CreateProcess
  184. Sorting in Tree
  185. HFILE Vs FILE
  186. how to use shellExecute to open an html file
  187. explorer style mfc application
  188. DLL creation
  189. TVINSERTSTRUCT problem
  190. about map mode!
  191. problem with WMI
  192. Is it possible to write interface implementation by CLSID?
  193. CString array problem
  194. Array Declaration problem
  195. How to open multiple project in MDI?
  196. How to open the specific file in my application?
  197. _initterm problem
  198. Menu problems
  199. How to add buttons dynamically on toolbar
  200. Modal Dialog does not get Focus
  201. creating window
  202. prevent re-runs
  203. mfc80.dll, msvcr80.dll
  204. [RESOLVED] AfxWinMain pThread==NULL
  205. Ethernet Programming
  206. stange simple programming problem !
  207. Printing huge shelf layout
  208. How to get NIC driver and resources Informations
  209. Compile Problem VC++ 5.0
  210. ssl sample or concept
  211. some concept or sample code for sftp
  212. Internet Explorer - Hooking Help?
  213. Vector with pointers
  214. [RESOLVED] MDI buttons in menubar
  215. System Tray without Dialog(form)
  216. Translating an App
  217. problem with tinyxml in visual c++
  218. How to Debug with VisualStudio 2005
  219. can't get pin category property
  220. Macro problem
  221. can I have 2 message queues thread?
  222. Set background image for tree-view control...
  223. Remote Transient Subscriptions
  224. error C2065: 'GetIDispatch' : undeclared identifier
  225. command line compilation
  226. Derived CStatic override of OnPaint - Is text selection possible?
  227. DrawText : Output letters overlaps
  228. Copy contents of List view
  229. COM problem with AFX_COMDAT
  230. help getting browser window title
  231. Protected member access problem
  232. help using AfxConnectionAdvise
  233. hough transform... C++
  234. Pointer to member functions in VS C++ 2003
  235. why worked in IE6 and why failing in IE7? Please help !!
  236. domain/workspace lookup
  237. Strange behaviour in different environments
  238. How to get the filepath?
  239. Filling up a 2d array with predefined arrays
  240. Problem in accessing the protected datamember
  241. help: IAMStreamControl StartAt() doesn't work
  242. Basic .exe help please :D
  243. Address
  244. easy quiz question that I donno...
  245. Closing several ui threads together
  246. what abou #pragma?
  247. problemin accessing Access db using ODBC
  248. Strange If / Else Statement Problem
  249. Random text
  250. Problem with record I/O