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. Tracker rectangle
  2. pointer problem
  3. Converting hex value
  4. launch a application from Web using ActiveX
  5. Access Violation 0xC0000005
  6. How to display files contain .bmp and .jpg?
  7. Getting handle to a linked library
  8. A permanent view (instead of a splitter)
  9. CRectTracker
  10. Radio Button Problem...
  11. same output for cryptEncrypt ? HOW :(
  12. File open dialog - filter string limit?
  13. Insert my Win32 window into an ActiveX
  14. How to resolve Stock Overflow issue
  15. My C++ MFC-app into a dll -> to be used in .NET app…
  16. Prevent resizing in splitter panes?
  17. how to display an image in a dialog?
  18. View doesn't always redraw.
  19. excel automation - creating/deleting/renaming
  20. how to crop an image in an application based on dialog? with vc++6.0
  21. "Damaged" ActiveX
  22. Why this BSTR conversion not working
  23. OnItemexpanding
  24. Help !! Counting characters of a string using pointers and pointer arithmatic
  25. Help!! Totalling Columns in a two dimensional array
  26. Check boxes in list control
  27. Help me please with this problem!!!
  28. Debugging: MFC components within a non-MFC project
  29. voice recognision
  30. PrintWindow - Undeclared Identifier
  31. Why case expression not constant in switch case?
  32. How can I make variables dynamically
  33. How to get the encoding list?
  34. Open file problem....Help.Pls..
  35. How to move a selected block of code to the left?
  36. How to select text in edit control programmatically
  37. CListCtrl auto scrolling problem
  38. LBUTTONDOWN Messages from a control?
  39. How to determine if a control is Enabled!!!
  40. C++ File reader
  41. CRecordset given read only exception
  42. How can i convert const char * to wchar_t *
  43. Set the position of dialog
  44. Hooks Problem.....
  45. Processing message pump?
  46. Retrieve Canofile
  47. Get the file name and extantion
  48. Create an INF file
  49. How can you read UTF8(unicode) without Unicode build?
  50. how to declare graphics.h()???
  51. How to declare clrscr()??
  52. SetParent
  53. How to always keep root item of Treectrl expanded
  54. Help me for folder operation
  55. sort and display dynamic data???
  56. Save bitmap in windows ce
  57. single COM instance
  58. Net Drive Label On Win2K
  59. How to download secured file ?
  60. how to serialize enums?
  61. Auto Listing
  62. ICQ Change password
  63. No Keyboard Input on ComboBox
  64. how can i give a color to the Bitmap present in menu at runtime?
  65. Get & Setting only resource DLL
  66. "GHOSTING" PROBLEM
  67. CEdit box selection XP & 2000.
  68. Disabling Process Button in a MFC form
  69. Input argument of store procedure
  70. Help with Tab Control w/ Prop Sheets
  71. Print multiple copies of a document
  72. What does this error mean?
  73. Problem building assembly project w/ MSVC++.NET
  74. Composite controls
  75. How to create an ActiveX Control in an ActiveX Control at run time
  76. Form Refresh Issues
  77. a questins about splitter window
  78. Problems with call to exported functions
  79. How to convert _variant_t to LPWSTR
  80. How can I find out which software is using the Serial port?
  81. Print Text document using printer settings (Please Help!!!)
  82. How to enable/disable the 'Close' button of your dialog at run-time?
  83. How to Start/Stop a background process!
  84. How to compress DICOM to raw format?HELP!!!
  85. Check input buffer
  86. How to use OleDB to Store an image in SQL server
  87. Question of dialog properties
  88. c2504 error
  89. ListCtrl Items Bloches while Scrolling
  90. Some kind of "cannot convert parameter 2 from 'bool " problem
  91. MessageBox X button
  92. Does VC++ support "friend" function?
  93. A Question about HttpSendRequest
  94. Logon/LogOff Session
  95. How to create an ActiveX Control in an ActiveX Control dynamically?
  96. DirectSound
  97. How to write in Docking Window
  98. #define win9x and nt
  99. Regarding PropertySheet in FormView
  100. how to shrink the database in VC++(MFC)?
  101. size of the database in VC++
  102. error in setting the range in Progress bar (VC++)
  103. Supressing output of application
  104. I used GuiToolKit, but what for predefined windows?
  105. VC++6 - LNK1112 Error
  106. Slider Control
  107. CString problem...
  108. File size Problem '_findfirsti64'
  109. Microsoft Visual C++ Runtime Library: "Buffer Overrun detected" (link.exe)
  110. rich edit resize
  111. A parameter problem
  112. Supported file types in DirectShow
  113. Center a bitmap on a MDI background
  114. Active Accessibility
  115. It does NOTHING when executing the program
  116. Doubt regarding modifing already created “*.dll” file
  117. Manually moving/resizing a property sheet
  118. Several writers to a txt file ?
  119. MessageBox Problem
  120. Keeping frames the same size between forms
  121. EnumWindows() In a Class
  122. Very Odd Email Problem
  123. Tooltip without hwnd?
  124. link error
  125. FFTs
  126. ODBC and C++
  127. SHChangeDialog API
  128. prevent deleting registry entry
  129. How to draw animated dotted rectangle?
  130. about dialog box
  131. ShBrowseForFolder
  132. VC++ and Crystal RDC/CRPE
  133. how to turn on the PC programmatically
  134. Adding a certificate file to a store
  135. changing number of columns in CListCtrl dynamically
  136. Site feedback needed and content also.
  137. IActiveScript and calling [scripted] object methods
  138. Accessing a WMP ActiveX object network interface
  139. Problem releasing CWebBrowser2
  140. Detecting New Mail in INBOX By ItemAdd
  141. SHGetPathFromIDList doesn't work for network folders
  142. Captured camera images to bmp. Pls assist!
  143. Execution error
  144. How to implement CImage box in TooolBar
  145. Set title bar text dynamically????
  146. cofused! what's wrong with the code?
  147. Bitmap file help..
  148. Creat configure file (*.cfg) ?
  149. Serial Communication
  150. GetPathName problems...
  151. How to hide buttons?
  152. Font Size conversion
  153. How to use #pragma directive
  154. Writing to an Compiled VC++ 6 Application
  155. error C2065: 'UuidCreateSequential' : undeclared identifier
  156. Real time data representation
  157. Problem with ListCtrl while using Manifest file for XP Look
  158. How to get the deleted character
  159. Limits on number of TRACE commands
  160. ATL 3 vs ATL 7
  161. Vehicle/Car detection
  162. GetUserProfileDirectory?
  163. skinning the slider control
  164. Adding new PropertyPage to propertysheet from PropertyPage OnWizardNext event
  165. Deallocating Arrays of Structs of BSTRs...
  166. what's afx_msg?
  167. Program security
  168. TCHAR / Unicode ?
  169. display a bitmap image file in black and white
  170. MDI Application settings
  171. Program Security
  172. MFC Dialog and Excel
  173. header and implementation files...
  174. Line-by-Line BkColor in CEdit
  175. Right Click menu blues...
  176. The include for registry.h
  177. Prevent another application's dialog showing
  178. Play WAV over TAPI
  179. Catastrophic error in Release Mode
  180. Reading a BIN file
  181. Problem getting item info from CListCtrl
  182. Setting up windows hooks
  183. ADO : problems deleting a record
  184. threads... or timers...:confused:
  185. Close a Window By Click on it
  186. Connecting to a SQL database using VC++ 6.0
  187. how to resize the systray to fit my clock replacment?
  188. DLL problems
  189. stl std::string clean-up?
  190. pointer to pointer
  191. Can we have different font for different rows in a flexgrid control
  192. how to detect time???help me....
  193. Problem reading an array
  194. Virtual Keys
  195. how to display scanned image on formview
  196. Converting CString to CLongBinary - storing formatted text in OLE object field
  197. Is there any way to run a VC++ Form in browser?
  198. What does CString.... Init() Do??????
  199. Unresolved Externals Problem in VC 7
  200. How to launch a process through VC++ debugger from command line?
  201. Common dialog
  202. How to determine which service pack is my visual c++ ?? Where to get service pack?
  203. controls in CMainFrame
  204. where the deleted character stored?
  205. Is Service ?
  206. Com ,VC++ ans Smart Pointer
  207. custom HRESULT codes
  208. gethtmldocument
  209. How to link the command prompt with c++ program?
  210. Error in opening serial port
  211. Using Anti-Aliasing with CDC
  212. ComboBox SetCurSel()
  213. CDHTMLDialog and toolbar
  214. STL NULL Pointers
  215. Save As Dialog
  216. Unable to debug project
  217. give me topic tht help in vc++
  218. a question about keyboard event
  219. ADO : adding a new record into an empty database
  220. Draw a Cube with MFC
  221. Tree control
  222. Coordinates in CDC
  223. SetCapture and CListCtrl
  224. how to remove *.obj file from *.lib...?
  225. Screen resolution
  226. Get Current Printer Config Values
  227. How to link a static-link library?
  228. catching an underscore
  229. Multiple Image Controls
  230. MSDEV.exe
  231. How do you close a program from another program?
  232. Deleting text from edit control
  233. Accessing Splitter CView
  234. Tray Icon Not Displayed In Terminal Services Window
  235. HashTable in VC++6.0
  236. Link dependency issue in VS6
  237. How can I Run a Windows Program without being in the Task Bar?
  238. Mouse cursor outside dialog
  239. empty box in front of unicode string
  240. how to save unicode string
  241. Accessing Child Control
  242. Problem with MFC ActiveX Control
  243. Debugging
  244. Problem setting bitmap to a button
  245. Problem with program/txt files...
  246. Display an image on picture control at runtime
  247. CcomboBox question
  248. Windows Bit Fields!!!
  249. NTService in Win 2003
  250. opening a .lnk fails