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. PDH Functions and Performance Collections
  2. How to add <th> to <table> using IHTMLTable??
  3. How to validate a date
  4. LinkerError
  5. About Message handlers
  6. MDI or SDI or Dialog
  7. Precedence
  8. String or character to numerical value
  9. stdcall and cdecl
  10. writing in a text file
  11. Can I call AllocConsole but keep the window hidden?
  12. COM server
  13. how to get and change the hard disk serial
  14. Reading from disk bootsector
  15. stacks and queques
  16. popup menu display problem
  17. justify and CichEdit control....
  18. WSH Projects
  19. linking to a DLL without a lib file and without getProcAddress
  20. HELP! DLL - PropertyPage HELP!!
  21. Drive, Dir and File List Boxes
  22. Creating a Process - Creating Non Blocking Pipes
  23. extern, interpreting some code... basic stuff
  24. DeviceContect of CDialogBar
  25. CRichEditView Printing
  26. Using an array of structs - help!
  27. How to time starting a screen saver in MFC
  28. URGENT:DCOM Connection on Remote PC
  29. Change resource dll (language) at runtime
  30. data maniplation from a file
  31. How to change the font of a CEdit control?
  32. menu or toolbar not loading
  33. How create a picture morphing tool
  34. ======== Help Needed From The Scratch ========
  35. Number of sessions in multi session cd
  36. Removing Caption Bar
  37. hwo to read and write huge files?
  38. Retrieving Data from a Dialog box
  39. How to change the color of the arrow in the Popup menu??
  40. CComboBox: making the box bigger
  41. Assertion failed!!!
  42. How to Keep List Box on top in Dlg...?
  43. /Zm Error , Heap Limit reached
  44. How many elements can std::vector hold?
  45. Create & Show Non-Modal dialog problem
  46. Extracting a resource from en EXE
  47. Can't get rid of assembler code in debugger...
  48. threads in web crawler
  49. What's the best way
  50. multitasking issue
  51. Mapping between variable name and stack address
  52. SDK Bugged?
  53. a puzzle about DB in the vc
  54. Parsing Strings Comma Delimited
  55. CString array content search?
  56. AVI creation
  57. window with no titlebar
  58. How can i use shortcut keys?
  59. BUG: ScrollWindowEx smoothscrolling, Child windows are drawn displaced
  60. Convert CString [] into integer
  61. Open a Dialog on New in SDI
  62. Show a RichEdit control in a Dialog
  63. ANSI C module in a VC++ 6.0 project
  64. Com addin for Office
  65. Table in Dialog
  66. table like structure(multiple collumns)
  67. zipfldr.dll Q
  68. CListCtrl: how to put controls in it
  69. How to add images in RichEditCtrl?
  70. Dialog resizing
  71. fopen - Check for Empty File
  72. Changing Text Color of ListBox lines
  73. CImageList vs CheckBox at ListCtrl
  74. Cant compile MSDN examples becuase of .sln version
  75. ListView Sorting
  76. How to derive class from CButton
  77. Help!!!!Weird ListBox behavior.
  78. Problem on closing application
  79. vptr
  80. Using CDC::GetTextExtent()
  81. Create Packages & Stored Procedure in SQL Server at the time of installing
  82. Copy part of bitmap using CImage
  83. Help Debuging
  84. aha!SourceAnyWhere,a vss remote access tool
  85. Link error
  86. passing const void* into function
  87. Slider Control
  88. std::ostream
  89. RC-Error
  90. unresolved externals in vs2005; none in vs2003
  91. about #include
  92. How to draw Dashed Ellipse in Embedded VC++
  93. accessing MFC Visual C++ file from Visual Basic
  94. problem closing metafile
  95. Change the value of a register?
  96. Problem with Replace sel function in CRichEditCtrl!
  97. Question about setevent and GUI operations in the main thread
  98. communications between windows applications
  99. Static Array how to increas the size dynamically??
  100. Multiple document types in SDI
  101. CTreeCtrl PLEASE HELP
  102. what do these mean?
  103. How to avoid error "Memory could not be written" during execution
  104. PictureControl
  105. Pull all Network Information Remotely
  106. Font Stock Property will not persist
  107. difference between borland C++ and visual studio
  108. Passing a template datastructure of template datastructures
  109. MSXML -> XSLT -> and bloody \r\r\n and where do they come from?
  110. Getting text from an edit box
  111. Application Error :memory cld not be written
  112. DAte control
  113. Bluetooth & Visual C++
  114. Rightclick on a button ?
  115. Getting the current user's Security ID (SID)
  116. Windows 2000 and GetMessage?
  117. Help - fatal error C1189: #error
  118. Remote COM help
  119. using resources in vc++, need links!
  120. child controls
  121. Using ATL 7 event_receiver(com) and event_source ??
  122. Hacking COM objects
  123. Floppy Disk
  124. DirectX question
  125. Passing variables between Modeless Dialogs
  126. ====== Install Shield ======
  127. Stdmethodcalltype
  128. Why is this code giving exception?????
  129. UpdateData(FALSE) sends WM_SELECTSTRING to dropdown bobox
  130. Identification of available directory
  131. Hiding treeitem in Treecontrol
  132. upgrade
  133. Problem with std::set
  134. CWebBrowser2- distance between lines
  135. MFC C++ question
  136. How to check if monitor is on
  137. Windows NT Authentication
  138. ======DDE Serial Communication ======
  139. MFC exception in CPropertySheet::OnInitDialog()
  140. executable file in dll VC++
  141. Text file writing and creation..
  142. problems with integration of VB And VC++
  143. Question!!!
  144. Create OLE in WebExtension
  145. Problem with dynamic dialog and OnPaint()
  146. Couple of Questions
  147. memory leak using CFileFind and basic_string
  148. Problem in CreateFont
  149. Unicode woes with Readstring
  150. Problem with CString and char*
  151. passing control handle to function
  152. DRAG n DROP
  153. Good conversion strategy
  154. Questions with Event
  155. problem with list::iterator
  156. vs2005 linker errors; multithreaded dll option fails to work
  157. how to modify char line[1024] when passing to a function?
  158. ModeLess Dialog Problem
  159. How to check if a control is visible programmatically?
  160. Is it possible to set the "Product Version" and "File Version" for a .LIB file?
  161. CD Burning - Imapi.h
  162. CHtmlView + focus
  163. setting window title
  164. Dlg Box Picture: Win CE LoadImage does not work??
  165. How do you DDX integers from CComboBox ?
  166. unmanaged app with managed control
  167. What override do you use to update a property page before closing the property sheet?
  168. typedef
  169. newbie: How to write data into text file
  170. win32 and PASSTHRROUGH?????
  171. newbie: How to detect current PC CodePage
  172. local variable in static function
  173. Bad Dll calling convention?
  174. creating right click menu
  175. Diaplaying messages
  176. norton Internet security causing problem??
  177. A strange problem about WS_EX_LAYERED style on WinXP
  178. DialogBox Error
  179. Floating toolbar resizing
  180. how to read from a certain location?
  181. Problem with setting Wallpaper
  182. Dev Studio Addin question
  183. MFC Combo box question
  184. RegSvr32 Problem - GetLastError 0X0000045a
  185. Access to VB ActiveX DLL PROPERTIES
  186. ATL Composite Control Deployment Problem
  187. Problem with ntext data type and VC++
  188. Show a bitmap from file
  189. Timing search in a linked list
  190. calling a CView function in CDialog
  191. Convert a CString in an integer
  192. Static Control
  193. Query regarding extracting points from a CRgn Object
  194. Some doubts with MsgWaitForMultipleObjects
  195. Problem with CWnd::OnPaint() called from a Dynamic dialog
  196. Elimination of noise from PCM speech data
  197. CRAXDDRT.DLL & Visual C++
  198. static control Win32
  199. One More Deep Step Into System
  200. How create window on background?
  201. how to share a folder on network!!!
  202. Ms Visual C++ Vs Borland Visual C++
  203. How to pop a message box from a Win NT service
  204. how to trim white space before and after a string?
  205. Can i Unsubclass/Unhook in DllMain's DLL_PROCESS_DETACH?
  206. check box problem
  207. Wave File Problem: Extracting the file size
  208. multimap
  209. SetWindowText in SDI
  210. Copy a HBITMAP to a CBitmap?
  211. Advanced programming question
  212. CSplitterWnd::GetRowInfo and GetColumnInfo returning wrong height and width
  213. Tab Controlls Help please
  214. Simple SQL results question...
  215. CListCtrl: how can I catch the scroll event of the control?
  216. Any good utilities to translate resource files into different languages?
  217. DAO puzzle
  218. Please Help With MIDL Error
  219. polymorphism help needed
  220. is this calling convension problem?
  221. file shredding, where to start?
  222. Code for Writing (Burning) to Writable CDRoms
  223. CListCtrl: the OnVscroll() ignores the control
  224. list from start programs folder
  225. MFC, MDI Browser - navigate2 problem
  226. How to create an OXC in VC++!
  227. Processes: How can I kill a process ?
  228. Problem with multiple throws.
  229. Doc-View (m_pMainWnd problem)
  230. Views
  231. problem with Multiple inclusion of header file
  232. can i load icon resource by FindResource ...API functions
  233. Is there any danger in using ExitWindowsEX(EWX_POWEROFF)????
  234. Command line length
  235. why Windows will not allow us to create a folder with names .. "con" or
  236. ATL Control Containment in Win32 DLL
  237. problem accessing vector
  238. Generic Programming Question
  239. CTreeView ???
  240. how to close child view when the "New" is selected
  241. Problem with controls in a dialog application
  242. searching automation for Get and Set functions
  243. Hidden CHtmlView
  244. System Tray Management Problem
  245. CString to integer
  246. From Char* buffer to CString
  247. Kill Focus of Main Window
  248. Problems with FindNextFile
  249. Enhanced MetaFile Problems
  250. Reloading CBitmap