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. Unicode
  2. File Sharing
  3. Getting a dialog's dimensions(CRect) before it's created
  4. com port communications
  5. about CRichEdit
  6. autohits generator program for a website
  7. Dialog dimensions
  8. DLL WON'T WORK
  9. Using FTP to transfer fles between 2 remote computers rather than between one local & one remote com
  10. Converting CRect into Int
  11. Crystal Report Viewer message: "Physical Database not found"
  12. How to create a static with highlighting?
  13. How To Zoom Bitmap in VC++
  14. Delete an IE cached file
  15. how to use SHAutoComplete of IE in combobox
  16. ACM(Audio Compression Manager)
  17. Incoming Call problem in TAPI
  18. My dialog app Crash when receiving return value from the DLL. Why?
  19. Does anyone know how can I import class to my dialog apps, I have no luck via DELAYLOAD LINKER
  20. How can I detect CPU speed (MHz)?
  21. What API functions can I use in programming mainly with Visual C++6.0 MFC's?
  22. Problem in making a field !
  23. Hiding open windows
  24. Opening another dialog from my main dialog.
  25. a template problem
  26. disappearing listview item images
  27. Console in SDI
  28. Conversion
  29. in DirectShow,How do I config the mpeg audio decoder filter' property
  30. ASCII Text Help
  31. connectable objects
  32. Title bar Icon
  33. IComponentRegistrar
  34. about thread.. UINT threadfunction
  35. HTML ctrl in a list window
  36. has anyone worked with...
  37. Alpha blending in Windows98 and older?
  38. How do I find FilePath via GetLastWriteTime?
  39. Class constructors and inherited methods
  40. Convert String to Hex
  41. global functions
  42. getline() parameters
  43. getline() parameters
  44. Simple test prog: moving text from one edit box to another
  45. Weekend
  46. strings and substrings
  47. strings and substrings
  48. Getting Global KeyMessafes
  49. Printing/plotting
  50. static text
  51. Looking for some help here??
  52. BotWarrior - An online strategy game in which bots/players play.
  53. Problem with saving a BITMAP
  54. How to increase the font in the Visual C++ IDE
  55. linking dialogs to the main application
  56. CTree nodes
  57. Pointers as arguments
  58. How to create a dialog app with derived classes
  59. Graphic card and compare 2 bitmaps?
  60. System Menus
  61. Newbie asctime question?
  62. Combo Box control is empty
  63. How to make an installation application
  64. Launch VBScript Macro in VS editor from external application
  65. Handling Static Rollovers
  66. VC++
  67. Modify default value
  68. I don not know whther a node in tree control is expanded or collapsed?
  69. Access Violation
  70. Copying a running exe
  71. Need some information about VBA
  72. Need some information about VBA
  73. Moving the Dialog Box Contex
  74. GetExitCodeThread throwing exception when using ODBC
  75. simple - How to use WebBrowser in a Dialog ?
  76. OnCtlColor doesn't work !!
  77. How to add bitmaps on Dialog boxes
  78. operator=, char=class
  79. Anyone have experience with the WM_USERCHANGED
  80. Sending file through Local Area Network
  81. Char
  82. Sending file through Local Area Network
  83. Unicode compile
  84. Question about IE?
  85. Scroller tutorial
  86. How to show a BMP image on full screen ?
  87. How to play .wav file ?
  88. Can VxD work?
  89. RasDial or other
  90. Calling a html script
  91. DLL Problem
  92. Help please: DdeConnect Failed
  93. Scrolling the contex of a Dialog Box.
  94. debug activeX ?
  95. How To Overwrite Data To File "Cleanly"?
  96. my tool bar dosent work!
  97. Code to close a program?
  98. Create/Open then Set Value to Reg...
  99. Trouble displaying files in dir in listbox
  100. Attaching a help file to SDI
  101. command line arguments
  102. Simple problem with CFileDialog
  103. Dynamically create/destroy controls
  104. windowExt( ) ????
  105. MFC arrays
  106. How to Initialize a Structure
  107. Display a snap on Dialog
  108. MSG structure
  109. Missing 'mstcpip.h' file...
  110. Perimeter and Area of a Rectangle
  111. How to initialize Array at Run Time
  112. How Can Show a .gif/ image on a Dialog Box
  113. Communication between two applications
  114. MAPI
  115. How to get newtwork share name programmatically???
  116. Converting functions
  117. Win98 Vs Win2k & WinXP
  118. I need help!
  119. serializing the clipboard
  120. dialog box
  121. returning an array of characters or passing a reference of an array of characters from/to a function
  122. How to improve sound
  123. Problem related to Dialog
  124. Question of displaying the table!
  125. Coding Standard
  126. PostThreadMessage and AfxMessageBox
  127. Help about PlugIn
  128. How to send mail with attachment via Outlook Express
  129. problem with setwindowplacement
  130. How to use the gettimeofday() in Visual C++ 6?
  131. merging pdf files
  132. Error when running release on test machine
  133. Event Action
  134. SNMP Agent extension
  135. vc++
  136. CDialogImpl help
  137. How to get a document loaded into IE
  138. Dialog
  139. How can i use GetComputerName function.
  140. Mapping Modes in VC++
  141. Change Mouse Cursor in MDI Application
  142. Compilation problem
  143. Overload the three buttons?
  144. Retrieve status of Netscape Communicator
  145. how to make a folder Shareable/unshareable programatically
  146. Selecting a ListView item from code
  147. Calling an html script
  148. 3 timers at the same time?
  149. RegSaveKey
  150. Hooking into a dll
  151. Array of classes
  152. a program about graphic program
  153. Service & COM
  154. How to display a 16-bit picture on the Splash window?
  155. Error! Please help
  156. drawing over a CHtmlView
  157. a program about graphic program
  158. Scroll Bar in MainFrame
  159. In the name of Visual C++ : Prospects of an e-mail client
  160. display rest
  161. Help me in taking inputs ... PLZ !!!
  162. Writing to a ASCII text file with delimiters
  163. Change size of menu item
  164. How to get a class pointer from an interface pointer
  165. Hoe to Generate SNMP MIB's and Post data
  166. ATL Com - Multiple Aggregation
  167. Need code for string parsing
  168. change colours
  169. Tiling of MDI child Windows
  170. Problem Please help!
  171. Convert to DLL
  172. mixing bits to get char
  173. Mouse deactivate
  174. Why RichEdit20A scroll the contents of the CRichEditCtrl in view ?
  175. How to run esql statements for sql server in vc++
  176. DSN less Connectivity
  177. Convert to DLL
  178. Urgent Win32 Application
  179. Substitute for delay()
  180. Structure question
  181. Set font and background color to CEdit control
  182. ODBC-Excel : how to write "[" into header (field name)?
  183. ODBC-Excel: how to write upper delta character?
  184. Outlook automation help needed
  185. html help
  186. COM CreateEvent and OpenEvent
  187. CObArray
  188. combobox
  189. Debugging DLLs
  190. create dynamic toolbar -- Get a toolbar or dialogbar
  191. CRC-16 Algo
  192. Dynamic 2D Array Handling in VC++
  193. Polygon intersection ==> urgent!!
  194. ActiveX Movie Control
  195. out results
  196. List of installed ODBC drivers.
  197. How to get HWND?
  198. OLE structured storage......reading a OLE SS file?
  199. Is this a memory issue?
  200. how can I convert a CString into a float value?
  201. Read and Write to a hard drive sector
  202. Using Property Page to Display ODBC Database
  203. Font size problem in CRichEditCtrl?!?!
  204. #ifdef code compiled in?
  205. How to read a sector on HARDDISK with VC++?
  206. Setting the window's minimum size
  207. Rich Edit Control
  208. tiemsetevent compile error
  209. Who made RSA?
  210. Getting Cell Height from a LOGFONT struct
  211. MessageBox
  212. Trouble accessing View from PropertyPage/Sheet OnSetActive() member
  213. Reading binary data
  214. A 16-bit C++ Program
  215. Mouse Wheel..
  216. Getting COleException DISP_E_MEMBERNOTFOUND when no Ole used
  217. Group Box's Caption
  218. accessing mmbers varialbes/function from a thread
  219. Problem related to Dialog
  220. Windows Media Player Control GetCurrentPosition
  221. what does this debugging information mean? URGENT!
  222. DirectShow- IMediaControl::Pause: works for 1 graph but not another
  223. What's wrong with this code?
  224. Stopping CDocument auto closing
  225. Whats the meaning of this
  226. no messages for buttons from CDialogBar template ???
  227. Making a chime
  228. Determine if mouse wheel exists
  229. MFC40D.DLL file
  230. VC++ projects using Xerces
  231. How to protect Folders?
  232. Creating a modeless dialog and modifying it's style... not working.
  233. Casting arrays
  234. round the data
  235. problem with sorting CTreeCtrl
  236. Activex DataSource Control
  237. Tab Control
  238. CEdit does not remove the old text
  239. How many bytes is delivered by CAsyncSocket:Sent()?
  240. I am crashing with - "Could not queue on APC routine"
  241. Interface
  242. what's wrong????
  243. Need C++ Excel API
  244. Read data appended to exe
  245. X Button in Property Sheet
  246. MSDN
  247. LsaLogonUser
  248. Creation of frame window for 2 childs?
  249. Which is the best place in registry to write version number?
  250. how to clear screen and reposition the text pointer in command prompt?