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 scrolldown the dialogbox
  2. [MFC] Grid control
  3. wostringstream causing problems
  4. unresolved external symbol "int __cdecl _.." between C and Cpp file
  5. Hook - Please Die!
  6. Registry Access Debug/Release
  7. Updating MDI view title on 'Save As'
  8. Combo tree control
  9. what am I doing wrong?
  10. Very noobish question
  11. Help with friend function
  12. Dialog on top
  13. C++ Semi-Inteligent AI
  14. Player accleration
  15. Variable function problem
  16. tic tac toe game, how to check if someone wins?
  17. cbutton caption
  18. Problems, recursion, reverse, etc.
  19. CeGetDeviceId() return 0 while device is existing.
  20. How to check whether a PE(DLL,EXE) is a COM component or Win32 DLL/EXE?
  21. verticall scrollbar for the picture control
  22. How to write utf-8 string into a file?
  23. How to control move slide in PowePoint
  24. error C2664: 'IPersistFile::Save' : cannot convert parameter 1 from 'CString' to 'LPC
  25. Global preprocessor directives with VC++ 2005 Express Edition
  26. [MFC] Required reading list
  27. Confused with directly deleting CWnd-derived object
  28. Help for Pocket PC.
  29. crc32/checksum app
  30. Curiosity about "template-ready" containers
  31. How do i determine a fragmented TCP/IP datagram
  32. Custom folder icon with desktop.ini doesn't work in Win7?
  33. Automatically Type
  34. Seemingly Random Crashes @ array input
  35. C++ Program Help - 6 Stage Pseudo Dummy Pipeline
  36. memcpy C++ Convert to C#
  37. ParseDisplayName faild in Window Service Pack 2
  38. To run an application from c/c++ program
  39. Generate series
  40. writing a string to a text file
  41. check the button caption
  42. Is CLR project for .net framework?
  43. OpenFileDialog.FileNames
  44. wordwrap in cbutton
  45. Help me please!
  46. Optimizing If/Else to Do/If-Undo
  47. including a .cpp
  48. _stat returns 0 size for file that might not be empty
  49. listcontrol and list view
  50. new operator in DllMain of MFC Extension Dll
  51. I need help.
  52. memcpy error: Access violation reading
  53. Where to start?
  54. different results when invoking console app directly and by CreateProcess
  55. linking one static library to another in visual studios?
  56. Sharing Global variables between Threads
  57. screen savers
  58. Visual c++,updates
  59. ToolBar
  60. Need help find error with Binary tree code
  61. help with Seg Fault | Binary tree remove function|
  62. Strange runtime crash. Can anyone suggest a possible reason?
  63. status of srand(time(0))?
  64. Bit Shifting Visual C++ 2008
  65. Socket error 10038
  66. I'm Stuck again..
  67. the error which doesn't mean!!
  68. Writing a timestamp to a file ...
  69. Errors in Serial Communication Programming
  70. Help for RAPI functions.
  71. Serial Communication Code for Reading
  72. Modeless dialog
  73. 64 bit DLL help
  74. eliminating an entry from a vector without changing the order
  75. Performance Issues
  76. Win32 Random Number question
  77. in a pickle here with sorting and popping from a vector
  78. counting down the time and...
  79. Template: great but now how do I detect type?
  80. How can I declare sa common variable in class array
  81. MFC mySQL query problem
  82. specifying path to files in Visual C++
  83. Visual C++ easy beginner question?
  84. C++ Multiple Source File - Identifier Issue
  85. reading of Excel in Visual studio 2008
  86. [RESOLVED] ASyncSocket Receive Problem
  87. Main window always stays behind
  88. Function sequence error while executing sqlExecute in Windows 2008 Server 64bit(R2)
  89. Logically utilize a specific variable
  90. [RESOLVED] Is it possible to DB connect using FTP?
  91. clistctrl gdi+ text
  92. Help needed ASAP, Arrays within a class.
  93. Entry Point Not Found error
  94. Sharing controls' data between views
  95. [C++] get results of console
  96. [RESOLVED] Help finding file-type associated programs
  97. System.Random in C++
  98. Deriving a class from another CDialog derived class.
  99. how to set up a project to search additional directory for headers?
  100. compiling log4cplus in vc6
  101. How not to serialize all members of CObList
  102. How to know if Key in Vector does not exist / If File has write permissions
  103. A C++ Project using Weighted Graph ADT
  104. Problems with random generation and counting
  105. Passing 64bit int via Windows message
  106. Need help on final project please!
  107. Prevent dialog resizing from some sides?
  108. ITaskScheduler: how to refresh / removed cached schedule?
  109. VC++ Serial Comm
  110. How to get to the next line in a file
  111. Linker Error LNK1210
  112. Class designer items...
  113. OutLook DistributionList Problem
  114. CHtmlView and images from resource
  115. 32bit to 64bit -> cannot open mfc90.lib = help
  116. Dll Export in C++
  117. A concept question about throwing exception in constructor
  118. increase the width of cbutton
  119. Writing CString to file
  120. How to display image (from CImage) to Picture Control
  121. How to change and refresh a dialog based application?(MFC)
  122. Problem with installation of VS 2008(stuck)
  123. Checkboxes using DrawItem() of CListCtrl in mfc c++
  124. Replacing data of a text file
  125. error c2440/2664
  126. Running VC++ Executable
  127. Problem with window messages
  128. Quick Help
  129. Playing MP3 file
  130. Compile Errors (C2146 & C4430) ??
  131. what data structure to use from stl
  132. Using CFileDialog to save files
  133. how to generate global keystroke
  134. how to solve error LINK2005
  135. IStream interface of the data stream to write DVD
  136. GDI Leaks
  137. WriteFile integer array
  138. Help! Simple (I hope) question, from a new C++ coder
  139. Problem with Debugging ISAPI Extension on IIS 6.0 ...
  140. Pointer Problem
  141. WH_GETMESSAGE Problem
  142. Dialog vs dialog (mfc)
  143. Calling Functions In VB.NET-Built DLL
  144. Restoring a Minimized Application not working?
  145. Different behavior using CreateProcess vs. launching directly...
  146. escapa game development
  147. Dynamic Casting Problem
  148. linker error caused by class - help needed
  149. Encryption Help
  150. suggest me books on COM
  151. Trouble with Resource.h
  152. Help with writing a program to do this...
  153. OpenEmbedded guru needed
  154. Three Dimensional Shape Class
  155. error LNK2001: unresolved external symbol
  156. Array of Structures Problem
  157. need HELP writing this program
  158. Parsing CSV file with comments
  159. how to fix this error!
  160. LINK error: LNK2001: unresolved external symbol
  161. How to append int to char?
  162. CString Find Function
  163. Fax Service Provider -> FaxDevSend() function and FAX_SEND structure
  164. Unicode Fonts in Macros?
  165. removing pixels for a snake game
  166. MFC - How to set value of edit box on initialisation of dialog
  167. appending newline to an initialization file
  168. Button in dialog doesn't work reliably
  169. TR1 issue with Visual C++ 2008
  170. Sleep for a second for FindFirstChangeNotification
  171. arrays, void functions
  172. Convert HRESULT hex error code to string
  173. Best non-MFC alternative to CString
  174. IHTMLInputElement::put_value doesn't set editbox value?
  175. MDI - CMDITabInfo, CMDIFrameWndEx - drag and drop document.
  176. struct HINSTANCE in Service
  177. [MFC] Crystal Reports - how and when
  178. [RESOLVED] Unsigned Conversion
  179. [MFC] lost trying to retrieve text from an editBox
  180. VS 2008 and Platform Builder
  181. ...first confused step
  182. Understanding COM
  183. A problem with ofstream
  184. Service connection problems
  185. C++ Simple Game.
  186. IP_ADAPTER_INFO : AdapterName is not the name!
  187. Need Desperate HELP in finding a solution to a program please help!
  188. Trying to get mouse click coordinates
  189. [RESOLVED] Print preview in statically linked EXE...
  190. plotting functgions Visual C++
  191. Connect to a device
  192. C++ editor STEP INTO
  193. Endianness problem
  194. custom build rule
  195. [MFC] Tree controls .. messages and other stuff
  196. [MFC] Adding different views to Tab controls
  197. stumped on a buffer overrun problem
  198. How to expire an application/demo after x days?
  199. atoi
  200. want multi-instance com surrogate app
  201. [MFC] User made menu
  202. RichEdit and Headers
  203. Changes in express 2010?
  204. Creating Windows Service in VC++ 6.0
  205. ASCII Question
  206. How to display image
  207. [MFC] Problems when I resize the window
  208. c++ : looking away to implemnt this senario
  209. Tab spacing issue in list box
  210. [RESOLVED] Problem running an application in Vista Program Files directory.
  211. fmod
  212. Problem with running #winhttp.h#
  213. CFileDialog hides files when file filter drop-list changes
  214. How to get a USB Flash drive name
  215. how insert data in my code?
  216. Need help to QuickSort code
  217. Help with easy problem
  218. Dynamically create IDD_BLANK_DIALOG
  219. need some help. more details inside.
  220. Context information of scanning
  221. Noob help - simple triangle
  222. How read url link by WinHttp?
  223. [IIS, ISAPI] Detecting Disconnections with an HTTPS Client
  224. [IIS, ISAPI] Tracking What Response is Sent Back
  225. [RESOLVED] fscanf help
  226. Tree
  227. Array of CString in VC++ 8?
  228. Prevent Windows Explorer popup when USB drive is plugged in
  229. fatal error C1014: too many include files : depth = 1024
  230. Converting pointer to float.
  231. Tree view help
  232. Automke and Visual C++I've been using gtk-win32 and its associated libraries for abou
  233. Missing some .h files, by compiling code
  234. How can fetch Excel File Password by using excel automation?
  235. How do I link to my project?
  236. [RESOLVED] Array question
  237. [RESOLVED] setting Border to a Static Text in Dialog Box
  238. Auto Format file in Visual Studio - .cpp & .cs files
  239. Problem with strchr
  240. Another Noob Q
  241. Project linked to GSL -> Self project??
  242. Quick Help Simple Question
  243. Help with debugging errors
  244. How to convert string with double high/wide characters to normal string [VC++6]
  245. Forcefully Remove USB Flash Drive. How?
  246. Hoe Solve these errors?
  247. C++ Using the standard template library (STL) map example
  248. C++ Standard Template Library (STL) vector class example
  249. What is wrong with my code?
  250. Source code from Nyhoff book won't compile on Visual C++ 2008