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. Stack size & free
  2. Outlook Automation Problem
  3. Explain This Code
  4. How to use CCriticalSection
  5. Strange act of CEdit::ReplaceSel
  6. SHFileOperation - copy as other user
  7. Visual Studio Automation (Add IN's)
  8. Add Picture to rich textbox using pure win32 api
  9. Help with C++ Basic Program
  10. Problem Saving Pieces Movement.
  11. VMWare Unique ID for Licensing App
  12. Loop Problem with game of 21
  13. averaging arrays
  14. String if statements?
  15. Problem in creating tool tip.
  16. DLL packaging or bundling option
  17. Gradebook Program help!
  18. Getting portable device internal configration
  19. CListBox pixel scrolling?
  20. [RESOLVED] Vista specific: WM_CONTEXTMENU
  21. Set ICON problem
  22. Elevating the process to create the file at ACCESS_DENIED Position
  23. Mdi
  24. How to create User
  25. ICON not displaying
  26. Problem with Classes and Accessing Private Members
  27. Getting Pre-Build Event error.
  28. Error 14001 with LoadLibrary(fullPath)
  29. how to: stall a function for x seconds
  30. CComboBox
  31. get next n bits
  32. Beginner Polymorphism Question
  33. Beginner: Map question....
  34. image processing in c plzz very imp need urgent help !!!
  35. error with .EXE
  36. Counting Line numbers within a vector...
  37. [RESOLVED] createProcess FAQ
  38. Functions with two parameters
  39. please help with my program
  40. has maps
  41. How to load BHO DLL only with Window Explorer
  42. Complex while statements
  43. cdxCDynamicPropertyPage vs. CListCtrl
  44. Please Help
  45. Compilation flag to change Function Addresses
  46. problems with WTL::CListViewCtrl
  47. I need to upload my text file
  48. LPBYTE to CString
  49. Adding Support for an Interface
  50. C++ basics
  51. Clear IE7 DSN Cache
  52. VC++ without .net
  53. dont get this
  54. customer account
  55. Help!
  56. arrays
  57. [RESOLVED] Popup Menu
  58. about rand() function
  59. Integer Array
  60. Using MFC dll in non-mfc app
  61. ContinuesPrinting not working please help me.
  62. How to make leaned window like winamp?
  63. How can Release memory controls?
  64. Adding pictures to richtextboxes through OLE
  65. extended arrays
  66. How to disable calendar in CDateTimeCtrl
  67. What do I find programming interview problems to practice on?
  68. Getting CEdit control to behave
  69. Cmsflexgrid : Mfc
  70. MDI-Dialog Advise
  71. Problems linking my unit test project
  72. [RESOLVED] MFC listview problem (cant use integer?)
  73. i need some expert design guidelines for realtime 3D graphics application
  74. How do I print out a byte array as a string?
  75. Icons in MDI Child Frame
  76. [RESOLVED] GetFileSize problem
  77. Converting Code to C++?
  78. access violation exception dump debug
  79. Newbie C++ question - wstring compile errors
  80. Dynamic link library global data
  81. why do i get this streams error
  82. Change value of variable from a DLL
  83. Changing the exponent size
  84. How to access the parallel port
  85. Productivity tools for Visual C++ Express 2008?
  86. Opening Excel files on Vista
  87. Give application a new look and feel
  88. [RESOLVED] How can I embed a Win32 view window in a dialog?
  89. sorting 2 arrays
  90. Accessing iPod Touch with C++
  91. Code Error
  92. Help with a random function
  93. Date Validate MFC/C++
  94. a -1.#IND problem
  95. Separate Windows
  96. Adding a COM class
  97. modaldlg
  98. Pointers to profiling tools required
  99. Running custom utility after pre-processing
  100. Desktop Shortcut for Multiple users...
  101. Convert to EX2T file system , Implement DIR command
  102. Problem using pointer functions
  103. detect 32/64 bit machine
  104. How to check if running under administrator account on Vista from MFC app?
  105. hi all
  106. Implementing an Interface
  107. Configuring ODBC Datasource From VC++
  108. Overwriting in excel - vc++
  109. [RESOLVED] UpdateResource error
  110. Invalidated makes me flicks
  111. Oledb
  112. noob - issues with concepts of inheritence
  113. tstring assertion failed
  114. "windows.h no such file or directory" in Visual Studio 2008! Help
  115. [RESOLVED] IPC from a self made program to a process that doesn't expect IPC
  116. Generate DLL from makefile
  117. search files program
  118. Plasma Pistol Class
  119. Working with or Without Bachelor's
  120. Decent Tutorial?
  121. Learning COM
  122. Sending Returned Integers Between .cpp Files
  123. Blocking recv() in worker thread or async OnReceive()?
  124. simple hooking
  125. [RESOLVED] CString to TCHAR [260]
  126. ini files...
  127. How to::Timing mechanism and synronization in MFC?
  128. Using common controls 6.
  129. Blakcjack
  130. Pointer Array
  131. Custom controls on windows forms
  132. Class, Array, Function
  133. Bigger OLE property pages
  134. Multiple Windows
  135. [RESOLVED] Text File Input Issue
  136. Need help with something!!
  137. check date validity function?
  138. Outputing text file after reading data
  139. Write Data in excel
  140. How to compare edge co-ordinates of two images to find the difference
  141. [MFC]classes question
  142. different project setting
  143. pure virtual functions
  144. VC++ studio bug when display vtbl?
  145. How to disable/grayed-out the 'X' close button in dialog?
  146. Using a varible's value to call a function or use as a class name
  147. Mscv8
  148. Thread overrides?
  149. Copy selected items checkedListBox ?
  150. URGENT pls help : MFC chnaging ICON
  151. Fgets Causing Assertion Error
  152. std::string to BSTR?
  153. A virus in Workspace
  154. Printing a 64-bit integer (in VC++ 6)
  155. GetActiveObject() does not from DLL.
  156. How to: Recive Windows Messages in a dll
  157. Default installation folder
  158. [RESOLVED] split string into arrays
  159. Logic Diagrams
  160. How can I clean the heap during runtime?
  161. how can burn multisession on CD ?
  162. How can relese memory from controls?
  163. problems
  164. MoveWindow Painting Problem
  165. Quick ticky tacky C/C++ language question.
  166. Is there any C++ Api to Start new console, its urgent!
  167. [RESOLVED] Edit box simple problem
  168. Game genie?
  169. Debugger console size
  170. plz help me to solve the problem
  171. MSMQ error sending message
  172. Bookmark File VS6
  173. Property page in wizard mode variable get and set
  174. problems with std namespace in VS 6.0
  175. problem with shareware Regdialog
  176. [RESOLVED] from Unicode to simple char
  177. Launching a exe from source code
  178. [RESOLVED] Renaming a file from a button
  179. [RESOLVED] Code keeps restarting my computer
  180. Almost complete assignment
  181. Writing UNIX compatible carriage returns
  182. finalized assignment - does this look right?
  183. What does "L" in front of string mean?
  184. [RESOLVED] compiler errors
  185. Getting Current Directory
  186. When is ODS_SELECTED state?
  187. error C3637: 'InitialStatValue' : a friend function definition cannot be a sp
  188. quick question on modifying program
  189. Keyboard filtering
  190. TCP/IP gaming stream in .NET
  191. Structure Help
  192. 21 App Closes/Loops Then Closes
  193. how i can get good gui tools n visual studio
  194. [RESOLVED] string to file handle
  195. One dimensional arrays of integers problem
  196. Enum invisible
  197. MFC Context Menu Via Keyboard
  198. CMSFlexGird -> Keyboard
  199. Array Sorting Help Please
  200. Create() function of modeless dialog is failed
  201. Using visual C++ to move mouse cursor(Urgently)!!
  202. help help!!
  203. Problem while forwarding print job
  204. virtual class with friend fuctions
  205. oem_charset for edit box
  206. create resource object?
  207. [RESOLVED] What's wrong with the assignment operator?
  208. Can any one give tell me what is the error in my client server application?
  209. [RESOLVED] MFC ListView return if item is selected
  210. [RESOLVED] Console Output Behaviour Question
  211. Dynamic Memory Allocation
  212. A Dialog based application
  213. sorting
  214. windows communication
  215. Help with pow functions
  216. [RESOLVED] How can I add a loop for this code
  217. read words from file
  218. [RESOLVED] Add Icon to a Button , keeping the Text
  219. ShellExecuteEx()
  220. [RESOLVED] More operator problems, please help!
  221. Load Image
  222. IMAPI 2 in Xp SP2 with VC6
  223. syntax error and fatal error
  224. Memory Mapped Supported Applications
  225. problem in function pointer
  226. String Problem, please help
  227. start hidden
  228. Help using libusb
  229. Problem running release version of my app
  230. How Remove File Explorer from Windows Mobile
  231. how to get the system as a string
  232. Visio Automation problem
  233. How to generate a xml file in VC code?
  234. Please check this program...
  235. Getting hard disk name using wmi
  236. MFC Question involving child windows and controls within a dialog
  237. Finding window handle of a process
  238. formating a number
  239. Can Spin Control text be aligned vertically?
  240. Suitable language for Excel Automation
  241. Problem with CString
  242. [RESOLVED] Change dialog caption and itme text issue
  243. Creating a VC application
  244. Array Help
  245. Array Sorting
  246. error in header
  247. Using LPARAM in CALLBACK Function
  248. Sweep Line Algorithm: std::set ordered by time
  249. Console window clearing.
  250. Accelerator and a view