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. How do I Stream audio from avi into a wave file using AVI api?
  2. buffer size in single document interface
  3. inital directory in CFileDialog
  4. Displaying large amounts of data
  5. CRecentFileList Whats wrong?
  6. Thread Local Storage in DLL
  7. Problems with Property Sheets in DLL
  8. C++ and MQSeries
  9. Receiving Winpopup with mailslot
  10. Work with preprocessed file
  11. Article describing DevStudio color picker hook
  12. C\C++ statistical library
  13. Making an application system modal
  14. Use getc for strings or how to get a FILE* pointer from a string
  15. Events in automation components???
  16. Cast operators
  17. Printing Windows 2000
  18. STL
  19. Who's logged in to that WorkStation?
  20. Hooks question
  21. Need a function to convert a DNS to a IP address
  22. Copy/Paste formats...
  23. Ethernet listener
  24. ODBC and VFP (.dbf)
  25. Need to know a specific raster operation dealing with Bit/StreachBlt
  26. ActiveX control
  27. two questions on splash screen
  28. Stored Functions
  29. Sorting Item in CListCrtl
  30. Printing from database
  31. MDI Application
  32. Data Transfer Rate
  33. Network connection
  34. Help Needed CDocument/CView
  35. about caret!!!!
  36. how to change a 8bit bitmap to 24bit
  37. Stretching Bitmaps
  38. VC++
  39. Installed software Checking
  40. control winamp
  41. Database in Dialog Based...?
  42. ICON
  43. Initialize modem string with TAPI call
  44. Call something from dll
  45. Sorry, can anyone help me?
  46. CFileDialog
  47. Find cursor
  48. Hi To Display formated text in my dialog
  49. DX surfaces...
  50. Size of pane
  51. Transparent Bitmap
  52. How to create dll's
  53. "append data into file"
  54. Static library and dll library
  55. Mouse position
  56. Insert "\n" into Word 2000.
  57. Set the active Window.
  58. CMainFrame::OnMouseMove is not work
  59. CStatic
  60. ISAPI
  61. registry
  62. Buttons......experts please.
  63. memcpy / LocalAlloc
  64. MDI Application ...
  65. Who knows a powerful way to display multicolored text?
  66. Very Very Simple questions
  67. Load debug DLL in release apps
  68. _Recordsetptr not working with CDAORecordset, Compilation Error
  69. OLE DB
  70. operator = (can someone please give me just a little advice on how to make this operator work)
  71. In a console app, how do you read in commands as both char and int?
  72. How to change pitch of wav-file with DirectX
  73. Block access to keys
  74. I need a raster operation for BitBlt
  75. Screenshot help
  76. Template class libraries
  77. How to properly use flag variables?
  78. Memory Management for larger image files.
  79. Destruct COM EXE from process list???
  80. is it tough to do ?
  81. Reading from list Box!
  82. problem of being not able to set breakpoints
  83. sending messages to a program
  84. Icon and Bitmap resource
  85. Compiling problems
  86. Display Icons
  87. CoCreateInstanceEx???
  88. Apartment and thread
  89. Dialog stuff!!
  90. How to get DC to draw on menu and title bar
  91. Saving/loading Contents of a List
  92. Running number on the control
  93. How to use StretchDIBits to show a JPEG in my Windows
  94. How to support multi-language???????
  95. How can I get the location of my esecutable at runtime?
  96. Can I buid Firewall with DDK ?
  97. CString::GetLengh()
  98. Unicode
  99. Managing IP Addresses
  100. Detecting Fax Tone
  101. How to determine the moment when the mouse go out from client area?
  102. what's Unicode?
  103. IE plugins
  104. AfxBeginThread problem
  105. Useful books and utility programs for beginner
  106. Registration Com Dll
  107. How can i size the client area ?
  108. How do I add a icon to a exe?
  109. Two page in FormView
  110. DirectX
  111. Focus window's handle?
  112. An issue with CSocket ??
  113. About installing*.avi files1
  114. Passing command line arguments
  115. How to place Bitmap on Radio button/Checkbox
  116. Begining ATL
  117. Memory Leaks
  118. dialog for designing a toolbar
  119. Debug Assertion
  120. how larger the Buff's size(CString Buff) can be upto?
  121. Background and text color
  122. How to display a checkbutton in a listctrl
  123. ATL window tabbing
  124. Server login
  125. MultiDocTemplate
  126. Returning an array to Javascript
  127. Auto-dropdown editbox
  128. Windowless MFC app
  129. Find modeless dialog(Open?)
  130. Any good books?
  131. Dialog resource cannot open on another computer
  132. Emergent! ATL Control Debugging.
  133. Help me choose between control and value variable
  134. Multiple Fullscreen Windows w/ MFC
  135. Moving throught data in 2 different tables in access database
  136. enter key
  137. SIGPIPE Received, what should I do?
  138. Email
  139. Save Dialog
  140. TBSTYLE_TRANSPARENT
  141. Time out.(is it the famous chocoloate)
  142. Using MoveNext function for access database with 2 tables
  143. Cannot Add CDao***** MFC class
  144. Save All
  145. Number of Physical Local Drive
  146. CTreeCtrl
  147. Program crash, whats wrong
  148. Road network project
  149. PrintScreen question ;-))
  150. Using DataGrid to display table from access database
  151. Updating editbox contents
  152. RepositionBars
  153. how to create file in specific drive
  154. About TCP/IP & UDP
  155. How to access the View Class
  156. URGENT :How can I get the time when the file last saved .
  157. Funny ListBox scrollbars
  158. How to trap buttons' messages when they are released?
  159. AddJob() - Printer API
  160. Help needed to create record from input from dialog box
  161. System Message Handling
  162. System Message Handling
  163. System Message Handling
  164. System Message Handling
  165. System Message Handling
  166. Difference between 2 CTime Object
  167. ATL Connection Point Sink
  168. Database
  169. System Calls in NT
  170. Using the USB port in VC
  171. How to get range of numeric variable?
  172. Mailbox/.
  173. dao sdk
  174. Templated Member Functions
  175. CFileDialog
  176. sequel from c++
  177. CFileDialog
  178. Drag&drop enabled print preview
  179. dialog within a dialog...
  180. Derive a Dialog
  181. Edit control help
  182. Replace mode in Edit control
  183. Message box pop up on left click on label
  184. Title Bar
  185. Webbrowser Newwindow Event
  186. Recordset
  187. Hide a window
  188. Prb with GetComputerName api
  189. How to do child window not movable?
  190. Little Combo Problem
  191. Threads
  192. Using FlexGrid to display table from access database
  193. Hide taskbar
  194. process
  195. process
  196. process
  197. Remove Title Bar from MainFrame ????
  198. Listening for events
  199. Listening for events
  200. CFileDialog question
  201. Declaring a generic class
  202. dialog and thread
  203. sort arrow on first line of flexgrid control?
  204. How do I create modeless dialog?
  205. can i statically link in a dll?
  206. Where to get a current shlobj.h from
  207. Programmically changing the Text of a String Table resource
  208. filtering out files when calling ON_OPEN_FILE ?
  209. classes with more than one constructor ??? Please help.
  210. try - TRY
  211. Passing values between dialogs
  212. Constructor in an Interface?
  213. mimicking SetModified functionality for buttons besides "Apply"
  214. Video Compression Codec
  215. Is there an easy way to create a graph using excel?
  216. Determining VC++ Service Pack Number
  217. Help with Docking Window Example needed. URL: http://codeguru.earthweb.com/docking/devstudio_like_co
  218. DIB in a CScrollview
  219. Get screen SIZE in Visual C++
  220. Is their any API toget the ip address of our system?
  221. Timers in Console Apps
  222. Active X Control not working?
  223. How do I create a basic doc/view class in an MDI app where I can draw in the window?
  224. RPC
  225. ACM question
  226. Center MsgBox from Callback fct on Dialog
  227. Compiler
  228. Memory leaks detected!
  229. Changing code page when streaming out RTF text
  230. Creating an excel-like grid
  231. type of dll ??
  232. TreeView - Insert items ? ? !? !?! """ °!?
  233. Changing code page when streaming out RTF text
  234. Function sequence error - Again
  235. CPropertySheet Size
  236. display text in static control
  237. Multithreading error
  238. Network programming advice needed. Sockets or something else?
  239. Icon size problem
  240. Property sheet button access
  241. Delay for 1 seconde (just 1 seconde, no 1 milisecond)
  242. Fonts and ActiveX controls
  243. Serial Ports: How to drive each pin?
  244. Launching web page from MFC
  245. can't open mdb database
  246. link error _main help to resolve
  247. How to get rid of the carriage return when hitting Enter in VC++ editor
  248. TAPI MFC
  249. Radio Button and tab
  250. errors when closing my application