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. Drag to an edit box
  2. application settings window in xp/vista
  3. [RESOLVED] CDialog, Activex and Escape
  4. Detaching a dialog from the main dialog
  5. Get system infos
  6. can someone please help my write and process function?
  7. The datagridview does not display the data
  8. Reading data from a listbox
  9. Hook dll problem
  10. How read data from XLS(excel sheet)
  11. Resizing Static Text control
  12. Detach Process from different process
  13. long file name cannot copy in virtual drive
  14. How to put an image over a button
  15. Using WDK Header Files
  16. Converting VS8 to VS9 on the command line
  17. CComboBox SetTextLimit assertion failure
  18. Assigning a random number to a variable.
  19. Line wrapping in read-only CEdit
  20. Help!
  21. ShellExecute
  22. Problems with "\n" and the getline function
  23. Remote Debugger can't connect anymore
  24. Assistance with Vectors
  25. Dialog box freezes when called by DoModal
  26. A newbie question... importance of IOstream?
  27. CString array question
  28. Mdi help
  29. Message Handling
  30. Deallocate buffer - VC++
  31. Catch the ON_BN_CLICKED Event on my own CFileDialogEx?
  32. Internet temporary folder
  33. Help! I Dont Know How To Start
  34. Report Creation in VC++ 2005.
  35. Error : Debug Assertion Failed
  36. Need A GUI for a simple program
  37. Parsing XHTML DOM Document in WM6
  38. Getting control id in vista for hooking
  39. Enum Process Names
  40. About Autocomplete feature
  41. Build Problems!
  42. Debugging Arrays
  43. "This project is out of date" annoying message
  44. fcntl and vs2008
  45. Appending characters at the beginning of a CString?
  46. Retrieving Users Login Date and Time...
  47. Making a user defined function for the following program
  48. Creating exe with C++ codes
  49. Saving charts as gifs ( Visual C++ 6.0)
  50. Problem When Deallocate Memory
  51. Get Windows update version
  52. Create a toolbar using custom images
  53. How to get desktop settings.
  54. [RESOLVED] how to make messenger styple popup in bottom right corner
  55. How to enable Profiler
  56. BorderLess AboutBox.
  57. Flickering problem in client area while resizing
  58. how to create image indexes?
  59. coping pointer to a class
  60. [RESOLVED] Bitmap Printing - Device Independet
  61. Exchanging data between dialogs and document. How!?.
  62. Problems when programming with IXMLDomDocument
  63. Generic Object...
  64. damages when executing console from MFC
  65. Retrieving Windows user interface language
  66. DLL's and EXP files
  67. autoSelection
  68. Project Out of Date message
  69. Error: Multiple Floating Point Traps
  70. How o set permission for Directory
  71. [RESOLVED] How to inhibit OnDraw on startup?
  72. black tint everything on screen behind dialog box
  73. HIWORD and LOWORD
  74. how to bind a c++ class to SQL stored procedure
  75. how to set maximum open number of files ?
  76. How can I handle right-click of my application itself ?
  77. CFile and file sharing
  78. Adding an edit control in VS2005??
  79. Screenshot WebBrowser
  80. How to findd audio device connected?
  81. Double or Float ?
  82. can i get the file path from the file name.....URGENT
  83. Usage of getDocument
  84. Mutithreading
  85. Report Generation and Printing in VC++ 2005 SDI type application.
  86. VK_* (Key Constants)
  87. xls to xml convert
  88. increasing or decreasing size of dialog box
  89. Please help me!!!!
  90. Changing name of exe
  91. Text to a Bitmap
  92. XP and msvcr90.dll
  93. how to use getch() for paswords
  94. Delete "Warning" in Visual C++ Project
  95. [RESOLVED] Modal View
  96. list of function pointers?
  97. trouble installing FreeType 2 on Vis C++
  98. C++ syntax question (simple)
  99. ISAPI extension -- help change file upload code
  100. desktop icon problem
  101. Synchronizing HTML with the page
  102. Let the user load a picture
  103. Change modeless dialog into dockable Toolbar
  104. CStdioFile: GetPosition, Seek
  105. Can VARIANT accepts a _variant_t??
  106. CreateThread wont accept function arg
  107. New To Things
  108. How to write a MFC program to create/connect a SQL server database?
  109. UNICODE to Ansi
  110. Compilation error -(reading data from excel)
  111. ScardTransmit Function - Error
  112. DeviceIOControl(), FSCTL_MOVE_FILE & ERROR_INVALID_PARAMETER
  113. Deleting values from XML files
  114. How to search a TreeView Control (non MFC)??
  115. Open FileOpenDialog with specified view/ preview of bmp-files
  116. Navegate2 and Local address file
  117. Activex and Global variables
  118. Bluetooth Broadcom(Widcomm) BTW DK problem
  119. Closing Dialog Box on Pressing Escape Key.
  120. Intercepting PASTE operation in a CRichEditCtrl
  121. Exploring dirs and getting filesizes as fast as possible
  122. WM_CHAR and Dialog Box
  123. Resizing my application window causes problems
  124. Tab in a SDI View or MainFrame
  125. SendMessage(...) From dll to application?
  126. data type
  127. SDI Application Tab
  128. Right Click Toolbar / Choose items error
  129. C++ 6.0, Release version exe does not excute
  130. Tooltip in TreeView Control - VC++ (Non MFC)??
  131. Visual Studio remote debugging
  132. Big dll problem
  133. [RESOLVED] AfxOleGetMessageFilter Issue
  134. Writing to Registry
  135. create singledoctemplate from a dialog
  136. display source code while debugging
  137. How can I get the handle of the dialog ?
  138. Rpc
  139. Doubt in client area painting and re-painting
  140. Right approach to enter data in Forms?
  141. PropertyPages in ATL??
  142. Problem with modal dialog
  143. easy question
  144. Direct Input Keyboard Question
  145. Print Preview doesn't match printout
  146. About Distribution of Debug libraries and MS EULA
  147. Doc/View Thoughts
  148. Copy (*ptr)
  149. Wait for the app started by ShellExecute()...
  150. GetDlgItemText is changing integer to something unrecognizable
  151. stack trace in exception
  152. [RESOLVED] Incrementing a pointer
  153. Vista -> XP form dimensions not being right
  154. Compatibility issue
  155. Blue border displayed while using dhtml control_Url asignment
  156. weird stack overflow under vs2008
  157. Help me Finding Folder Path (Non MFC)
  158. Easy CreateWindowEx question
  159. De-selecting items in CTreeCtrl
  160. assembly code for release code?
  161. using Activex Control in html page
  162. Visual Studio 2005 VC++ 64 bit Compilation error
  163. Help Me
  164. tab
  165. Vector of pairs?
  166. What setting have I changed :(
  167. How can I know the result of "ping"?
  168. Minimise/maximise causing thread to stall
  169. CInternetSession / CFtpConnection + unicode filenames
  170. e2316 '_fastcall tform1::formpaint(TObject *)' is not a member of 'TForm1'
  171. Problem with DeleteAllItems
  172. standard CTreeCtrl style with sunken 3d border
  173. unusual sysntax error
  174. Convert from unsigned characters to wide characters
  175. Problem of Print Preview.
  176. How can I handle the 'Apply' button click individually for each property page ?
  177. Working of Enter key on List Ctrl.
  178. Type redefinitions
  179. measurement studio
  180. SetACL problem on domain environment.
  181. [RESOLVED] std::endl formating - /r & /n issue
  182. c# and c++ synchronize with mutex
  183. WindowProc - Doubt
  184. Font Change
  185. Problem with GetFieldValue() (mySql:ODBC)
  186. Multiple inheritance and template classes
  187. if anyone help me to understand this
  188. C++ Program source code
  189. library path
  190. [RESOLVED] rename function not renaming files
  191. read writing need help!
  192. folder size
  193. Problem regarding COM interface!!!
  194. [RESOLVED] Character set
  195. [RESOLVED] C++ Custom Exception Handling
  196. memory leak detectector in c++
  197. wrong variable value from debugger on x64
  198. Security descriptor problem.
  199. Open default application for associated file?
  200. eVC++ XML Parser?
  201. Run time error during call UpdateAllViews
  202. Suppress printing of blank pages
  203. BVH transformation
  204. Implicit conversion of bool to int
  205. Question about ListBox
  206. return array?
  207. Where to find InStr ?
  208. A COM ThreadingModel question
  209. c++ project - coder required
  210. Print Preview on SDI splitter application.
  211. How can fix size of SDI type application?
  212. How I change Project Name
  213. Microsoft certification
  214. CBtimapbutton bitmap loading
  215. How can create an SDI type project inside in another SDI type project?
  216. Upgrading to VS2008
  217. C++ and USB data transfer
  218. p2p help!
  219. objects as function arguments
  220. can not set breakpoint in release mode
  221. Build Error
  222. Is MFC 'Old School' ... should I be learning .NET ?
  223. Latest SDK
  224. please help with wierd variable issue
  225. SHell
  226. Problem with fopen read write operation..
  227. Want to know the detail of CToolTipCtrl
  228. Advantages of ShellExecuteEx over CreateProcess
  229. Debug Assertion Failed- Trying to Create CPropertyPage Objects
  230. Creating enteries in add or remove programs
  231. setup and registry
  232. DLL Problem
  233. Search a binary file of million records
  234. DllMain@12 problem
  235. Curiosity: How the default sorting of a CListCtrl is done?
  236. Show Selection in an unfocused CEdit
  237. input parameter debug
  238. TreeCtrl in FormView.
  239. start up application in NT
  240. Problems with a listbox for an .OCX
  241. Bitmap change for Mouse events
  242. "x86 and Any CPU" Platform configuration...Help Needed
  243. Error $2108
  244. Problems with an abstract class in mvs2005
  245. problems including stuff
  246. Help PenTable (Diy) Pressure data
  247. Syntax Highlighting and AutoComplete feature
  248. Simple problem
  249. Database datasource missing in VC++ Express
  250. MFC dialog based & insert button into menu