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. What window Message_map function should I use?
  2. Adding event handlers to controless buttons
  3. How to set the default Document Template When the program have several ones
  4. Retriving the filename and path from a HANDLE to a file.
  5. Setting Hotkeys without Hook?
  6. how to add finctionality to a menu,toolbar item
  7. write a firewall?
  8. urgent! accessing hardware port
  9. OnCustomDraw ?
  10. how to add msdatagrid ocx to an SDI application
  11. CFileDialog created in C++ .NET doesn't work under Win98
  12. How to copy text to clipboard, so that it can be reterived in MS-Excel???
  13. how to open a file when the filename is double clicked in an excel sheet
  14. Whait is __vfptr ??
  15. CString: substring removal
  16. Please Help:i Cannot Seem To Access Any Controls Outside The Property Sheet?
  17. AfxGetInstanceHandle assertion fails
  18. Help me detect whther JVM is running or not
  19. How to get Domain Login Users Info ?
  20. Which recordset to use CRecordset or CDaoRecordset with Ms Access database?
  21. Differences of MFC
  22. how to display dialog in maximized view in a dialog based application
  23. Broadcasting App across network
  24. Transferring data between process
  25. WMI remote connection
  26. how to show the png photo in my program
  27. WM_RESIZE - Can Capture in Parent ?
  28. Get All The Computer in The Network
  29. how to load a small Icon and a text string in a combo box ???
  30. Calling Visual Bacic Sub from ATL Object please help!!
  31. Problem getting VARIANT from DCOM-Methode
  32. create CDialog inside SDIView boundary
  33. Pass m_pDatabase to CDaoRecordset after recordset constructing
  34. How to keep track of how many files were made/downloaded through internet on computer
  35. Debug Assertion Error
  36. threads and variables
  37. CriticalSection Problem
  38. Dialogs and missing BMP's
  39. Closing other Programms
  40. Help with arrays
  41. need help with simple math program
  42. MDI questions
  43. CMapStringToOb
  44. Outgoing bstr from ATL control
  45. Missing .tlb file during compile
  46. transtion between dialogs
  47. printer font
  48. can I get mouse cursor icon on other window?
  49. ATL CAdapt and STL
  50. Complicated Situation - Need Help Plz
  51. WTL in action
  52. complicated template
  53. Problem with beeps during execution (debug & release conflict)
  54. Thread and Transactions problem
  55. Mfc
  56. MS DataGrid control not shown?
  57. Cannot access the Running Object Table
  58. Drawing Rich Text on CScrollView using VC++
  59. gnet protocol
  60. Sending extra parameters to Doc/View - is this anti genius approach!
  61. is it safe to distribute debug version?
  62. WndTopMost ?
  63. Creating favorites in IE programatically
  64. Debug can run, but release cannot
  65. Dynamic Global object question
  66. Help with registry key value.
  67. UrlDownloadToFile
  68. user input in while-loop
  69. How do I detect XP display style?
  70. sorting arrays
  71. class access problem
  72. Net Meeting Data Channel
  73. How can i compare two doc documents , without MSWord installed
  74. Mixed linkage
  75. Doubt on HeapAlloc
  76. registry keys removal
  77. Doubt ! Getting MAC Address ?
  78. Runtime image?
  79. bubble sort
  80. worst case
  81. ArrayList of objects
  82. LogonUser function
  83. Postmessage
  84. Can you tell me how to use a tool bar in the dialog box?
  85. How??
  86. How to wait until my CheckAck() do his job ?
  87. Different function is getting invoked
  88. Insertion Sort is just inserting and not sorting? (slightly urgent)
  89. Basic 2d Graph
  90. Use CToolBarCtrl to check a button in the toolbar
  91. Animate
  92. CDateTimeCtrl and ddx_Field trouble
  93. Please help: obtaining DaylightDate and StandardDate
  94. Color of the upper edge of push-button
  95. Passing Multiple Enums To A Function
  96. CPoint[5] array into a CArray
  97. sscanf() ?!?! filtering for alphanumeric and numeric strings!
  98. Resize a CDialog
  99. How to make a canvas like the one in Windows Paint
  100. Problem with object scope...?
  101. activex control collections's item
  102. Setting integer value in DataBase by ADO
  103. how can i change the default color of view
  104. Status Bar Height Change
  105. tapi - recieve a call in VC++
  106. When building a Setup Project...
  107. MFC drawing confusion - WM_PAINT
  108. how to use ACTIVEX DLL in VC
  109. scale of x and y axes
  110. How can I display the dynamically created split views?
  111. Registry Watcher
  112. worker thread / cpu usage help!
  113. Worker thread that didn't block message queue from seriall port ?
  114. Menu (Very Urgent)
  115. String to double?
  116. what does it mean? "exited with code -1 (0xFFFFFFFF)."
  117. Database Programming
  118. delete problem
  119. error C2146: syntax error : missing ';' before identifier 'lpdd' ... huh?
  120. a question with reinterpret_cast.
  121. base class and derived class pointers
  122. non attribute class with contructor to call srand
  123. Create invisible layer with bitmap like an icon
  124. How to include image in output dir.
  125. how to get active explore's url and content
  126. Test ADO connection
  127. CBitmapButton Tooltips
  128. How to add image to CBitmapButton
  129. How to add menu at runtime ? URGENT!!!
  130. Mapi
  131. CSocket::GetLastError problem
  132. Error with VC++ 6.0 compilation
  133. Confusion...........
  134. How to know contents on a ftp server has changed since last visit
  135. Unsupported Operation..?
  136. Wrong icon is displyed on "right-click on the exe"/"General tab" page.
  137. Recordset not sorting
  138. How to start MultiProcess ???
  139. Compiling Problem
  140. Write to file using 2 decimal places?
  141. Unicode string
  142. Service Problem
  143. How to disable an item in a 'droplist' type combo ?
  144. static array
  145. How to serialize a pointer to an int?
  146. examples for graph. views
  147. image to .BMP converter
  148. Memory leak with SAFEARRAY via COM
  149. copy string tables from one project to another one
  150. How to create a PUSHLIKE button
  151. Some question regarding threads....
  152. project properties
  153. COlePropertyPage + CPropertySheet
  154. Applying templates to Word document
  155. unbold font how?
  156. a CWebBrowser2 bug...anyone to fix?
  157. displaying tooltips
  158. Word OLE undo problem
  159. OnDraw of CView Class ??Confused!!Urgent
  160. Force?
  161. Unicode dialogs: question marks and squares
  162. Errors with mmioWrite()
  163. COM question
  164. JPEG compression and size
  165. Why the Print preview is not similar to Printout?
  166. Cause of the crash (testing activex)
  167. manifest and custom drawing
  168. Word Processor
  169. DAO query by array long[] numbers
  170. BHO and Explorer (not Internnet Explorer)
  171. bizarre but interesting problem
  172. Adding Help and Apply button in property sheet dialog
  173. Deriving from CSplitterWnd problem
  174. how can I copy a com interface?
  175. Automating Multiple Versions of Excel Applications?
  176. URGENT:ActiveX DLLs
  177. How to use CWinApp::SetRegistryKey?
  178. URGENT: DLL Use
  179. Problems by getting current sel Item Outlook
  180. Accellerators applicationwide?
  181. Record and play back of mouse clicks
  182. Service application and parallel port
  183. coincidence or allowable?
  184. wiaCommandTakePicture
  185. Overwriting and Deleting of lines in a file
  186. Dynamic controls and tab order
  187. How to delete an exception in heap within a catch all statement?
  188. How to play a video and read the time position of it?
  189. How to activate a single instance dialog based application?
  190. CStatic on th Desktop
  191. CArchive and C FILE pointer
  192. exporting application problem, help!
  193. HowTo: Make netscape invisible.
  194. Effects of using /Zm (setting compiler's mem. alloc. unit)
  195. Basic question relating COM
  196. Building chatter.sln - How To
  197. comparing parameter types
  198. A problem with the balloon's timeout in NOTIFYICONDATA!!!
  199. Getting info about a Socket
  200. ToolBar - How to set transparent background color?
  201. simple math (power/factorial) help needed
  202. Wild pointer??
  203. CBitmapButton problems
  204. CFile - opening just for read
  205. Returning BSTR from a C++ activeX
  206. how do i concatenate an int to a string?
  207. Getting all open ports
  208. DockControlBar debug asserted
  209. Wierd Problem
  210. CxImage
  211. ofstream check if file exists?
  212. destructor problem
  213. HELP! Problems when serializing an CObArray Object
  214. Dynamic creation of multidimensional array
  215. Visual C++ & compiling with the SRGP graphics package/library
  216. struct tm question
  217. Overwrite and Delete lines from data file
  218. Deleting item from the stupid list control
  219. Korean font problem
  220. concatenating Stings in Managed C++
  221. How to disable the Microsoft SQL Server Login...
  222. how to find if an object is created using new?
  223. Display a Form
  224. Menu bar Disabling
  225. LOGFONT -> CFontholder Object
  226. Spawning Multiple Instance Each Listening to individual Port
  227. Icon
  228. Overwriting and Deleting of data in a file (VERY URGENT)
  229. cchXXX
  230. how to display error listing in c++2003
  231. using help button of CPropertySheet
  232. any Tool to extract resource id( dialog id, string id)?
  233. Focus Losing Problem
  234. Problem related to positioning of text when zoom in and out
  235. How to make my application win64 compatible?
  236. Does COM require MFC?
  237. Disable devices from registry
  238. ALT + key
  239. A question about C++ object with thread..
  240. OnInitDialog not called
  241. afxres.h RC1015 in release, no error in debug
  242. System-Modal MDI App
  243. how do i know whether the screen changed or not
  244. HELP on editing Compiled Resources pls!
  245. WH_GETMESSAGE procedure
  246. Image-procesing: Barcodes
  247. String processing
  248. Getting a controls handle
  249. Searching Files in some directories
  250. Circular class references