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. draw text with text size problem
  2. draw text with text size problem
  3. Memory Leak:How do i exit MDI(DocView) from a FormView ?
  4. Ask about random number
  5. beginner question
  6. chalenging question
  7. priority level
  8. MFC42U compiled dll accessing MFC42 on test machine
  9. get item from ctreectrl
  10. Is that a focus problem?
  11. Debugging release?
  12. CFont Problem In Win98 Japanese version.
  13. Double Impact, Double Questions : 1) Disabling ASSERTs() & the time() function!
  14. Control Container Support outside main thread
  15. file upload help
  16. Compatibility
  17. joyGetDevCaps error message
  18. PD_ENABLEPRINTHOOK | PD_ENABLESETUPHOOK cause error on win95 machine!
  19. Where I can get MTS for Windows'2000
  20. Detecting the change of the mouse cursor shapes
  21. About OnMouseMove, how to use it in reality.
  22. How to save my screen image to a jpg file
  23. COleDateTime and the System's Date/Time dialog box
  24. Changing window background color
  25. Creating graphs for excel spreadsheet
  26. Window Inside MDI Frame
  27. Best way to know Path where ActiveX File is registered, having a guid
  28. Code page in WideCharToMultiByte
  29. mutliple connection on the same port
  30. Detecting network card duplex
  31. RegQueryValueEx - REG_MULTI_SZ
  32. Delete File
  33. Help! Dialog problem! Resource not found?
  34. Please help with Serialization....
  35. CFile Dialog to List Only Text File
  36. Detecting text wrapping in CStatic??
  37. IoConnectInterrupt
  38. Problem of SendMessage
  39. Process is running or not.
  40. Wierd question for a smart guru
  41. oststream and Carriage Returns
  42. wrapping text
  43. ATL ActiveX Refresh problem
  44. event viewer
  45. Parsing cmd line arguments in Win32 appl
  46. WSAAsyncSelect I/O & Multithreading :: Winsock
  47. VC7 woes
  48. NT driver developement help needed
  49. NT service and mailslots
  50. How to incorporate Dos .Exe in 32 bit application
  51. Clicking On Menu?
  52. what does _T do?
  53. BOOL or bool?
  54. saving data to hd
  55. DebugView
  56. SendMessage(...)? How do I get the message?
  57. Is it possible to filter DaoRecordset TableType
  58. Assign a textbox to a button?
  59. GetSystemTime not returning correct time : This is a war crime, I'm telling you.
  60. how to use timer in VC?
  61. finding text in CRichEditCtrl
  62. A harmless but irritating Data Exchange question
  63. Any controls that can play MPEG movies?
  64. Why modeless dialog is not working properly?
  65. Windows Controls
  66. How to save image in EPS format
  67. the shape of a mouse cursor changes
  68. hook CRichEditView
  69. Get Unhandled MS Exception when throwing an Exception in ISAPI-DLL
  70. webbrowser ctrl - new window
  71. Is there any body to help me????
  72. planting "bug" in registry of windows 2000
  73. Memory leak errors!! Help!
  74. Month View Control 6.0
  75. CDateTimeCtrl Bug ??
  76. File Formats
  77. Vc++
  78. String manipulation
  79. B Tree usage
  80. Min Max \ Alfa-beta
  81. Get he localhost IP
  82. C++/ATL COM threading troubles.
  83. Database Connectivity
  84. Problems with ON_NOTIFY_REFLECT message handler
  85. System Environment Variable and DOS SET command
  86. Pbm in Print and PrintPreview
  87. DLL icon
  88. MDI with 2 different CFormView ...
  89. hand, arrow, I; How to know the shape of mouse cursor?
  90. Database question
  91. Find a space in a CString?
  92. Controls visible on the dlg box: Prob not yet solved
  93. Run a .vbs file from VC++
  94. Bizzare STL problem
  95. SP5: Is it installed or not?
  96. A Tough Question: How to check ADO connection status?
  97. Developping an NT service
  98. Trouble exporting a class instance created in DLL
  99. Is there a way to detect inactivity?
  100. Console app and passing a parameter
  101. Help on an SQL Statement Syntax
  102. view line numbers
  103. What are hooks?
  104. Running in background, how to hide main window??
  105. Interacting with an HTML control
  106. Dynamic Pupup Menus
  107. Getting MEM_BAD_POINTER
  108. why I can't print the chart?
  109. How to access system resources in VC++?
  110. Heavy problem .... please help
  111. a problem with displaying a part of a bitmap
  112. File...
  113. Thread Parameter, delete, and ClassDestructor :: MFC
  114. Creating Button without using MFC
  115. Property Sheet inside a Dialog !!! NOT ABLE TO MOVE THE DIALOG,SYSTEM HANGS!!!
  116. Invalid argument: HeapFree, Handle:....
  117. a problem with RegEnumKeyEx API ?
  118. TAPI modem and card selection
  119. Split existing views between different monitors
  120. Urgent Help : MFC Application Classnames
  121. Debate: should there be random in AI?
  122. how to change the icon of a folder?
  123. Getting Problem in CBTHook while opening page in Internet Explorer
  124. Microsoft's Word's Page View
  125. Ask about fprintf function?
  126. How to setup project using MFC (newbie)
  127. Undeclared Identifier
  128. CRectTracker in a ScrollView
  129. CRectTracker in a ScrollView
  130. converting binary file to an image???
  131. PeekMessage
  132. Menu problem! URGENT!!!!
  133. Using ADSI IADsDomain Interface
  134. Making border of a dialog non-resizable
  135. CreateFileMapping W2000 and security ?
  136. importing msrdo20.dll casuses compilation error
  137. Embedding a jpg Image in a Form
  138. .ini files
  139. Printing With Web Browser Question
  140. Making lib from dll
  141. How to get .NET Framework version and MDAC version
  142. What's wrong with CDaoDatabase::GetTableDefCount ?
  143. What is the difference between LPSTR and LPCTSTR?
  144. Making a program running under a service visible
  145. USB Application
  146. BUTTON handler and attachment
  147. DirectSound "unresolved externals"
  148. PSAPI and 'psapi.h'...
  149. Help: TabStrip control, pointers between tab dialogs impossible
  150. silent alarm program
  151. Newbie: how can I make one of those "browse" buttons?
  152. War Crimes II : Asking me if the project should be rebuild again(for the nth time)
  153. About WSARecv API's Buffer parameters
  154. is this a right way to manage memory?
  155. NEWBIE: How to close an app on a click of a button?
  156. MegaXeon(CannonDragon Mode) : CArray<> to store pointers as elements
  157. Does someone know about a Temperature object ? (with pic of thermometer)
  158. illegal call of non-static member function
  159. How to start .exe before someone is locked in
  160. Internet Explorer cwebbrowser2 ocx VC++ 6.0 issues
  161. Pinball Ball
  162. C++ virtual key
  163. Refresh or UpdateWindow? small area.
  164. Which #include file for ReadAddress() function?
  165. scroll bar
  166. How to read GPS-Data from serial port
  167. ActiveX Document Menu Problems
  168. ActiveX Document Menu Problems
  169. SetFocus not working
  170. encrypting passwords algorithms?
  171. making a second dialogue box
  172. Posting Again....Gurus Please Help It is Really Urgent
  173. clock tick
  174. Controlling (non loop based) Threads
  175. CWnd* of CDialog
  176. Not regarding C++ - has anybody had "delays" in your computer for some reason?
  177. loading an icon to the application
  178. MFC reference
  179. A good MPEG library !
  180. DX8.1 dsound.lib anyone?
  181. CButton - How do I hold it down?
  182. CButton - How do I hold it down?
  183. problem creating a CDialog in my activex app
  184. Need Information
  185. How do I make a file manipulating tree?
  186. NEWBIE: Problem with GetFolderPath()
  187. can't create socket
  188. Active-X DLL
  189. Active-X DLL
  190. general vcpp
  191. Get Window Handle with the help of Title
  192. ICon not displayed
  193. Let the EXE be free!!
  194. About LNK4098 warning
  195. s_partition and DeviceIoControl() in win9x
  196. what's wrong with the vs like docking window?
  197. 2 shift key pressed
  198. Which process owns socket?
  199. Handle Problem
  200. OpenGL - Global X,Y,Z Rotations
  201. interfacing with VC++
  202. Putting activex within it's own instance
  203. Modless and Modal Dialogs
  204. CWnd::Findwindow(NULL,"my caption")
  205. msword9.h??
  206. MFC arcitecture problem
  207. get handle window
  208. print preview is available but no printing
  209. Bitmap control, scrollbar problem
  210. line spacing
  211. "Unable to create file buffer"
  212. Network
  213. Bit and Byte, what went wrong???
  214. intel image processing liberary
  215. getting information about database using ODBC classes
  216. file sharing
  217. SNMPAPI (Think it is a Bug)
  218. Acrobat Reader
  219. global variables and namespaces
  220. Selection in CComboBox (List-Mode) UpdateData
  221. Only for Guru ? Who knows if this is possible ???
  222. List Control problem..
  223. Detecting: Is Image Compressible ?
  224. which DB option?
  225. How to get image size FAST
  226. can I change height of tabs in CTabCtrl?
  227. COM - error MIDL2025 : syntax error : expecting a type specification near "CY"
  228. Word To TIFF Conversion
  229. Win95 / Error loading ressources
  230. CPU usage monitor
  231. Document- View Architecture before MFC
  232. OS2 to NT conversion
  233. How to prevent double-click event handler from firing single-click handler first?
  234. Hiding RadioButtons
  235. protected/public question
  236. Very strange behavoiur of tray icon...
  237. The DL/UL speeds of dial-up connection, C++
  238. mysql add data
  239. CFile Dialog and File Extention
  240. What do you mean by "pointer to a function"?
  241. CFileDialog select multiple files
  242. Invalid floating point operation
  243. Access to Microsoft Office API's ????
  244. a question about excel automation with VC++
  245. GetMessage()/PeekMessage() hWnd and hanging process?!
  246. connect and add records to database
  247. How to adapt toolbars to screen size???
  248. I Need help with file manipulation
  249. Overload += and -= for arrays?
  250. Bitmaped menu