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. Weird problem with Save as dialog!!!!!!!!!!!
  2. What do they mean when they say Win 9x can only support 8 * 8 pixels brush?
  3. How to hide CDialogBar?
  4. How could I make a multi-clipboard like in the Office 2000
  5. I have some questions about the clipboard
  6. What means :: ?
  7. Visual Sudio DialogBar Style?
  8. Probs customising CFontDialog
  9. XY coordinates?
  10. Problems using GetWindowText on an edit control (trying to create a history edit)
  11. How can I wake-up on an event that occured in an edit control lies within my dialog box?
  12. speed testing tool
  13. UDT in SAFEARRAY
  14. How to exit 'for' and 'do' statments simultaneously, without using 'goto' statment?
  15. ATL return type suitable for Response.BinaryWrite
  16. STL weirdness
  17. can not use SwitchToThread
  18. Write ICO-File from HICON
  19. Add organizationalUnit occur error
  20. DataGrid problem
  21. CWaitCusor Don't work
  22. How to specify a drawing area in a Dialog base project
  23. How to process a menu command at two classes?
  24. Close button to hidden and File->Exit to exit, how ?
  25. I need some quick advice on this please, please help
  26. VC++ 6.0 MFC regarding CInternetSession, CInternetConnection, CInternetFile
  27. CListCtrl - is there any way of making an arbitrary line bold in color, or italics?
  28. Need help from Visual C++ programmer
  29. Install My Ado Application
  30. How do I get the email from all contacts of outlook???
  31. How can I get the entire list of exported functions of a DLL file.
  32. CZoomView problems!
  33. How do I kill a dll running???
  34. How to add buttons to CListCtrl
  35. Sevrer Help
  36. Help with specific type of class functions
  37. Timer??
  38. Callback messages
  39. Tooltips and modeless dialogs
  40. Problem on DirectShow: the problem of cyclic filter graph
  41. The problem on DirectShow: the cyclic filter graph
  42. How to display a 16-bits grey-level image?
  43. Real Random Numbers
  44. For the last time.....is there any Protocol, API or Library that allows me to list all the files on
  45. When the param lpszFilter is COleDateTime(2001-9-17 12:00:00) How to use CDaoRecordset::findfirst(L
  46. Download dialog box...
  47. Create Device Context with specific resolution and pixel depth
  48. is there any way to hide a Folder? (Other than assigning Hidden Attribute)
  49. How can I get Start menu anywhere on screen?
  50. Detect only changed area of desktop? (screen capture)
  51. is there any way to lock a Folder?
  52. Changes CFontDialog to CFontProperty
  53. Hiding an App from Task Manager
  54. undeclared identifier IDC_RICHEDIT
  55. Work with relative paths
  56. Calling VB Com
  57. Print with a bitmap brush
  58. test only
  59. make an activeX control invisible in runtime
  60. SBLive and DirectShow??
  61. How can I get a information of Bitmap color in EMF
  62. Needing a pDC
  63. ::Serialize(CArchive*) and CWinThread
  64. how to know menu item on any applications
  65. monitoring installations
  66. Is it reasonable that a program behave different in debug mode(F5) and none debug mode(Ctrl+F5)?
  67. How can we find the dependent DLLs of an exe
  68. launch an unix application
  69. Oracle 8i
  70. Scroll bar in a dialog
  71. Printing
  72. operating system
  73. special character display
  74. Excel and VC++
  75. Task bar
  76. Edit box display
  77. How to define a map type variable as Static Member?
  78. finding "\n" char in an array
  79. Redraw problem
  80. Handling WM_USER message
  81. wchar_t conversion...
  82. CDaoRecordset:Open a database with security
  83. How can I retrieve the name of the server in which the current login user is connected ?
  84. a simple question about intialisation of pointer
  85. CListCtrl - Arrange List
  86. List ctrl items
  87. Ticks in menus
  88. OpenGl, CWnd CMemDc
  89. Implementing COM Events in Client
  90. glScissor()
  91. disable/enable sreensaver
  92. CTRL-Keys (CTRL-X, CTRL-C, CTRL-V) don't work in formviews- why?
  93. How to avoid focus rect drawing
  94. How to run multiple instance of a Program while it dosent allow us to do so
  95. gethostbyname()
  96. CDialog Question
  97. Search foor extended CTreeCtrl
  98. CListCtrl - Dbl Clk item
  99. Visual C++, BitBlt()
  100. rectangle
  101. Visualising before OnInitDialog() completes
  102. Funky pointer
  103. CListCtrl 's SelChanged Message...?
  104. Clear the screen in console
  105. How can I display text on GUI that has hyper links within it? ** I will give ratings
  106. Where is the documentation for CMSFlexGrid?? Going MAD!
  107. Glitch...
  108. Multi language MFC application .... ???
  109. CDialog Question
  110. Unicode
  111. Please recommend me a book on Multilingual software/Localization
  112. ATL-service with composite control creates problems when running it as a service...
  113. Reading binary file
  114. Indexing
  115. API function to know if current system is 95/98/NT/2000...
  116. Button and Icon
  117. Formatting the hard disk
  118. for only a few computers, when I print the text prints white with black background around just the t
  119. Block highlighting Text
  120. MessageBox Title Bar Font
  121. Unhandled exception after DLL returns
  122. Socket programing
  123. How to draw N rectangles in GDI and for each of them save properties (x1,x2,y1,y2) in text file?
  124. multi-language support in VC++ Application
  125. Capturing stdout
  126. How to limit the area where mouse pointer can be moved
  127. CDialog Messages
  128. CDialog messages
  129. color picker
  130. COleDataObject conversion
  131. Clearing a Dialog
  132. MFC42U.LIB what is it?
  133. Remove file
  134. dynamically change icon color
  135. ioctlsocket and SIOCATMARK
  136. OnCustomdraw() for List Control not handled!
  137. How to use ACPI
  138. from mfc program how open a dll file and get list of its exported functions
  139. Description of MFC functions
  140. Taskbar Icon
  141. Default mail client
  142. my app does not appear on the top
  143. LoadIcon
  144. Updating log output window while data is being written to log file
  145. I have serous Memory Leak with Bitmaps
  146. I have serous Memory Leak with Bitmaps
  147. DLL HELL ???
  148. about timers
  149. MSCOMM problem
  150. About Dialogs and activeX controls
  151. How to set required timer resolution?
  152. tab order problem
  153. Create a Control in a Windowless app
  154. Sockets Anyone
  155. PSAPI.h
  156. SendMessage with a COleDateTime as parameter ???
  157. ATL Control Size
  158. Problem: VC client and COM+ Server Component, but VB client works just fine. Why?
  159. Enumerations
  160. listview printing
  161. Control Characters in Edit Box
  162. TAPI Programming
  163. GDI+
  164. 256+ color toolbar
  165. Toolbar buttons
  166. dao
  167. })>- New Class 2 Handle Pictures !!! -<({
  168. Help! cant add DLL's to my projects!
  169. DAO again
  170. An error message!
  171. Could not reference mem
  172. List control subitem is visible?
  173. connection points
  174. Someone must have done it...
  175. Resource ID HELL
  176. CSocket file transfer problem
  177. change font in context menu
  178. Using TEXTMETRICS question
  179. CCtrlTree - problem editing siblings
  180. How to switch thread?
  181. Database over network
  182. Accelerator
  183. determine the number of odbc connection
  184. DCOMCNFG
  185. control window size
  186. Client/Server side SSL
  187. COM/DCOM security
  188. mouse move
  189. reading XML
  190. How to Debug a Service application??
  191. Propertypage SplitterWindow
  192. Access memory-very urgent
  193. CListCtrl - column header
  194. how to define my own file format?
  195. Memory Leak
  196. How to conert unsigned char[] to BSTR
  197. Richeditor's paragraphs
  198. Re painting dialog
  199. Use LDAP API add a group to active directory server
  200. Conversion between BSTR and unsigned char
  201. Bit-bltting bitmaps to the screen without memory/resource leak
  202. dealing with user window messages
  203. Windows CE - LR_LOADFROMFILE
  204. Windows CE - LR_LOADFROMFILE
  205. Remote Screen Grabber
  206. Draw in GDI problem!
  207. Multi-language in VC++
  208. Problem with execution - GUI does not change
  209. 'GetCurrentHwProfile' : undeclared identifier
  210. Can i Bind To a Socket on My Neighbouring Machine,if the machine is behind the Firewall?
  211. CFileDialog MultiSelect Problem
  212. Visual Studio Installer problem
  213. How to display several images in CListCtrl ?
  214. What do you think about : 'InternetGetConnectedState' function?
  215. same class, different base-classes
  216. Execute another program from memory
  217. What Does "Thread Safe" Means?
  218. Urgent!!
  219. CFormView Problem
  220. DAO problem
  221. SetItemData, SetItemDataPtr
  222. Flash in Doc/View project
  223. A free tool to rename an Existing Visual Studio project.
  224. Unicode
  225. Help understanding GDI resource release
  226. data types
  227. subclassing TButton
  228. CMenu::ModifyMenu *pBitmap
  229. Delete and object in GDI
  230. Burning cd's
  231. Help needed with printing
  232. SendMessage from DLL to View class in SDI
  233. Printer Bins
  234. Question on Cisco 340 - 802.11 adaptor
  235. IP addressing Challengeing fighters
  236. CDocument initialization
  237. long to short filenames
  238. Matrix visualisation
  239. Menu at Right Side
  240. Help: job opportunity site
  241. Class instance
  242. Archiving an object
  243. How to write own MutexWait function ? VERY TRICKY ?
  244. Help Menu
  245. VB Component in VC++
  246. information from registry(URGENT)
  247. socket programming!!
  248. funtion to convert hexadecimal values of registeries to decimal (URGENT)
  249. Modeless Dialog question
  250. conneting registeries of remote m/c of win 95