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. mfc tabs order question...
  2. DLL Registering/Unregistering using Shell Extensions
  3. Performance Inserting/Deleting in CTreeCtrl
  4. Fiber sample is need ...
  5. Build hangs/stops/halts
  6. password character in install Shield
  7. CreateFile limitation ??????
  8. BEGINNERS QUESTION: WHAT EXACTLY ARE API'S i.e SDK Kits
  9. LNK1169 and LNK2005 .. I know ..
  10. single document multiple view
  11. CComModule ..?
  12. Items collection + activex
  13. I don't know this function
  14. File locking mechanism
  15. How to empty/remove text from RichEdit
  16. Clean Up Dialog ??
  17. I want use c in a VC project
  18. Handle BN_CLICKED inside button class?
  19. Possible to swith Fibers in other thread ?
  20. Dragging Toolbars it doesn't show its content
  21. QueueUserWorkItem - how to call correctly?
  22. Simulate propertypage with the dialog dll-based
  23. ActiveX questions
  24. Binary Tree comparison program
  25. Need help to determine F0 in VC++
  26. new CString objects
  27. CListBox Question
  28. Still problem about DLL
  29. fatal error C1001: INTERNAL COMPILER ERROR
  30. variable address
  31. Problem in copyfile/_access etc in case of two slashes "//"
  32. make MSDEV multithreaded ?
  33. Problems with getPixel on Win2000
  34. Color comparison
  35. H323 libraries compliation problem
  36. Distributed application
  37. static and dynamic libraries in visual C
  38. Can U Put A Property Sheet Within A Dialog Box??
  39. CString problem ,symbol not found
  40. exception 10h
  41. DoModal Page Fault in Win98
  42. How to map colors in a bitmap to a different color?
  43. Please Help SQL
  44. How to make libraries in Visual C
  45. lib file questions
  46. opening a csv file in Excel
  47. How to make sure the windows (incluing the network...) are all done before WlxDisplay
  48. VC6, problem with #import
  49. gina--how to block the SAS during unlock?
  50. Cusor Position in edit box
  51. getting the file name using MFC
  52. Retrieving name of own .exe
  53. Threads
  54. Access without Access ?
  55. MFC simple question.
  56. Changing The Size Of A Main App Wnd Dynamically
  57. How to chang a dailog form
  58. Output to a serial Port
  59. Clear Dialog BOx
  60. Digital CLock
  61. Problem with CDC::GetSafeHdc()
  62. Default Project Settings
  63. The Eyedrop tool in paint programs?
  64. How do I...
  65. Weird IDE Problem
  66. help!!
  67. SetThreadLocale(..) ...!
  68. help me !window filcker
  69. help me! window flicker
  70. LNK2001 - "__imp__PathAppend@8
  71. What is the difference between BOOL and bool?
  72. how to pass website to internet explorer
  73. DLL Registering/Unregistering using Shell Extensions
  74. Browsing for folders using SHBrowseForFolder
  75. Question about CHeaderCtrl
  76. How do i listen to mouse clicks in other applns
  77. Drawing Resizing
  78. BEST BOOK for Device Driver Development
  79. disappearing icons.
  80. from makefiles to visual c++ workspace/project files?
  81. Memory Leaks
  82. Add CStringArray property to ActiveX?
  83. Is there any expert who can answer this question in this world?
  84. Get day, month, ... from DATE
  85. Binding GUI of COM server to its parent application
  86. redirection of stderr
  87. IObjectSafe;IE security
  88. Prevent change size of header list
  89. Problem in using OleDbDataReader
  90. 5 splitters pane app : replace all pane content ?
  91. color palette
  92. DirectX 7 transform
  93. Call funtions in CMainFrame from CView
  94. To send data
  95. hw to send data
  96. Owner draw activeX listctrl
  97. 103 error(s) in Debug Version???
  98. Enumerate ActiveX interfaces, properties and methods
  99. memory
  100. Property sheet and Tab Control
  101. Cannot copy subfolders
  102. clistbox set focus?
  103. CSocket::OnAccept() never called!
  104. postdata in CHTMLView::Navigate2
  105. Create Font
  106. Multiple page setting and Page Layout
  107. COleDateTime Formating
  108. Abort, Ignore, Retry
  109. System crashes peculiarly
  110. How Can I get All the softWare Information?
  111. Disable autoscroll
  112. Vietnamese software
  113. Windows NT Server Manager API
  114. KeyBoard Handlers
  115. Where is <Developers Workshop to COM and ATL 3.0>?
  116. Printing Multiple pages
  117. interprocess messaging
  118. How can I link 2 binary files?
  119. wm_commnotify
  120. unresolved external symbol
  121. ifstream/ofstream
  122. can you pass a string in a function.
  123. nubie question
  124. Doubt
  125. How to use a font loaded as a resource
  126. CSocket programming question
  127. Traverse a tree control?
  128. Easy way to traverse a tree control?
  129. Count the number of applications installed
  130. Is it _bstr_t Bug?
  131. operators
  132. howto structure *.rc to be DLL safe?
  133. Casting
  134. using messagebox....
  135. Exposing a Control From a Control
  136. System Call
  137. Include a static data file?
  138. bubble text in toolbar button
  139. setting m_ofn.lpstrInitialDir to network folder
  140. Visual C++ Inline assembly with variables
  141. open and save am XML file
  142. MFC Extension DLL Confusion
  143. Dlls for language support
  144. Key check
  145. owner drawn dialog window
  146. Resizing splitter after floating a toolbar
  147. Calling a CDialog from a CFormView
  148. Prevent Screen Capture
  149. ADO Cursors, Dynamic in particular.
  150. Forwarding variable parameters
  151. getting the file path by the window pointer
  152. Need Help
  153. How to fetch commandline args from an exe
  154. Problems with Modeless propertysheet
  155. Print Variables
  156. MFC Printing Varibles
  157. Sudden Compile Error RC2135
  158. Getting hold of the CLOSE bitmap
  159. Including a summation row in DBGrid
  160. operator int()
  161. Is there any experts who can challenge this question?
  162. What's the meaning of run-time micro
  163. CStdioFile and Unicode
  164. Capture DOS output in VC++
  165. Maximum size of Structure
  166. Windows Installer File creation
  167. Console application
  168. Tooltip for image / item
  169. How To: Create Custom Controls
  170. Delete Key
  171. MAPI - save a message mapimessage to c:\message1.eml ???
  172. Lpunknown
  173. What is BSTR
  174. Creating a DialogBar in a MDI Child Window created Dialog
  175. using MAPI - howto save attachments (files) after using mapireadmessage
  176. Not Getting Value
  177. Image of View
  178. Accessing MimeMap using ISAPI extension
  179. cout, endl Namespace Problem
  180. File operations corrupt after Save As
  181. Accessing bit in a HBitmap object
  182. ListBox multi-column
  183. Detecting whether another app is running
  184. How to send a WM_NOTIFY to the parent of a listCtrl
  185. Hunting groups
  186. where do i call RegisterClassEx in an SDI program ?
  187. Strange membervariables behaviour???
  188. pragma pack(1) does not work properly ?
  189. Editing tree control item
  190. help?
  191. CSocket and Multithread
  192. word automation
  193. CloseHandle() doesn't close the comm port
  194. Where is the Device driver Informations are Stored in windows XP
  195. How to call a .dll with arguments?
  196. Modeless status dialog
  197. File disappearing seemingly on its own.
  198. Create Window
  199. Different Open methods
  200. Passing information in to dialog box
  201. image upsidedown feathure
  202. Setting the Y axis range to one element
  203. Str -> Long
  204. CListCtrl row selection
  205. WorkerThread and CSocket
  206. Switching view
  207. Printing without pressing Print
  208. porting an existing VC++ ?
  209. Calling functions from CDocument in CView?
  210. Accessing MS SQL 2000 .... How-To?
  211. How can I check if a pointer is NULL or not?
  212. binary operator oddity
  213. MSXML2::IXMLDOMNode* pChild
  214. MS.NET with multiple programmers on a Terminal Server ?
  215. Help Wanted Desperately !!!!!
  216. Loosing Data in Com port
  217. Help with .NET DataSet and Select
  218. Would you kind gurus help me out here (its about LSP)
  219. Exit an MDI app with code
  220. DhcpEnumSubnetClients
  221. Help...urgent!!!
  222. word automation
  223. Creating an array
  224. using tabular data control in a SELECT
  225. redistribute crystal report with application
  226. DirectShow Video Standard Question
  227. Looping through all Outlook Folders
  228. please help
  229. IDE: Start external app
  230. How to detect a program is no longer responding?
  231. SQL server 2K authentication
  232. Syntax-Highlight
  233. DeleteFile == S_OK, but file is not deleted!
  234. bitblt question
  235. Inserting text with objects in CRichEditView
  236. float to bytes
  237. Hide application
  238. Remote Control
  239. detecting computers on LAN
  240. Frame inside a Splitter pane
  241. strcmp
  242. CSocket::OnReceive
  243. How is MS paint done?
  244. Saving BMP problem!
  245. CEDIT Crash Return Code 13
  246. Where can I get info about how to use OpenSSL library ?
  247. Client/Server Book?
  248. download ftp not using getfile
  249. Ado
  250. Web Page status