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 to get past the print dialog when click print ?
  2. VC++ &DDK
  3. Can I use DDK to install a Hook instead of Driver?
  4. Newbie looking for some help!!!
  5. CryptDeriveKey - Why derive a key from hashed data?
  6. pause??
  7. string rpoblem
  8. GetDiBits()
  9. Creating an .exe out of your program
  10. Adding a custom MFC message to a dialog?
  11. [ braces ]
  12. Fucntion for a delay
  13. Search Directory for files
  14. Refresh Data in ListControl
  15. idle time?
  16. How can I get exact GUIDs of the same USB devices.
  17. binary tree
  18. waitable timer
  19. power
  20. Dynamically binding columns
  21. Missing <vector.h>. Where can I get it?
  22. if i subclass a richedit box ,SetEventMask with ENM_CHANGE failed to work,why?
  23. Flash animation
  24. Creating Custom Brushes...
  25. Disabling inputs
  26. How to build a VB style dialog??
  27. Print??
  28. Why I can.t modify the property of the bkmode in dc?
  29. Change title of prop page.
  30. Report Generation In vc++
  31. Passing a CString variable
  32. Dialogs
  33. Binary Search Tree
  34. How can I connect to a dialog in other class?
  35. sprintf
  36. vc++ configuration
  37. 2 difficult questions
  38. setlocale
  39. Embedding MS Word
  40. Desperate! My Recordset doesn't jive with my Access Table
  41. how to disable cntrl+alt+del
  42. Default values for parameters !!!
  43. Lock Machine
  44. About the IME composition string
  45. CListCtrl - disabling item
  46. Creating ActiveX Control
  47. PRINTING FILE
  48. CString. GetBuffer()
  49. Help!How convert DWORD to Ip address?
  50. verify input without infinite loop
  51. what is this ~ operator for?
  52. gina.dll, event and msg
  53. open dialog box
  54. dialogic application
  55. Parameters in CRecordset
  56. How make a little file system
  57. CArray
  58. Debugging activex control
  59. ClientArea How do i set the clientarea to be transparent (Unvisible)
  60. esk key
  61. Toggle Button
  62. Names of exported functions
  63. Excute some programs in WlxDisplaySASNotice
  64. Sending Messages across applications
  65. Why drawdibdraw take 2 HDC as parameters?
  66. cast CString to int
  67. Q: How can I control brightness?
  68. Traversing outlook folders
  69. Memory leaks, resource leaks and GDI leaks
  70. VARIANT Datatype
  71. CODE statement not supported for the target platform
  72. Socket server problems...
  73. Help!How connect to remote computer and read the file from it using VC?
  74. Casting ?
  75. ActiveX doesn't display
  76. SQLAgent
  77. Proxy/tub dlls for an Exe server
  78. Clientarea where can i decide if i dont want to redraw the client area
  79. Configure COM component for DCOM.
  80. !!!Form view displaying data
  81. Hooks and ListBox
  82. How to Print the Whole Window
  83. Aplication Register to windows Inicialization
  84. how can I cause in someone's computer that he won't see certain directories??
  85. Dialog creation
  86. Modeless shifts to back when using domodal
  87. nmake
  88. code error - debug assertion fail
  89. I/O Communications
  90. Sort drawing of multiple views
  91. MFC .exe
  92. Simple ATL CAccessor Parameter Prob
  93. When using CFileDialog to create my SaveAs dialog box - how can I have control on the file extension
  94. Add desktop icon
  95. WM_TIMECHANGE
  96. CListControl - inserting items
  97. Drag drop name shell extension
  98. How do I Highlight Text without using the CRichEditView Class?
  99. Task Manager style Monitors...
  100. Cannot open an Excel 2002 document
  101. I use setbkmode(TRANSPARENT); but it doesn't work!why?
  102. Registering ActiveX Control
  103. Dialog in multiply view
  104. Text;Hex:Dec Converting
  105. Crash ???
  106. new member variable
  107. OnActivateView
  108. using mousewheel in ownerdraw combo ??
  109. Memory
  110. Windoes CE Programming
  111. Urgent POP question
  112. VERY URGENT.......vector resize?
  113. BYTE to CString
  114. Determining DLL files my app uses
  115. Winsock 2
  116. TreeCtrl, Parent has images children don't
  117. How to move the caret in CRichEditViewed application?
  118. How to insert characters in a CRichEditViewed application?
  119. Is anybody there to help??
  120. How do I change the filename in a already shown CFileDialog?
  121. mysql++ integration in MFC
  122. CFtpConnection
  123. can u plase help how to fix
  124. NT/2000 File protections
  125. Tootip on CComboBoxEx
  126. 3 D Border in ListCtrl
  127. How do I insert horizontal scrollbars in only a third of my view??
  128. non fading title bar
  129. how to run IE in new window using ShellExecute
  130. Record retrieval using List control
  131. ALT GR
  132. deleting?
  133. Response from FTP
  134. Getting started with eMbedded Visual C++
  135. Why not build in release?
  136. USB support for VC++?
  137. CFtpConnection again
  138. Outlook Contacts....?
  139. CEdit limit text
  140. Netware prinjter enumeration
  141. strange error code
  142. connection baudrate under NT/2k/XP ?
  143. Radio Button
  144. New operater inside template
  145. Import dialog recourses
  146. Bitmap -> Array of pixels(color)
  147. Graphics
  148. Problem reading and storing Data
  149. CListCtrl
  150. Bitmaps / Sound
  151. Desktop Background
  152. Help for bitmap printing!
  153. Display problems
  154. CFile question: How to create a file
  155. Compile for German language
  156. IE programming question
  157. ADO AddNew fails
  158. Embedding WEB Page in Project
  159. Borg Challenge
  160. codes from DWORD
  161. How would I add Control IDs to ClassWizard
  162. Getting (OLE-DB) row handle
  163. Dropping files into a listbox
  164. MX DNS CLASS
  165. CString to LPSTR conversion
  166. Whats the CComboBox message after the DropList closes
  167. Threads and dialog windows
  168. Problems with Localization in Visual C++
  169. Sending HTML by E-Mail
  170. Template Linkage Problem
  171. dynamic CEdit control in WinCE
  172. URGENT - Missing Export Kernel32:CancelIO
  173. Template Linkage Problem
  174. CTreeCtrl
  175. "string table" and "multilangue"
  176. How to prevent showing window?
  177. Urgent! Problem with MSWord component!
  178. Changing pitch of mp3??
  179. "Union REGS" problem
  180. Changing the window's menu and tool bar's colour
  181. chat room..buletin board
  182. Determine the floppy drive type
  183. Determine CPU type and fanily
  184. What is run() throw(){
  185. Is ther any Gunter Figure Control I can use??
  186. DOS interrupt
  187. Time Intervals
  188. Sending Messages
  189. convert single color band back to RGB color
  190. DOS interrupt
  191. Problem with phase calculation
  192. radar
  193. How do you write a callback function for a .dll
  194. Serious GDI leak with the CStatic control?
  195. How to add toolband to my application. (How IE does for itself?)
  196. how to make my graphics code faster
  197. Socket programming
  198. add icon in desktop
  199. socketprogramming
  200. SQL passing a variable
  201. How i can change CControlBar window color
  202. Is there anyone meet problem with CString in Thread?
  203. Crystal Reports
  204. How to invoke function of server from container
  205. How to add my program to right click menu?
  206. Eventlog
  207. Splitter View(very need Help)
  208. Drawing a text..
  209. how to know a control's events
  210. SQL question - How to use custom functions in SQL query ?? please help!
  211. online image scaning function
  212. trigonometric functions graphs
  213. virtual inheritance, dominance and compiler warnings
  214. Visible?
  215. online scaning images
  216. Removing Tab of Property Page from Property Sheet
  217. COM-class constructor/destructor
  218. Another compiling error with TimeSetEvent
  219. Menu (un)checking items
  220. How do I change the page layout (page orientation) during printing?
  221. IMP : MoveFirst() throws CDBException
  222. Bitmap and button
  223. Getting Child Wnd Handle
  224. Version information
  225. text>hex>dec ?
  226. Template...
  227. Process List
  228. Share File & Directory
  229. unable to trap menu ID
  230. Detecting F12 key press
  231. Trap system events
  232. Update Dialog Resources
  233. rename vc++ classes
  234. Release of SlideShow Desktop 1.2
  235. TreeView problem.
  236. Looking for simple COM/ATL/MFC tutorials
  237. Http upload/Download using WIN32 API
  238. ISAPI & OLE DB
  239. ISAPI & OLE DB
  240. Language support for database
  241. I cannot use CInternetSession.OpenURL(url)get all the content of the url
  242. Versionning
  243. Resize CMyTreeView on doubleclick splitter
  244. assembly
  245. Setting StartPage from Internet Explorer
  246. Windows NT's Main Message Queue
  247. How to post Message to Message Queue
  248. ActiveX Control
  249. Un-understanding Crash...
  250. Sockets