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. How to remove hot-key property?
  2. Lpctstr
  3. TreeCtrl with ProgressBar
  4. Setting scanner default event in registry
  5. using Microsoft CryptoAPI in C#
  6. Mfc Program
  7. Resetting savefile title to default
  8. running thread on specified core
  9. VC++ 6.0 How define tooltip in Client Area
  10. Desktop Widget
  11. Diffrent results reading text via local or webbbased file??
  12. creating a static control on the fly and who is the parent!
  13. Class Design
  14. Libraries problem?
  15. image encryption
  16. Window Caption
  17. Text file problem
  18. How to authenticate Adminstrator logon?
  19. Hey guys need some basic help new to this
  20. Ending Worker Threads hangs the app
  21. Required presentation on MFC basics...
  22. grid lines
  23. High CPU usage problem
  24. checking if char[] is empty
  25. Remove splash screen
  26. How to stop execution of process until variable get affected
  27. ActiveX controls in a web page
  28. How to get the real content of the Desktop?
  29. Activex and BSTR * problems
  30. dll handling
  31. Where do I get msvcp80.dll
  32. [RESOLVED] 'Rebuild all' blew up, now I cant compile!
  33. Mixing Legacy Code with New Code
  34. Visual Studio 2005
  35. enum declaration
  36. MDI sample application...
  37. How can I browse windows mobile device's filesystem in PC application
  38. using fstream and char arrays, reading junk from file
  39. Text turns to mush
  40. byte[] to image
  41. "illegal use of type void" in function proto
  42. Verifying my understanding of pointers
  43. [RESOLVED] Goto question:
  44. Help With Chinese Remainder
  45. Why? OpenURL(...)can not get all code of the page!
  46. Password check for DOC files
  47. RSS Help
  48. To automatically call a function at the end of each line
  49. Show property dialog for several files in different folders
  50. reading WAV
  51. Drawling an ellipse inside a bounding rect
  52. C++ OpenGL sound FMOD
  53. ADO VS2005 and MSAccess 2003 ???
  54. C++ Cramer's Rule Program
  55. Write Protect USB Portable Hard Disk
  56. A class in a class?
  57. unsigned _int 64 range problem!
  58. randomly accessing predefined text need help
  59. Excel Addin - Visual C++ error
  60. Problem Opening New Form
  61. CStatic erased when overlapped by another Window
  62. X-Window control in VisualC++
  63. Mouse Input
  64. OpenAL
  65. hyperlink?
  66. icon
  67. GetLogicalDrives is displaying incorrect numbers
  68. Enable The Button Control
  69. Memory releated
  70. Keys Header
  71. Word automation inserting tables etc ??
  72. DLL Name
  73. Combination of connectionstring in new dataset and connectionstring in the app.config
  74. Reading & Writing INI files..
  75. Rotation of image
  76. To sort shortcut menus programmatically
  77. Match partition number with drive letter
  78. CFrameWnd::SetDockState
  79. Reading, Writing and Displaying INI files
  80. const to void*
  81. VC++ 6.0. How resolv errors LNK 2001? Which libreries to use?
  82. cin.get() ???
  83. Authenticating a program
  84. ON_WM_CHAR() and VK_TAB
  85. Classes
  86. How to change the background color of AfxControlBar*, CToolBar's parent window ?
  87. Strange problem while calling VC++ 6.0 dll from delphi 6.0
  88. unable to access volume descriptor for last session (multisession cd)
  89. Reg:Memory Allocation
  90. Polynomial class
  91. fatal error LNK1181
  92. standalone MFC gets blocked and occupied memmory grows
  93. Trouble with a pointer...
  94. Reg:Launchin win 32 application
  95. Show data in combo box
  96. show data in combobox
  97. Very New to C++
  98. finding the character array length
  99. linking to dynamic link library files
  100. getting the menu/list of a toolbar button question
  101. cast not convert c string to int?
  102. Overloading Template Functions?
  103. lnk2005 gives me a headache
  104. text file duplicates
  105. ACE: Sharing Dynamically Allocated Memory Across Threads
  106. GetAsSystemTime or SystemTimeToFileTime problem?
  107. Link error driving me crazy!
  108. CString backslash problem?
  109. Run program after clicking a button.
  110. how to calculate String byte?
  111. Need Help to shrink a line
  112. error
  113. [RESOLVED] Click event in list box..
  114. Get Request Client IP(Urgent)
  115. Reg:Passing parameters
  116. Conventions??
  117. making array -please help
  118. Migration of 32Bit applications to 64 Bit
  119. Getting commandline of parent process
  120. error in createfile function
  121. IO::GetFiles()
  122. how to read a particular sector of cd
  123. clear listbox
  124. error C2660: 'MessageBoxA' : function does not take 0 parameters
  125. Tray icon is disappeared after explorer crush
  126. Displaying data from Database in VC++
  127. Concrete classes converting to base type
  128. Timer
  129. Where is std::cout?
  130. Can't create tray icon
  131. Can a Windows program restart itself?
  132. Best way to use form button, in seperate class, or in form.h file?
  133. Token pasting
  134. Play sound loop when windows forms starts
  135. How to launch Powershell cmdlet?
  136. Command to end a program
  137. How to enable second monitor?
  138. What is the best way to rename folders and files?
  139. Monitoring a process for open files
  140. Doubt about Xerces
  141. Error: side-by-side configuration is incorrect
  142. header file
  143. Reg:Getting Visual studio version
  144. System startup
  145. fin.open(******
  146. Resource Chain
  147. Calculations with subgrid of megagrid
  148. [RESOLVED] Can't Retrieve Values from INI Files..
  149. Calc Monthly payments with Interest.
  150. visual c++ manifests
  151. SendMessage
  152. To diagnose lib files
  153. CStdioFile::Read from a file
  154. How to create auto install program
  155. How to add HtmlHelp to Dialog based App
  156. Rounding decimal place of floats
  157. IWebBrowser2 under VISTA
  158. First-chance exception in FingerPrint Biometric System.exe: 0xC0000005: Access Violat
  159. [RESOLVED] Problem in adding resource..
  160. Problems with PI function
  161. Problem with creating std::wstring
  162. put all files in exe
  163. GUI Books
  164. any key pressed?
  165. OOPS with CPP
  166. Reg:Terminating an application.
  167. Please give me a solution for this
  168. file.SeekToEnd()
  169. Print text
  170. DCOM Config
  171. URL + Client
  172. mfc42d.dll not loaded
  173. Byte Arrays!??
  174. The buffers defined by SetupComm()?
  175. Apps/Programs that dont need to be installed
  176. telnet issue
  177. telnet issue
  178. Serialization and CTreeCtrl Icons
  179. OLEDB Connection - need help to resolve "Timeout Expired" Error
  180. intializing negative integer in While loop
  181. Looking to get C script Translated into VBS. Can this be done?
  182. Prevent Enter pressing in a dialog
  183. Does anyone see any problems here?
  184. Warning on Exception Usage
  185. Release Mode ToolTips Not working
  186. AfxMessageBox
  187. How to cast from LPARAM to iterator?
  188. Beginner - small problem - please help
  189. Browser Plug in..
  190. Windows Form or MFC?
  191. New to VC++, Need Helpz :(
  192. Moving docked toolbars?
  193. Program runs only in debugger
  194. Excel manual
  195. Wrapping unmanaged C++ dll to use in a Managed C# CF application
  196. desktop screen as webcam source
  197. Textbox to file
  198. VC++ dll or a dependent dll missing
  199. Replacing wsprintf with safe StringCbPrintf
  200. grid coordinate from index?
  201. Transparent dialog with non-transparent controls
  202. [RESOLVED] Hide/unhide CDatagrid object
  203. NonClient Area Icon Problem
  204. How to click the login button in ie control?
  205. My function won't work!
  206. Beginner array help
  207. How to minimize all running aplications with win32
  208. CStatic problems in VC++
  209. error LNK2019 with teplate classes
  210. EXPORT entryname problem
  211. help in pointer
  212. [RESOLVED] cin skips rest of Main?
  213. DIB to JPG using GDIplus
  214. Passing 3D array in constructor (newbie question)
  215. HELP:::smart phone screen rotate help
  216. File Comaprison
  217. Making VC6 program an NT service
  218. Using pointer to access list member
  219. [RESOLVED] Displaying a bitmap on a CToolbar
  220. Positioning a dialog
  221. DebugBreak
  222. Printing all types of documents in windows application
  223. [RESOLVED] Problem in property sheet..
  224. How to print a file on printer through windows application
  225. Fun with Memory Pointers
  226. DebugBreak continue issue
  227. text or file??
  228. __int16 vs int16
  229. MSVCM80.DLL and MSVCR80.DLL
  230. Late Binding with Aeroglass (a common problem for a lot of ppl)
  231. LockRange
  232. Run compile problem
  233. CreateFileMapping fails under Vista
  234. How to get Security Descriptor of a Registry Key.
  235. Getting the Maximized state of the window
  236. Help with a simple exercise
  237. database connectivity
  238. getting installation path of currently running exe
  239. changing the dimensions of an activex window
  240. error C2440
  241. MessageBox Problem in vista
  242. Link error working with xerces in vc++ 03
  243. Activity check of computer
  244. memory dc does not draw anything!
  245. need some advice.
  246. Keeping caret position on WM_VSCROLL
  247. Drive letters and FindFirstVolume
  248. mkdir() function not working with a variable.
  249. Path in SHBrowseForFolder
  250. How to identify the code of login page