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. Votes received by others
  2. Accessing template parameter
  3. Is oracle client software is free??? *****
  4. GDI vs DDraw,which way?
  5. CDialog
  6. Get mail from POP3 Server
  7. Floating Objects
  8. import msoutl9.olb error when creating release version
  9. how to PtinLine Function?
  10. Querying Registry Values
  11. HIWORD and LOWORD!!!!!!!
  12. how to transfer a allocated memory in com
  13. RegOpenKeyEx ignored?
  14. MFC Problems
  15. copying arrays
  16. Hook Ctrl+Alt+Del
  17. VC++,PARAMETERS
  18. VC++ files
  19. How to programmatically disable/enable images viewing in a WebBrowser control ?
  20. CCheckListBox problem
  21. writing to a binary file help
  22. Getting values from environment variables
  23. How to unsort item of ListControl?
  24. Play MPEG without using Active-X-Components
  25. Set IE option
  26. Avoiding the windows error messageboxes to appear when WriteFile, CopyFile... and disk is removed
  27. fetching a string from an mfc resource
  28. Create DUN connection, how?
  29. How to check if the directory exists
  30. How to print form using VC++?
  31. CDialog
  32. Change the shape of cursor
  33. Transparent Background
  34. How darn n' silly! ain't icons supposed to be transparent???
  35. OnPrint() mapping mode ratio
  36. Email
  37. Fade Effect Using Bitblt ?
  38. How can I make a coolbar in VC++
  39. Where can I learn details of fonts and all about fonts?
  40. Exceptions
  41. Hw to get the size of popup menu?
  42. Communicating between apps via TCP/IP
  43. Drawing Objects
  44. How to open File Open in details view
  45. Timer in a Thread
  46. drawing control over another control
  47. A Window into a big world
  48. IShellLink and CoCreateInstance problem
  49. Bitmap flicker
  50. How do you find the user's company name?
  51. Changing command-line args using API fns.
  52. Problem about Build a project?
  53. Shared folders
  54. How can I call methods written in vb-activex-dll in visual c++
  55. Browseing network
  56. Stingray & OLE controls
  57. Serialize
  58. Template overloads
  59. Database problem
  60. Compiler Warnings when using STL
  61. Templates syntax problem
  62. How Can I Convert DVD Data Into MPEGs ???
  63. explicitly calling the operator delete
  64. making CMyEdit and CMyButton controls work togehter
  65. advanced GUI design?
  66. Windows Messaging
  67. How do I create an image list from a bitmap file?
  68. semaphore code
  69. "__T"??
  70. Volume Control
  71. Changing text in title bar
  72. creating exe file
  73. it isn't window!
  74. VC i/o
  75. Link Error -" unresolved external symbol _WinMain@16"
  76. Link Error -" unresolved external symbol _WinMain@16"
  77. STRINGTABLE
  78. Command line parameters with MFC...
  79. How to make this:in left, it's dialog based window, in right,it' MDI client
  80. close black window (dos) in console application
  81. How to set the space between two line when using CDC::DrawText()
  82. Fullscreen
  83. How to maximize a view in MDI at programmstart.
  84. SMB (Server Message Block) messages
  85. SMB (Server Message Block) messages (messenger,winpopup)
  86. for_each
  87. Make an Email Client
  88. ListBox problem
  89. Get computer-name
  90. get the deafult email address from the default email program
  91. the sample which release cryptAPI in msdn can not be run?
  92. what is the size of an event object?
  93. what is the size of an event object?
  94. Registry keys difference in Windows 95/98 and Windows ME/2000?
  95. Create thread and Settimer
  96. Keyboard shortcuts disable???? URGENT!!!!!!!!
  97. Creating Shortcuts
  98. activex
  99. FTP Protocol
  100. CLongBinary --> CBitmap??
  101. filling a dynamic array
  102. problem audio sdk
  103. Should I "Free" Any Unused Dialog ?
  104. pop3 timeout
  105. Access varaiable of Dlg
  106. BASE class Contructor
  107. SetLayeredWindowAttributes
  108. connectable automation?
  109. AfxGetApp(...)
  110. MFC learning help
  111. Stacks!
  112. texttoscreen
  113. deleting shortcut icon
  114. Edit Control problem ...
  115. Displaying Cursor Position in the Status Bar
  116. What Way Is Best To Get Size Of The Desktop ?
  117. SDK 2000?
  118. OnInitDialog
  119. wchar_t deallocation
  120. })> How 2 Determin If DirectX Installed ? <({
  121. Question about profiler?
  122. Tree in CSplitterWnd
  123. Initialize SDI size
  124. Propertypage
  125. Network DLL
  126. Error Statement
  127. Open SQL Database In DAO
  128. C/C++ code for data input
  129. about dcom
  130. ON_COMMAND Message Handler in CTreeCtrl derieved class
  131. parameter
  132. EPOC Crystal C++ SDK
  133. String to equivalent Hex value
  134. how to disable Start key
  135. from where can i download the sql*net software for oracle7.3?
  136. OleClientItem conversion to Bitmap
  137. Please HELP me !!!!!!
  138. Release Mode Problem
  139. CWinThread
  140. Centering Property sheet
  141. Center property sheet dialog box in SDK
  142. How to set a ClistCtrl for LVS_EDITLABELS attribute?
  143. ActiveX and SS_NOPREFIX
  144. Symbol bar / line
  145. Controls
  146. string to hexa
  147. Insert tag to tree
  148. how can I insert PDF viewer in my program? (nppdf32.dll, OLE support by Adobe Acrobat Reader)
  149. WM_COPYDATA
  150. ATL and ActiveX
  151. Passing back a value by reference
  152. how to use dcom
  153. Stl question on multimap
  154. File Open in SDI with interface like Windows Explorer
  155. Sending ASCII to printer
  156. VC6 gone mad - Screwey errors
  157. CreateControl(..)???
  158. how i can put two ActiveX controls into one ActiveX
  159. Symbol bar/line to the Internet Explorer
  160. MDI window without attached file
  161. HttpReadFile() hangs when internet connection is lost
  162. Enums
  163. CDataSource
  164. com talking to DDe works in C++ but not from IIS/asp
  165. Setting up IIS ???
  166. bitmaploading
  167. how to detect the end of line of a text file
  168. Check for write permission
  169. CTL_CLR
  170. adding a class
  171. EN_LINK
  172. Stopping an application
  173. List Box Text Size
  174. Oracle ODBC driver version 8.00.0400 and 8.01.0700
  175. Sharing memory between apps
  176. Ok Progressing a bit
  177. ActiveX
  178. Win 32 console handler
  179. menu
  180. ATL ToolBar
  181. How to programm ethernet frames without TCP/IP ( ndis?)
  182. ActiveX
  183. Programming Problem!!
  184. Problem with Microsoft Visual C++ 6.0
  185. ListBox right alignment
  186. Need someone who has programmed SHFileOperation(......) before!!!
  187. I Have 2 Create a Graphic Volume Slider (Any Idias ?)
  188. CList memory used
  189. what is the use for .aps and .opt files
  190. Create a "document/view" structure
  191. Automation and multithread ?
  192. FileDialog
  193. handling processes
  194. Code Samples
  195. Enter key in subclassed Edit control (child of fornview)
  196. Toolbars with MultiLine Text
  197. Socket btw VC++ and Java
  198. CWinApp - Get Path to executable?
  199. Help with CTrayIcon class
  200. Windows 32 Programming
  201. how to release stack?
  202. c
  203. CADORecordBinding question
  204. Tape device access
  205. Cursor Control
  206. Calculate Date from DatePickerCtrl
  207. Image ActiveX control with VC++
  208. In C, how to get current.exe path
  209. Create Thread API on 2k
  210. Hot to create a new window which is not a child of the main window
  211. STL and Memory Management
  212. Get system info from registry
  213. pdb
  214. Some questions about the standard library. <string> and <vector>
  215. CSplitterWnd - change bar thickness
  216. Per process CPU/memory info in Windows 98
  217. Socket Q: Does anyone know?
  218. Dialog Problems
  219. MoveWindow
  220. Windows console
  221. how to find the position of a tray icon?
  222. Save As with pathname
  223. debug VC com exe server called VB
  224. Movement of Circles
  225. DirectDraw apps sharing the window
  226. pointers
  227. How to sort without move data !
  228. How to create a dialog without using MFC
  229. Newbie
  230. adding new button
  231. HELP!! Toolbar Issues
  232. The Event which I can trap after the DialogBox is displayed
  233. COleDateTime
  234. Can I draw and print in a dialog based app. without doc/view architecture?
  235. __asm??
  236. EXCEL.EXE process
  237. Shell control
  238. Open binary file in MDI
  239. Log Files
  240. Set up a HTTP server
  241. Start bar
  242. CSocket with Archive
  243. Help attaching View to Doc
  244. Browse Button
  245. ::PostMessage
  246. Working with Bit fields
  247. GetSysColor(STOCK PROPERTIES)
  248. Standard toolbar??
  249. Change string in a DLL resource in runtime?
  250. Printing to Shared Printer W/O loading the driver