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. Compiling a smaller project
  2. NULL CDialog when open from another CDialog
  3. I need some help.
  4. Whats wrong?
  5. CoGetClassObject failed 0x800700c1
  6. Please help. Access violation reading location 0x00000087
  7. [RESOLVED] Need HELP in MULTISELECT CFileDialog ??
  8. __declspec(dllexport) and __declspec(dllimport)
  9. help on scrolling a list view
  10. Link error
  11. Problems with sources
  12. im trying to make a Random letter a number generator (key gen )
  13. CPU eating code
  14. I'm using CButton SHOWWINDOW(SW_HIDE) or DESTROYWINDOW incorrectly, help me.
  15. diffrence between _T and L
  16. (Military) Time Checker for simple program?
  17. Trying to create a CString reader (Char by Char) using a timer
  18. How to save "CcImage" type to 24 bit bitmap??
  19. Converting C to C++
  20. The enter key in a edit box
  21. trouble assigning a varible to an array
  22. How can I get SHBrowseForFolder dialog to display the 'New Folder' button ?
  23. usb handle
  24. Tranfer of media files from home pc to portable media player
  25. Dock control !
  26. how to read registry items
  27. IP addr of the Terminal Client!!!!!!!
  28. GINA stub
  29. Oracle database connection string
  30. CPropertySheet
  31. help me get rid of this debug error!!
  32. how to pass an array to function
  33. CStdioFile Possible bug
  34. break for loop
  35. A difference between C and C++ (pointers)
  36. DestroyWindow doesnt work !
  37. Having problems outputting CString with varibles to textbox
  38. subst
  39. problems with my code, not sure why
  40. About CStringArray
  41. Tool steals focus?
  42. A question about excluding stdafx.h
  43. Wizards:making the various pages "communicate"
  44. Only one CDaoDatabase object.
  45. Writing AVI continously to file?
  46. Variable number of args (...)
  47. Need HELP in WS_EX_LAYERED Dialog and in WM_NCHITTEST!!
  48. How to recover date from server timer?
  49. how to programatically get the selected radio button
  50. n00b Question?
  51. Link error with lapack++
  52. Help!
  53. Help plz to include lib
  54. Need Help - May Pay
  55. convert wide character (Unicode) to multibyte or single byte string
  56. Problem with Browser Dialog !
  57. Showing busy icon
  58. Opening a new browser using createprocess
  59. programming serial port in visual c++
  60. [RESOLVED] Dialog moving problem
  61. How to connect by http to server for recover server date...
  62. How to prevent loss of encrypted data when userlogin password changed
  63. E_outofmemory
  64. 'CObject::operator =' : cannot access private member declared in class 'CObject'
  65. strtok delimiters
  66. plz Can any body help me ?
  67. #include <math.h> ??
  68. ActiveX and browsers other than IE
  69. Configuring TIMER in a serial communication Prog
  70. Changing versio and ToDo in release exe
  71. Problem with TextBox and MFC
  72. How to define the correct application icon
  73. how do i convert these values???
  74. How to Disable a Menu Item In Win32 SDK
  75. Issue with ON_WM_HELPINFO in CPropertyPage
  76. How receive date from server time?
  77. serial port communication problem
  78. [RESOLVED] Problem of ONLBUTTONDOWN
  79. Extracting or referencing a website's favicon.ico
  80. How to make Dll Registerable ???
  81. Adding \0 at the end of strings.
  82. [RESOLVED] com on 64bit
  83. How can I convert CDBVariant (date) to COleDateTime ?
  84. About drag&drop in CTreeView
  85. accessing the seial port using visual c++.
  86. [RESOLVED] setwindowpos() problem (only me?)
  87. LOL - "term does not evaluate to a function taking -22 arguments"
  88. ATL COM Question
  89. Help can't undestand the errors
  90. Can I use 2 languages in a single project file in Visual Studio?
  91. Read text from file into an array
  92. OnDropFiles() problem
  93. Question about ATL - add and control Composite control
  94. #import "Test.dll"
  95. Http upload
  96. Programming timeSetEvent() in VC++
  97. Is there a way to use mathlab libraries witout installing MCR?
  98. PNG Images on CButton
  99. How to Get Notified on Time Change ?
  100. how to solve this runtime error
  101. error C3121: cannot change GUID for class
  102. "adding tones"
  103. Need Help in Alpha Text Dialog!!!
  104. How to get paremeter of other control(newbie)
  105. Serial port WaitForMultipleObjects() problem
  106. ShellExecute over a socket
  107. Programming timeSetEvent() in VC++
  108. CRuntimeClass synonym
  109. Building your own installer
  110. Playing .wav file by click a button
  111. Problems with creating a simple Excel-file from within C++ function
  112. External button click to an ATL Button?
  113. what's possible problem when I got Invalid Address specified to RtlFreeHeap?
  114. Working with Files/Directories
  115. scanner autocrop
  116. Send an email from a service?
  117. Newbie trying to get Child Windows to work
  118. The transparent panel
  119. CRecordset error: data already fetched for this field
  120. I have an existing application that I'd like to run on Windows Mobile, please help!
  121. How to generate a .lib for a dll?
  122. How to get the first word from every line from a file?
  123. CSplitterWnd: Input Focus won't stay put
  124. Overflow
  125. Disable dialog controls during run time
  126. CImageList problem clearing previous image from a control.
  127. help! problem in gdi library?
  128. listbox subclass
  129. Trigger to initiate a new application
  130. "using playsound()"
  131. Any body have idea about my problem
  132. MSHFlexgrid - Font Bold problem
  133. Window message to run befor any .exe file.
  134. How to Change Color
  135. Problem in MakeFile project
  136. [code] Saving text from editbox into textfile.
  137. Assertion help me
  138. Convert Excel file to csv file in Visula C++
  139. CTreeView control - problem in recognize item that was click.
  140. FindWindow how?
  141. list ctrl rows displaying same value
  142. "Importing .Gif files"
  143. Tokenizing CString
  144. [RESOLVED] Visual C++ uses
  145. Q: Copying HDC ...
  146. Can I know if an application is running?
  147. Do something every 30seconds?
  148. Sending WM_COPY message to IE.
  149. cedit control doesn't accept changes
  150. WTL Ctreeviewctrl
  151. Compile Error initializing array of struct w/ object
  152. need a little help
  153. About DLL distribution
  154. Problem with two dialog boxes
  155. Read from microphone or line in (audio) plug
  156. Run program :/
  157. PropertySheets as Wizards
  158. [RESOLVED] OnClose(), OnDestroy() or something else?
  159. Visual C++ any good?? for programs need low level access to HDD??
  160. MDI Child View Prrblem
  161. Need help in internet programming
  162. Help me in using CMap
  163. Over riding the Windows default taskbar popup menu.
  164. help required, its urgent
  165. Opening Browser using Createprocess
  166. How to create DSN dynamically
  167. Multimedia timer unprecise
  168. Have to list out in WMplayer if any portable audio players are connected to pc
  169. Setup and Deployment issue
  170. Limiting XP visual styles
  171. Again serial port threads
  172. How to make app request Admin rights in Vista
  173. How to disable CButton
  174. nmake troubles
  175. Game Help
  176. help me sort my class, please!
  177. listbox sb_vert
  178. [RESOLVED] Controls in DialogBar
  179. Create a wrapper (.h) for a .LIB
  180. Checking the data bytewise after receiving serially
  181. Reducing a process' CPU time
  182. Problem deallocating heap memory for CRecordset objects
  183. Change Icons For Associate Files
  184. Edit controls - why the difference
  185. Replace Image HELP??
  186. Initializing data at sub dialog
  187. Poll: Do you use control variables or GetDlgItem?
  188. Help I don't know why my program crashes
  189. How to get Running Programs in Taskbar and TaskManager ??
  190. Serial Programming
  191. Two Dimensional Arrays and Pointers
  192. find treeview selected node index or name (WTL)
  193. Anyone working on Windows Driver Kit---Please Help me(URGENT)
  194. Calculating a value that is stored as a string
  195. Debugging Word 2003 using Trap flag
  196. Obtain text from a textbox with MFC
  197. How to include .lib in Visual C++ .NET 2003
  198. Disabling Ctrl + Break
  199. auto_ptr reset not compiling
  200. A C++ program that will launch a *.cmd read from an input file
  201. Graphics issue
  202. Calling variadic functions
  203. max uint nID value
  204. Need Direction on Graphical Implementation
  205. Referecing one array to another
  206. open file without using menu options
  207. Unit conversion
  208. How to release a .obj or .lib file containing a dialog-based application?
  209. How to change a text of CMenu
  210. outlook in mfc Application
  211. MessageBox Problem??
  212. Self-CRC
  213. annoying c2664 error
  214. Try/catch question
  215. Edit box font problem
  216. how to declare an array?
  217. Application structure question (sharing class objects)
  218. [RESOLVED] SafeArray/idispatch issue
  219. Disabling menu items
  220. Calling Event from another Class
  221. sprintf fails when Decimal SYmbol change to comma and digit grouping symbol to dot.
  222. MSCOMM and Windows RS232 Buffer
  223. Working with HTMLDialogs
  224. Editbox in FormView
  225. Lose class information
  226. Move mouse in two windows
  227. "Static" edit box
  228. dao programming
  229. Stack overflow before program starts
  230. Dynamically linked .dll with default parameter, possible?
  231. Deployment project problem VS2005
  232. effective way of waiting on a reply
  233. Default beep when clicking in list control
  234. How do I completely pause my program and wait for a key hit?
  235. How to get notification for check box in CTreeCtrl ?
  236. [RESOLVED] Group box with checkbox in caption
  237. Get _RecordsetPtr values on debug time
  238. Serial buffer flushing
  239. arrays and constructors in a class
  240. IHTMLElement undeclared identifier
  241. Read and update a .ini file
  242. How to hide scrollbar while drag it moving?
  243. CToolBar - Bottom Border
  244. Visual C++ CFile.read runtime error
  245. How to import a console application project into a MFC project?
  246. how to make dll library???
  247. [RESOLVED] Fatal Error C1083
  248. Insert query to Access from VC++ Windows App
  249. Regarding MBCS and UNICODE
  250. can vs c++ free edition do code for symbian phone