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. CRectTracker in CScrollView
  2. __cdecl keyword
  3. How to use Timer in MFC??
  4. looping a function
  5. [RESOLVED] How to set window non-resizeable?
  6. Friend in another cpp file
  7. [RESOLVED] Avoiding memory leaks when multithreading?
  8. Strings in VC++
  9. Bitwise Operators
  10. CListBox
  11. Problem with function call stack ?
  12. calling exe in dll
  13. Extractin SMS messages frm Inbox
  14. [RESOLVED] CListBox Question
  15. How can I resize my own activeX Control ?
  16. [RESOLVED] Looping Problem
  17. VS2005 Creating databases and distributing applications
  18. how do i change it
  19. return array of pointer from function
  20. Atl?
  21. MS Com Addins in C++?
  22. WAVE to MP3
  23. VS2005 and directX
  24. DLL's and struct's as parameter
  25. Bubble Charts for MFC C++ Automation
  26. A strange problem when using VC.net to create a new solution
  27. Directshow custom filter accessing problem
  28. HRGN problem.Pls help !!!
  29. vc++ strings
  30. Equivilent of Do Loops in VC++
  31. how-to question
  32. want a CEditView as read-only but the background colour to white
  33. Catch the HELP event of a Property Sheet
  34. COM, get methods/parameters supported by an interface OR create a request at runtime
  35. How do you build a self-extracting zip file?
  36. How to make a dir can be written?
  37. Keep ofstream from writing same strings
  38. hi all need a help regarding to gina dll
  39. How do i destroy my parent dialog?
  40. problem of setting caption in form view
  41. Problem with manipulating WCHAR
  42. A Small doubt about edit box
  43. What does abbreviation "AYG" in terms like AYGSHELL mean?
  44. scroll can't work?
  45. Constructors for global variables (objects) are not being called
  46. _bstr_t String manipulation
  47. passing data between forms
  48. CMap
  49. Mysql Connection
  50. [RESOLVED] How do I remove the button from the task bar by MFC?
  51. VC++.Net 2003 Word Automation
  52. Can someone suggest the easiest way to email text?
  53. how to arrange windows with in MainFrame
  54. How to remove the default document?
  55. file handling in ATL
  56. Floating Toolwindow
  57. write data into file!!
  58. how to maximize the window
  59. How to change font for CEdit
  60. [RESOLVED] Errors in commctrl.h and prsht.h
  61. Efficient Base Conversion Method
  62. getline HELP pls
  63. Looking for MFC Charting Tools
  64. Limit folder browse dialog to a single folder
  65. [RESOLVED] Assembly Information in .exe file
  66. Help as soon as possible
  67. [RESOLVED] Projects & Make Files
  68. Start exe from memory
  69. static class
  70. OnKeyDown
  71. plz ( urgent help)
  72. LNK2001 & LNK1120
  73. 3d math questions..
  74. Shared memory in depth
  75. How can I programatically select an item in a CListCtrl list box?
  76. strstr error
  77. How to copy or duplicate the content of a view or a control?
  78. System Commands in CLR Console Application
  79. GetSystemTime
  80. operator overloading for a template arrayclass
  81. Can we run a VC program in PDA platform?
  82. Link Error
  83. Can Custom control with generic CWnd use CScrollView?
  84. P2P Application
  85. VC++ 6.0 and Visual C++ 2005
  86. [RESOLVED] Tree Structure
  87. Function name
  88. Get previous month
  89. Tab control in VC++
  90. Image Rotation
  91. set thousand bit in one variable?
  92. Problem in using LoadwithParser to get SOAP attachment
  93. Debugging a Library
  94. problem with openCV
  95. attaching new View to Document
  96. Can't track down a message beep
  97. how to upload files to remote ftp-servers
  98. Calling DLL nulls pointer?
  99. Lisitng the symbols of an executable
  100. Local System switching user contexts
  101. Need help to debug DLL for Smartphone and VC2005
  102. Cant get collision detection to work correctly
  103. DLL symbols differ in different apps
  104. [RESOLVED] Enable/Disable OK button in CDialog
  105. One last problem with collision detection
  106. Simplest way to invoke command line from VS
  107. Carriage return not being picked up
  108. An architecture question for explorer type application
  109. [RESOLVED] How to build application for Windows 2000?
  110. Problem while creating Tree-View
  111. Return multiple values
  112. Insert data in Listbox GUI
  113. Tree View Issue, plz help
  114. control problem of windows media player
  115. [RESOLVED] Running VC++ dll on other machines
  116. How to Implement Shrink mem HBITMAP size??
  117. Memory allocation
  118. Desktop Alert
  119. Memory editing?
  120. Fixing the exe file name
  121. ShellExecute not working in VS2005
  122. Integration with flash
  123. need help in fixing windows title
  124. code that can put in text into the fields of another app
  125. SHBrowseForFolder and multiselect
  126. Cancel build using pragma
  127. working from/to ftp site
  128. Is there a way to LoadUserProfile for ...
  129. how to enumerate IIS's services through ADSI
  130. CreateFile() vs _tfopen()
  131. How do you get a handle to a process in another session?
  132. A bug in C++ compiler? (full constructor definition is required before it can be call
  133. Need slider control example
  134. Modal Dialog and Assertion failed!
  135. how to compress and uncompress files
  136. this seems noob but how do i convert lParam to a string
  137. Built-in CPU Speaker
  138. TCHAR To 'const unsigned short'
  139. HTMLWindowEvents2::OnUnload
  140. [RESOLVED] Two questions about the IDL file
  141. Different between language
  142. How to convert class std:: basic_String to typedef char* LPCSTR ?
  143. LNK2001 Error
  144. Scrollable Wrap Text
  145. Bitmap in Picturebox from file
  146. COM exception handling problem
  147. createprocess based FTP fails when command file contains wildcard character
  148. Hwo to change the color with CFontDialog
  149. 120 DPI problem.
  150. [RESOLVED] Problem passing arrays from COM EXE server to VBScript
  151. Detection of mouse move event.
  152. Lib file Linking prob
  153. Net Cracker
  154. Folder Properties
  155. C++ Dll in Visual Studio 2005
  156. VS 2005 data break point
  157. How to acces instance of a class or a view at runtime?
  158. About my CListView
  159. CListCtrl Tool tip
  160. How to set mutually exclusive focus between toolbar and my derived controlbar?
  161. Services shutting down order
  162. Problem with HP deskjet F300
  163. LoadLibrary issue
  164. error LNK2001: unresolved external symbol
  165. Exporting Icon from Resource!!!
  166. Release the CPU a bit??
  167. Working with Access 2007
  168. CList problem
  169. virtual string ToFileFormat()
  170. For problem ... ?
  171. Detect collision with a triangle
  172. Can someone tell me how to debug a service?
  173. Trouble with async RPC
  174. How to serialize the CRichEditCtrl?
  175. [RESOLVED] How to save information
  176. Blocking Call - Basic Question
  177. How to exclude DLL from your application?
  178. CreateProcess not working in Visual Studio 2005
  179. How can I install a CE platform SDK?
  180. Dialog Problem
  181. (help)how can i calculate the average of several integers
  182. Encryption Algorithm
  183. What is the message that occur.....
  184. To post messages / click Buttons of a Java Jar App using code
  185. Dynamic Array and Input/Output files Y is it Not Working?
  186. dll i use with mirc. is there a memory leak?
  187. Event Confusion!!
  188. [RESOLVED] Problems with reading/writing files
  189. Dialog.DoModal() Does not work in a DLL
  190. .net c++ and visual c++
  191. zooming in custom control with CWnd class
  192. hw to clear the drawing?
  193. hw to clear the drawing?
  194. edit box to be fill with black paint and words?
  195. how to diable the scrollbar when there is nothing to display yet?
  196. Undeclared Functions
  197. C++ question
  198. plz help.......
  199. explain in detail.......
  200. Version Info for .exes
  201. [RESOLVED] expected constructor, destructor, or type conversion before '.' token
  202. Getting access to CMainFrame from LeftView?
  203. Lnk2019
  204. How do you store input from keyboard into a string array?
  205. how to not show your executable on the taskbar?
  206. DPI scaling problem
  207. Unable to use Open File Dialog with namespace clsid on Vista
  208. Force a window to stay maximized?
  209. issue with memory leaks
  210. graphlite and VC++ Express
  211. Execute code every 3 minutes
  212. equivilent of My namespace in VB
  213. LNK2005 and template class
  214. Add Entry to the System Path
  215. [RESOLVED] Popup CFormView
  216. WorkSpace not Showing One Class...!!!
  217. About fopen....
  218. How to add a dynamic control
  219. MFC excel Automation
  220. SysAllocString ???
  221. Limits in .txt files extension
  222. Create new Excel file and save this.
  223. CreateControl
  224. Dynamically Multilingual Programs
  225. format for edit ctrl ?
  226. [RESOLVED] Updating radio buttons
  227. Special Kind of Message Maps
  228. How to make ListView item inactive (grey)?
  229. Problem detecting Availability of Network Path
  230. c++ help
  231. NetServerGetInfo returns ERROR_INVALID_PASSWORD in Windows VISTA
  232. Problem using OpenFileDialog
  233. Mouse Coordinates
  234. Assertion in image list
  235. List Box:VC++
  236. word filter
  237. Password encryption
  238. Help me with some errors
  239. From CString to unsigned int
  240. Debugging a Release version
  241. windows language
  242. Inter Process Communication Problem in win32
  243. VC++ Sockets,Threads and AfxBeginThread
  244. graphlite and vc++ express
  245. random nbrs
  246. AVI clip is distorted in CAnimateCtrl
  247. CreateWindow, Probably an easy one
  248. How compile a make file using VS2005?
  249. Guidelines for porting console to dialog.
  250. [RESOLVED] Need code to play a .wav sound file