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. CreateProcess
  2. setWindowExt limits to 32767 ?
  3. RASAPI32
  4. Silly but important question
  5. DirectShow anyone?
  6. SafeArray
  7. Service (NT/2000) with user interface
  8. How is MP3 to wave file conversion done? (Do I use directshow filter graphs??)
  9. char* to SAFEARRAY
  10. SSL across web servers?
  11. Threads and callback
  12. Collection
  13. URGENT!!! CreateProcess and shell script
  14. how to open a file with good application ?
  15. How can I get a valid instance of CCreateContext ?
  16. How to set Netscape Cookie (when we make HTTP req by VC++)
  17. Is blocking socket slower than nonblocking?
  18. Is blocking socket slower than nonblocking?
  19. converting char to float-help please
  20. When save and load file!
  21. sql2000 & c++
  22. Dialog and Visible?
  23. Error Text from GUI to CUI
  24. How to Intercept Printer Data?
  25. NT freezes processes when window is maximized
  26. Getting the value of a dialog member var
  27. GetVersionEx and winME
  28. more Dialogs please!
  29. NT Socket function "gethostbyname"
  30. warning LNK4006
  31. Why can I not create and add View ?
  32. ON_CONTROL_RANGE and ON_COMMAND for menu item chosen
  33. How to create a global file
  34. Working directory
  35. Resize drop-down list in a ComboBox
  36. DirectX8 Information?
  37. draw background lines in richeditctrl
  38. Dialog Question
  39. VB-Dll in c++
  40. CHttpFile to MSXML3 SaxParser
  41. Windows 2000 not sending WM_DEVICECHANGE message
  42. Getting MM_TEXT to work
  43. DirectX 8: Texturing 3D Text
  44. SQL question: How can I make a difference query?
  45. Bloating MS Access file
  46. CListBox & scrolling
  47. HOOKS
  48. CFSTR_TARGETCLSID
  49. How to write a number to a variable of a type VARIANT?
  50. Help on keyboard input
  51. HTML validation algorithm??
  52. Reading data from a txt file
  53. CObject error
  54. FTP
  55. Splash Screen
  56. create new document, but don't show view
  57. Change color of CDateTimeCtrl
  58. Worrd 2000
  59. Convert CString to char*
  60. HELP!!!!!!!!!
  61. Are RAW writes to USB devices possible?
  62. Help on File IO
  63. drag and drop
  64. Difference between assignment and copy.
  65. Drag and drop question
  66. Spin Control...Edit Box...Floating Point Vals
  67. How do I Get a Character's Format without selecting the text in a RichEditCtrl?
  68. CAsyncSocket Notification Functions
  69. COM lib files
  70. CAsyncSocket Notifications
  71. get rid of that File New dialog box
  72. Log on - Dialog Box
  73. UpdateData(FALSE)
  74. help: comunicate
  75. edit boxes
  76. Dll load problem on win95
  77. KillTimer
  78. dll load problem
  79. CFileDialog super customization
  80. Hex to Char!!!
  81. refraze my question
  82. Redirecting serial ports
  83. How can I make an ActiveX control respond to the Enter key
  84. Leaking Controls
  85. MFC combo boxes
  86. TRACE
  87. To SAVE or to SAVE AS... THAT is the question.
  88. display images
  89. MFC CTreeCtrl
  90. IIS 5.0 & Win2000 Pro
  91. What's the counterpart code to use dll in VC compared to in VB?
  92. CFile::Open
  93. Ending Application
  94. COM Server With Modal Dialog
  95. CListCtrl Sort?
  96. Tab control
  97. SMTP Question
  98. serial communication in win32
  99. How to bound CAdodc to CHFlexGrid in program??
  100. MFC Modal dialog in com server
  101. disable toolbar item
  102. How to get the http request headers in webbrowser control
  103. Debugging DLL
  104. #define and #undef and...
  105. FindFirstFile()
  106. Deleting spaces from a string
  107. Why my childFrame didn't show his own menu
  108. About MFC dll function?
  109. developing a ms-paint like application
  110. Visible Dialog
  111. how to restore app.?
  112. sending a frame
  113. PLS HELP ME!!!How to detect, is there a floppy disk in floppy drive??(in C)
  114. How to get dlg template data
  115. Downloading file using COM
  116. WINSOCK/ASP
  117. Dockable Window
  118. Custom Appwizard to create no MFC?
  119. spawnl Prob ....
  120. CTreeCtrl
  121. Authenticated Proxy Programming
  122. Accessibility ...
  123. change open file mode in MDI
  124. Buffer ...
  125. DDK
  126. Detecting Memory Leaks ???????????????
  127. About IConnectionPoint in DCOM
  128. How to create Dockable Window Can any one help ?
  129. HTML Source Code from WebBrowserControl
  130. How to put a ComoBox on toolbar at SDI Programe?
  131. DLL file
  132. IIS DLL cache
  133. CSocket::OnReceive()
  134. STL
  135. date format
  136. Making Virtual Drives
  137. How To Hide A Window i have HINSTANCE only for that window
  138. STL Not so fantastic ????
  139. How Can i find the Windows Handle of an Running Instance of Interner Explorer
  140. convert to basic_string
  141. how to make Start button ?
  142. Make Start button like on the taskbar?
  143. ListCtrl Partial Scrolling
  144. Use CWebBrowser class to enter information in HTML fields
  145. Use of ExecWB,confused
  146. Conrol colors
  147. Printing An ActiveX
  148. IShellFolder, IEnumIDList SHCONTF_NONFOLDERS causes user breakpoint under Win2000 debug mode
  149. How to Add ICON in a Menu
  150. Win NT memory problem
  151. Deleting Pointer / free memory of CWnd object
  152. Can i Hide A Window From My Prog (say i want to Hide Internet Explorer)
  153. In MFC how to define a Global variable.
  154. In MFC when how to visit the another Class variable.
  155. In MFC when I build a MDI.but how to get the child windows and dialog's handle.
  156. GeniunIntel? Celeron? PII? VC++
  157. does the string in the Edit Control have a terminating null character in it's end.
  158. How many ways to get the Client windows handle.
  159. question about the CObject
  160. how could I to distinguish with the capital letter and minuscule when I get the WM_CHAR message.
  161. Substring finding....
  162. A VERY COMPLICATED QUESTION?
  163. How to check the date is correct?
  164. where is _CrtDumpMemoryLeaks()?
  165. LoadIcon in InProcServer
  166. Adding ActiveX Controls at runtime
  167. Is possible to do this in a better way?
  168. is there any way to store a variable which is accessible throughout the project in VC++ or C++
  169. Using Combobox in MsFlexGrid
  170. Not Using MFC???
  171. Generating an HTML Form in C++ ??
  172. Visual C++ IBuildProject::AddFile
  173. How to import/export an Excel file?
  174. Click on link
  175. Init of Statusbar ( Statustext )
  176. Extracting Comments from A Word component.
  177. NetworkDDE
  178. MFC_CSplitterWnd
  179. Detect IE vesion
  180. How the hell do you use CTabCtrl
  181. CListCtrl and Windows Messaging
  182. Getting Table Names and Field Names
  183. Overriding template-based collection classes global helper functions
  184. Get pointer ...
  185. Installing an NT service on a remote host
  186. How to get http request headers in a Pluggable Protocol Handler
  187. Use RadioBox as option box
  188. SafeArray And char array conversion
  189. Distributed APP and MSDE
  190. ADO linker error
  191. Help! Help!
  192. Change a movie size (activeX)
  193. IDL compiler problem
  194. Is it possible to put tooltip and menus in the same line?
  195. CFileFind
  196. Installing an ISAPI Filter
  197. Serialization: 16 -> 32Bit ??
  198. Dll Link Error
  199. CRecord&Param?Help!
  200. Scrolling with MultiLine Edit Ctrl
  201. Access Violation in ldap_set_option(...) Is it bug or I am doing something bad?
  202. Can I use CImageList::GetImageInfo() to get a Bitmap handle?
  203. Mouse event & links
  204. crash when a new dialog is created...
  205. More fun with strings
  206. Serialize problems
  207. STL: How can I delete a <list>...
  208. COleDispatchDriver use
  209. How to use CWEBBROWSER class to enter information in HTML fields ???
  210. ShellExecute or CreateProcess
  211. Like Run commnad line
  212. Sorry - completely unrelated C++ issue
  213. Moniker doc
  214. Command line Build
  215. STL: string is auto-deleted ?
  216. unselection again
  217. Expose CB of CView
  218. FtpPutFile
  219. How to create icon buttons?
  220. (Re)Mounting a NetworK Drive
  221. Mouse hounter
  222. STL: <string> one question...
  223. CListBox
  224. PrinterName
  225. detecting double click in status bar pane
  226. SetFocus
  227. ASP - APIcalls
  228. CreateCompatibleBitmap fails for a WMF dc.
  229. Address in c/c++
  230. Passing a function pointer.
  231. How to tell when the user clicks "No' and when the user clicks "Cancel" to a SHFileOperation functio
  232. Deploying client such that it detects the server
  233. Toolbar button update
  234. Need freeware Xtreme Toolkit (CJLibrary) analog
  235. COleDateTime MANY hours off??
  236. How to load bitmap to push button
  237. creating Excel sheet
  238. CNTService and LNK2005
  239. .dll and IIS (sorry for the double post)
  240. Drag and Drop: Failure to register
  241. Embeding a dialog within another...
  242. Physical Drive Information
  243. Sockets in a Child Process
  244. Visual Studio IDE
  245. Any SGML gurus?
  246. How to find whether memory leak in DLL or in EXE???
  247. Problem with ActiveX component
  248. Raster Operation Codes when Printing (help, Feng Yuan!)
  249. LPDISPATCH as property of object
  250. Readonly file and File Save dialog