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. DLL problem
  2. Printing
  3. How to realize a Real Time processing?
  4. Read file problem
  5. how to detect Windows password expiry?
  6. How To Send a Byte through COM1
  7. Audio Mixdown (hard)
  8. Crash during Closing socket
  9. MFC dialogs are going background or minimised..
  10. Change focus to another tab
  11. Dialogs
  12. Use This
  13. help needed.... looking for Voice Recognition Algorithm in Embedded VC++ ...
  14. Pointer to a dialog
  15. Difference b/w Win32API & MFC
  16. How to attach Icon With Menus
  17. GetPrivateProfileString
  18. How to concatenate safely...
  19. how to get system directory information from remote computer
  20. Major linking problem
  21. Update CFile
  22. multiple views in an sdi application
  23. Create SubWindow in Open GL
  24. WinNT user group/rights.
  25. Help with CreateFile
  26. copy listbox from one to another dialogbox
  27. printing under win98
  28. Modem Listing using Tapi or any other Win32 api
  29. MSDN vague. Need real answer. Who knows most about 'Automation'???
  30. ActiveX and IMoniker
  31. how to use the Function : CWnd::SetProperty(...)
  32. CreateInstance does not work in MFC DLL
  33. CreateInstance does not work in MFC DLL
  34. How to get current time in FILETIME format?
  35. how to change the Background Color of a CColumn - Object?
  36. Threads and internet connections...
  37. [Hard] How ot Change All Windows' Title ?
  38. Error with WriteFile
  39. VC++ and VB
  40. Searching for a symbol using its name
  41. CPageSetupDlg and CPrintDialog
  42. How to close modeless dialog?
  43. Windows events
  44. A darn and maybe even tough problem with creating a dialog in a frame window!
  45. Registering a COM
  46. CPropertySheets and icons...
  47. Can you hear me ????
  48. How to check for the existence of an COM object?
  49. Visual C++ Classes
  50. Invoking Crystal Report from VC++
  51. internet explorer messages
  52. Finding the file path to the current executable
  53. What's wrong with this code?
  54. Where to look in Windows Registry after Registering a COM DLL?
  55. HEAP: Free Heap block 327218 modified at 32736c after it was freed
  56. ATL problem registration
  57. debugging C++ DLL's thru VB
  58. .Net
  59. LNK2005 - extern DOES NOT HELP
  60. info on event fired!?!
  61. Read only edit box that's not greyed out?
  62. Transparent Bitmaps
  63. Remote Computer's registry
  64. Drawing stuff yourself
  65. Send and Receive a Structure via CSocket
  66. Small Large Font issue
  67. Add a control to taskbar button at the bottom of screen?
  68. Context Menu acting wierd
  69. Turning off 'Autorun' in a Windows app
  70. Confused about file type association and registry
  71. Turn off autoplay of CDs in Application
  72. programically scroll the view
  73. mouse pointer
  74. Doesn't make sence!
  75. How to create the rotating icon that you see in internet explorer in a normal window
  76. CListBox & Grid :: MFC
  77. How do I create a ToolTip for CTreeView???
  78. IDL definition of struct for tree
  79. Memory Leaks in C Runtime software
  80. Two questions for your kind help.
  81. Active X and COM
  82. Where can I find out where all the the differnt data types are typedef'ed
  83. CreateInstance does not work in MFC DLL
  84. how to open the main window maximize?
  85. how i terminate ui thread?
  86. Cdocument.....
  87. CListCtrl
  88. CAsyncSocket and CSocket
  89. using enum parameter in ActiveX MFC
  90. Undocumented WMF media types
  91. Schedule Control
  92. Writing to the registry
  93. Hooray! I have just DISCOVERED the 4rth World!(called CRegKey)
  94. Hooray! I have just DISCOVERED the 4th World!(called CRegKey)
  95. accessing an asp .net service from c++
  96. Help me! how to use map network drive in NT service
  97. Compile errors - ActiveX ATL
  98. ActiveX component
  99. Simple string question
  100. Testing....
  101. How to change CEdit font
  102. CMapStringToString - Destructor problem.
  103. Identifying a character drawn using the mouse!
  104. CListCtrl in Dialog Box & Select :: MFC
  105. Random file access in Visual c++
  106. UDP Socket program: Server not receiving
  107. How can i make my application as top level
  108. change position of tooltip
  109. Proxy service detection in Windows
  110. How to get the ip of a host in internet???
  111. glut in win32 application
  112. TabCtrl_GetItem exception error?
  113. A problem with scroll bars and edit boxes
  114. How to erase the controls from screen?
  115. Margin in CRihcEditView
  116. Threads
  117. testing (ignore it)
  118. Info needed
  119. diaaaaalog box
  120. what s wrong with CtreeCtrl?
  121. using CDatabase in ATL service
  122. Parallel computing quiz
  123. calling BEGIN_MESSAGE_MAP causes problems
  124. Win32 API
  125. Resources VAnished
  126. Where to get simple (but working) HTTP proxy?
  127. urgent!!!how to work CreateInstance in MFC DLL
  128. CMenu
  129. CList
  130. array problem
  131. Simple Array problem
  132. Messenger Request
  133. How to place the CToolBar and the DialogBar In expected order.
  134. CImageList
  135. Xeon's home-made cakes for you real men : 2 registry functions(read & write) for you!
  136. Passing by reference for variables in functions
  137. HELP, URGENT> FTP issue on Citrix Box
  138. A reliable way to test if a value exists in the registry
  139. random function
  140. Message box
  141. Treeview control
  142. Closing the dialog box
  143. CTreeView
  144. Changing CView
  145. ..
  146. Efficiently doing a server using sockets
  147. more about hex string
  148. question about resources...
  149. hide items in CListView
  150. Shall I learn Managed C++?
  151. access to MainFrame from View, in Doc/View architecture.
  152. Howto create sub frame in main frame
  153. List view control with icons on the first 2 columns and rows
  154. Writing to an Acess database
  155. random / order
  156. Inserting icons in the cells of FlexGrid?
  157. Chris Maunder' MFC Grid control
  158. Reading The Event Log Viewer
  159. MS Flex Grid, visual c++
  160. Initilize a pointer
  161. Tooltips
  162. afxbeginthread
  163. UDP Socket program: Server not receiving
  164. parameter passings
  165. Transforming repeat until into do while
  166. changing the datasrouce of a data repeater control causes error ...
  167. Simple Array Initialization problem
  168. friend operator overload
  169. Help with Tooltips
  170. xml Parsing
  171. A Struct to Reduce Fractions
  172. LoadLibrary() returns 193 for USER.EXE on Win2K
  173. Simple Array Initialization problem
  174. Where to get simple HTTP proxy source?
  175. Simple Array Initialization problem
  176. How to write the query SQL in VC?
  177. Random on pc's
  178. why it can't connect to my default DSN?
  179. how to insert a bmp or others graphics to the Excel cell?
  180. Copying a COM Object...
  181. How Win Install App works?
  182. Rotate Label for c++Builder 3.0
  183. hep me out
  184. About CTabCtrl derived class in dialog application...
  185. load COM dynamically in MFC Application
  186. Removing window title from "Window" menu
  187. Installing my Application
  188. CHtmlView as fileviewer - Please help!!
  189. createdispatch returns false...
  190. how to insert text to a text file
  191. VC and Access 2000
  192. Large amount of data in a list view control
  193. CDC problem
  194. Free database libraries?
  195. why my program can't run in winxp but run in win98
  196. Thread Icon
  197. help....how to retrieve selected contents from a webpage??
  198. Casting
  199. Some questions of loading DLL?
  200. MSDN Library
  201. [?]How to send SCSI command in WIN XP?
  202. How to get enum value from ITypeInfo?
  203. Problem with char **
  204. Record not seen in Access
  205. Communications
  206. Crystal report Through Application
  207. How to connect to Relational database using ADO or OLEDB
  208. Attach View Dynamically
  209. help on text/string manipulation
  210. MSCOMM without dialog - use modeless dialog
  211. How to do Reports in VC++
  212. active window handle
  213. communicating with a mobile phone using serial port
  214. How to import class from DLL?
  215. dialog tension!!!!
  216. change color of static(label) box without affecting the properties of text in it?
  217. Adding A Button Event Handler.
  218. How to get the duration of function running?
  219. MFC question...
  220. 3D image Display
  221. how to know full html page is downloaded ?
  222. Reading and storing Bitmap pixels in form of its coordinates
  223. How do register the DLL
  224. MSCOMM without dialog
  225. Socket Problem on 100 MBit
  226. Process identification
  227. calling CListCtrl insertitem() from CMainFrame class
  228. Word Automation
  229. How can I declare a Class dynamically ?
  230. Is my thread running?
  231. can MFC application work in different Platforms?
  232. DirectX stream flow. Getting data from an external frames source.
  233. Adding application variables to COM
  234. How to idetify a character drawn using the mouse?
  235. Converting from basic_string to char*
  236. Bold text in popup menu
  237. CListCtrl
  238. database connection in component
  239. DebugHeap Error
  240. More than one instance problem ???
  241. ActiveX control in ASP
  242. template class
  243. Can I get the Interface IConnectionPointContainer of an ActiveX component?
  244. which DLL`s must i deliver with my program
  245. How to connect to Relational databases using ado or oledb with out using DSN names.
  246. Only browse network.
  247. Changing document templates
  248. Want to set nCopies by myself - but it doesn't work;-((
  249. SetCaretPos and ComboBox
  250. draw icon on desktop