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. Inseart a character in between a String
  2. Inputting variable values in a command line program via a GUI?? Help needed.
  3. How to set cursor in SDI view and Modeless Dlg
  4. Visibility of selected Item in CListCtrl
  5. shellexec problem
  6. how to handle message WM_CHAR within CMainFrame?
  7. How to create multiple childframe with a single CMDIChildWnd on Single App
  8. Unknown error
  9. Passing data from FrameWnd to View
  10. winsock socket problems!!
  11. Relations in Access
  12. Changing the SDI Title.
  13. SSL win 32
  14. AddItem
  15. How to change screen resolution to 1024 x 600
  16. How do I properly initialize CBitmap
  17. CDialog::OnLMouseButtonUp()
  18. RichEdit v2.0 or higher in DialogApp
  19. Creating new Excel document using Excel object model
  20. Some byte values in modem comm do not receive right on the other end
  21. where to get windows MIB files
  22. How to sign my ActiveX?
  23. Can't make EN_REQUESTRESIZE work
  24. WNetAddConnection2 to Win2000/XP client has different result?
  25. Book needed „Special edition using Visual C++ 6”
  26. Leave application from OnTimer routine
  27. Making HTML documents.
  28. Im usig a dll project, but how to put DialogBox?
  29. Waiting for process to start does not work
  30. Import Resource From Static Lib
  31. ClistCtrl GetItemData SetItemData
  32. In CTreeCtrl - How to manipulate "plus" sign of Node.
  33. isValidDoubleValue(double *)
  34. CDC::SetMapMode question
  35. CList of class as parameter and Error: "value not properly saved..."
  36. disabling toolbar button
  37. WM_HELP not working in MessageBox
  38. sscanf?
  39. simple question
  40. VS C++.NET - Output window not displaying compiler errors
  41. elapsed time issues
  42. GDI leak
  43. Cwnd (File Dialog) Painting Problem
  44. Japanese UNICODE string to CFile to be read w/ SHIFTJIS Code Page
  45. problem with serial port
  46. Is there a way to check matching braces?
  47. How do I discover bits per pixel in a loaded bitmap
  48. could not start asp.net...???
  49. Getting the object type in CPtrArray
  50. displaying data from within a loop
  51. Prevention of outside resources in computer aided testing window
  52. Application Close
  53. argc / argv in mfc
  54. VB to VC++ Coding Function
  55. how to avoid sort in stl map<int , int>
  56. SubclassDlgItem
  57. Alpha Blending in eVC++
  58. WNetAddConnection2 in service
  59. cancel ctrl+ in clistctrl
  60. Unmounting **** C drive
  61. KillTimer() is costly?
  62. MakeFile vs Class ??????
  63. Active ToolBar button without ON_COMMAND ???
  64. java search results in url for favorites?
  65. Winhelp "Auto-size height" problem
  66. SDI CFormView App
  67. Thread and timer
  68. Cannot handle *NM_CLICK* message - RichEdit 2.0
  69. accessing protected base class / operators
  70. Problem calling DLL exported function.
  71. GDI-Object Count
  72. capturing video from tv tunner card in directshow
  73. iphlpapi.h
  74. Compilation errors due to list file
  75. URGENT- HELP in richedit
  76. Stop user resizing columns in CListCtrl
  77. Restoring windows
  78. Icons of network resourses.
  79. Avoid creating a process twice
  80. Interface is not registered
  81. Select entire column in CListCtrl
  82. Q to Exceptions Guru (caching Delphy exxeptions in C++)
  83. Whats the difference between a Windows Forms Application and a MFC Dialog Based App?
  84. How can I place the max/min/close buttons on a MFC Dialog based App?
  85. adding a member variable to MFC Dialog Class and programm will crash
  86. how to handle left mouse click function?
  87. How smart is the SetSystemTime API?
  88. Serial Communications problems
  89. Application freezes ...
  90. How do i make multiple documents using Idocumentpointer?
  91. Help with serial port
  92. Good old "Add to gallery"
  93. namespace free exports
  94. MSLU (Unicows.dll) and SetWindowText on Win98
  95. how to copy files from one directory into another...
  96. Can I do a app in 800x600?
  97. something wrong with OleLoadPicture
  98. Is there a keyboard command for it?
  99. Uncompressing .Zip file in eVC?
  100. activating tabs programmatically
  101. ATL/WTL Propertypage. Retrieving data from a previous propertypage
  102. how to tranfer data?
  103. Opening a Dll?
  104. Starting with MFC - Open a dialog inside a CFrameWnd
  105. GetSystemMetrics returning wrong value after theme change?
  106. CRecordSet
  107. variable declaration
  108. Writing Unicode Data onto MS-Word
  109. serial port signal
  110. Control character manipulation
  111. RelaseDC problem
  112. CStatic - Background color
  113. UpdateData(FALSE) doesn't work within a loop
  114. disbale OnHScroll?
  115. MFC: reading text from a CEdit
  116. Need help,Guru's!!! IE menu ext.
  117. Activex - Help needed
  118. Printing the whole Program window
  119. What is memory leaks??
  120. XML Generator in C++
  121. CSliderCtrl notification problem?
  122. hey whats wrong with this?
  123. how to get function address at runtime
  124. Unknown Error - CArchive
  125. USB Communication.
  126. Write array in serialization
  127. Tab order problem
  128. AutoCAD dwg file format and read and use HOW TO?
  129. Tool for customizing menus
  130. NT Service network account...
  131. Active Directory
  132. Turning off Runtime checks in VC7
  133. How does Visual C++ work?
  134. Get events
  135. Load HTML Resource in a CString
  136. how to convert a SDI application to an activex control?
  137. Inherit from custom class
  138. ADO COleDateTime & Locale Settings
  139. Custom message loop in MFC
  140. Basic question to sockets
  141. Doc/View
  142. VC++.net: How to move components from one project to another
  143. Simple COM question
  144. how to pass a string from c++ to c#
  145. Direct Sound writing data direrctly to Primary Buffer
  146. Strand CComboBox Problem (DropList)
  147. Can a .wav file go inside a dll?
  148. Selecting the first character from a String
  149. CHtmlDialog is cool - but how ?
  150. OLE - Word pagecount
  151. blocking a cookie from being read
  152. DCOM Connectivity Issues with MFC
  153. Adding multi comumns to a Checklistbox
  154. Repaint dialog problem
  155. error executing rc.exe
  156. Windows programing app design - software reusability
  157. RelaseDC problem
  158. traversing a string...
  159. Intel's JPEG library: IJL 1.51
  160. Debug Error
  161. Issue with headers and includes
  162. MSCOMM32 - OnComm Event
  163. How to let the parent do the paint?
  164. What's the hype about MFC?
  165. rdtsc on multiprocessor machine
  166. Help required in Repaint specific region (MFC)
  167. Simple question...
  168. before makefile project... after win32 project
  169. FindWindow
  170. What's up with the MSAccess 2002 window ?
  171. OnLButtonDown problem
  172. Trapping and Sending Keypresses
  173. Pocket PC 2003 working environment.!!!
  174. Large Compiled Exeutables?
  175. Is "cout" invalid in win32 app?
  176. XML parsing problem
  177. The picture control in a dialog don't display picture
  178. How to load XML/XSL from memory into browser control?
  179. vc++ 6 & win XP
  180. Nmake Problem
  181. I'm in despair for error LNK2001
  182. Why is the parameter of WndProc not &MSG, instead of four parameters?
  183. Memory Leakage
  184. File Transfer thru Serial Port
  185. about docs manage in vc
  186. DoDataExchange
  187. Function pointers
  188. Huffman code
  189. Need help please with formating a string
  190. Tapi 3.0 com problem
  191. Using CListView in Cdialog
  192. Passing to VB .NET
  193. Rendering "dimmed" bitmap
  194. How to know whether the given handle is a window or control
  195. CRichEditView and text color selection
  196. "Move UP" and "Move Down" buttons for CTreeCtrl
  197. question, mulimedia books
  198. Checking for space in between, HELP!
  199. Repainting toolbar
  200. TRACE - Any maximum length for its argument?
  201. CColorDialog & Pocket PC 2003
  202. Plz Help :(
  203. zoom and draw
  204. Can we API hook CoCreateInstanceEx()
  205. Get object memberlist at runtime
  206. Create New Document Help?
  207. Class for Passing Window
  208. Splitting the mainframe to 3 panes
  209. Sending a message to an MFC control
  210. Check if window is already open?
  211. How to get information about keydown ine dit?
  212. memory deallocation problem
  213. Printing bitmaps
  214. Printing a file using C++
  215. i want to draw when i click on the screen
  216. HTTP Remote Desktop Program (Sending Mouse & Keyboard Events)
  217. list box selection
  218. how to use pcre_compile() and pcre_exec() function?
  219. How to use driver functions???
  220. Looking for source code of Web search engine.
  221. Accesing Netscape browser elements externally
  222. HMAC message authentication
  223. tree traversal
  224. problem with code, any help!
  225. A question for bitmap gurus
  226. Messenger Object models...
  227. Access Violation
  228. How to Change Icon of a Shortcut.?
  229. More than one font in a dialog (MFC, evc++ 3.0)
  230. getting errors on compilation
  231. About subclassing
  232. unresolved external symbol _main
  233. environnement variables AND WinMe
  234. ADO & COleDateTime and day <= 12
  235. Class not registered? Help
  236. how to code this "variable" replacement
  237. How to encode 16:9 DV Video
  238. Updating CDateTimeCtrl via user clicking number buttons
  239. How: Keep memory clean
  240. My compiler just locks up during build (have to restart VS)
  241. Lnk2001
  242. CRichEditCtrl set font to same width
  243. Convert Binary to Hex in ActiveX control
  244. Pasting FillSolidRect in Enh Metafile via Clipboard to Paint
  245. MFC or Windows Forms?
  246. watching VALARRAY
  247. C++ Problem with arrays
  248. My Dialog wont do ANYTHING
  249. How to set the text in the edit control using only win32APIs?
  250. Disabling divide-by-zero