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. Programmically retrieving the name of the SQL Server
  2. CRectTracker resizing issue
  3. Disable move operation on dialog while moving
  4. Grabbing Window-Msg from another application
  5. List View - Centering 1st Column Text
  6. Handle Clicks (Save) in IE
  7. need printing help + ideas
  8. C++ and void*
  9. visual c++ 6.0 dll reg.
  10. recordset.clone memory leak
  11. soap service in C++
  12. [RichEdit] display a text
  13. Strange bug with List View Control
  14. About SendMessage() API
  15. Can I use CScrollView in a SDI application without doc/view architecture supported
  16. CreatePen() for a DOT-BLANK-DOT Look Possible?
  17. how to change the view of ole embedded object
  18. Programmatically change the folder access permissions
  19. Problem in Reading contents of Long Files( Long Filename)....~~~
  20. codes for searching an input?
  21. Easy question about STL and VC++
  22. system shutdown problem
  23. How to know another Instance of application
  24. How to know another Instance of application
  25. Where can I find the eBook download...
  26. Is This Possible
  27. Problem with destroying a menu! :-O
  28. How to convert text to ico
  29. Opening another dialog box in Winmain
  30. Problem with multiple doc templates and splitter
  31. How to modify ethernet header fields via Winsock/Windows Networking APIs
  32. can anybody explain?
  33. Messenger Utility Software
  34. Automotive programming
  35. any good book for winsock?
  36. header file structure for vc++ 6.0 library
  37. Controls "layering"
  38. Global COM object shared by many threads
  39. _timezone and _daylight
  40. ReadDirectoryChangesW - help reqd...
  41. Not all controls painted
  42. DDE question
  43. Is possible in, out from ISA card
  44. Modify a toolbar button image at startup?
  45. Using USB port using CreateFile ...
  46. Who will free server allocated memory under DCOM?
  47. problem wid menu
  48. CObjects
  49. Passing values from 1 dialog to another(pls help!)
  50. Passing values from 1 dialog to another (pls Help!)
  51. Get View command with ADO
  52. Assembly
  53. Child window of another window (VB PictureBox)
  54. GetVolumeInformation and Xp/2000?
  55. SendInput works partially - HELP
  56. Writing on DVD ...
  57. Migration: Borland -> Visual C++
  58. Why MS redefine Base Data Type?
  59. Poor guy wants to access the database.. any body there to let me go...
  60. ShowWindow(SW_HIDE) fails in OnInitDialog
  61. Deriving a class from CScrollView
  62. extract char from char*
  63. get heigth & width from string in gc
  64. How can I retrive Email With Attach in my App ?
  65. RightAlligned multiline EditBox
  66. CTreeCtrl or lack of the same :)
  67. Why Destructor is not called ???
  68. Getting a certain string from a CFile data file .....
  69. How can i get the letter from POP3 server with attachments ?
  70. DeviceIOControl & CreateFile
  71. CString
  72. splitter window
  73. Deriving from CObject
  74. NT Service question
  75. Displaying an Imgae to a LV contrl
  76. Context Help on a button in MFC CFormView
  77. Need to find Carriage return in my CString ????
  78. calling OnInitialUpdate()
  79. Tree Control and TVS_TRACKSELECT - No underline appears!
  80. Embedded launch of an EXE server in DCOM
  81. Help with GetLength of CString ???
  82. Radio Button Problem
  83. Need help displaying property sheet in ActiveX control
  84. CListCtrl / CListBox
  85. new MDI window
  86. Urgent :How to have tooltip for a button in a dialog in an ActiveX control?
  87. SetForegroundWindow() vs Win2k
  88. Accelerator/hot keys lock up system on Win 98
  89. Sending strings to the command interpreter
  90. InterlockedDecrement PROBLEM
  91. DVD related new problem ...
  92. Setting frame funtionality
  93. How to enable/disable DHCP client automatically?
  94. Transparency not showing in a Tree's bmp.
  95. OnInitialUpdate()
  96. CString Find
  97. Socket reallocations error 10055?
  98. how to shift the menu to the rite side
  99. Win95/98 User ... Can the PS_ALTERNATE option of ExtCreatePen() work on your Systems?
  100. how to get values from a child process?
  101. Arrays of control
  102. Need database advice
  103. Check Dial Up Speed
  104. Freeing memory right AFTER previously allocated position
  105. Splitter windows and menus
  106. SysTray: auto-popup tooltip
  107. Create Database Table in SQL Server 2000 Using ADO calls
  108. can icon background be transparent?
  109. CSocket send & receive
  110. CListCtrl InsertItem and SetItem
  111. static text controll BackGroundColor & transparent
  112. Not able to start applications through service
  113. CDataGrid
  114. FSOUND MP3 Loading Takes Forever!
  115. Filedialog and fileopen problems
  116. About Install Shield.
  117. save as .bmp file
  118. how do i give this web site
  119. is this the way to use Serialize()?
  120. Desktop Shortcut Folder
  121. Activex on the web...
  122. setup in vc++
  123. Refresh Problem when using static text control
  124. higlight of text in webbrowser control and rich text format
  125. how to make cd non-copiable
  126. PCM data format ..
  127. Please help me.. it's too urgent...
  128. Hey!! do you know this... (pixel color)
  129. New line character
  130. Way to tell when Child Windows are Hidden?!?
  131. user32.dll
  132. 2 Questions
  133. SetColorAdjustment (MFC)
  134. App.Path
  135. Need Help
  136. GZIP, TAR format ? Where is class for wrapping gzip code on Windows?
  137. Synthesizing paste operation
  138. COLESafeArray memory leak problem
  139. how to allocate two dimansional array dynamically
  140. Set width of divider i CHeaderCtrl
  141. How to hide button in taskbar?
  142. Process stopped when user logs out
  143. CTreeCtrl customdraw problem
  144. How could I add lock to directory in win 2k?????
  145. Add timer to my class (my class does not derived form MFC)
  146. Non Standard baudrates.
  147. Scrolling of Edit control
  148. Drawing Overlapping Circles Problem
  149. Surppress a Messagebox of any Windows Program
  150. Active x Control
  151. I have driver and driver's SDK, but.....
  152. CFile Problem ....
  153. floppy store - find the disk space
  154. Menu item prompt doesn't appear into Status Bar
  155. How can I get dial-up connection static IP-address before its establishment?
  156. Help!!! How to get edit control to detect whether ENTER or TAB key is pressed ?
  157. Extracting files to and running files from memory
  158. partially erase background ?
  159. Scripting Editor
  160. Driver for Modem
  161. Help wanted: Getting class name of Control
  162. How to Save Two Child Frames ?
  163. Help. Creating Form with graphic seal pic
  164. Urgent
  165. Self inflicted Dropdown Edit control
  166. size of temporary files visual c++/ms-sql 7.0
  167. distributing application
  168. how to get the URL of the browser window ??
  169. Help!How to get the bitmap file bit & made some changes to the bit
  170. how 2 shift the menu to right hand side?
  171. Order
  172. [MFC] no menu
  173. Pointer to member function
  174. How can I set a window as foreground window?
  175. Help Wanted!
  176. BUTTONUP requiring 2 double click?
  177. error causing in setup because of msvcrt.dll & mfc42.dll
  178. web project with Visual C++
  179. Unicode problem
  180. editing resources of any exe file
  181. fix split bar
  182. An interesting problem with drive letters
  183. Receiving info from comm port using mscomm
  184. How to send data for smart card?
  185. round to integer
  186. Problem writing out to a File ????
  187. setting and removing imagelist in list control
  188. Access Violation
  189. How to sequence files?
  190. Inheritance: Virtual Function Parameters
  191. Window Identification, copying directories and more!
  192. how to get the coclass from a COM interface?
  193. hi all
  194. Transparent bitmap rotation causes a halo of transparent color around bitmap
  195. What format specification do I have to use for LONGLONG type?
  196. GetCurrentDirectory vs GetModuleFileName
  197. interesting problem
  198. toolbar question, don't want it floating
  199. open gl
  200. creating a CWnd in a FormView
  201. ODBC Connect String
  202. need source code for firewall
  203. changing the Icon of the .exe file
  204. Icon of the .exe file
  205. Updating ActiveX Controls in Visual C++
  206. Release issue
  207. Property Sheet
  208. File Permission/access issues?
  209. little help for a chat
  210. How To draw Overlapping Circles
  211. Debug at Command Line
  212. SN° of CD
  213. System menu
  214. Help: SQL Error S1000
  215. a basic queston about random number
  216. dynamic array allocation with dynamic boundaries
  217. How change filter in customized CFileDialog?
  218. Language Version of OS..?
  219. services...
  220. Is there any afx_msg or event about opening or closing a folder
  221. Threads and winsocks
  222. Help for begineer
  223. RegistryStrange Probelm
  224. CFile::Flush()
  225. How to add ODBC to dialog based windows....and time management features..
  226. How to know how many entries are there in a char array?
  227. Seeking Bar w/o DirectShow
  228. how to send a stringto MSNmessanger from a program
  229. Using scroll bars of SECTabWnd when RichEdit control is added as Tab
  230. HTML editor concept?
  231. HTML editor concept?
  232. HTML editor concept?
  233. Hello !!!
  234. Class Wizard not recognizing the Class
  235. Strange behavior of BeforeNavigate2 event
  236. VC++ Goto Definition
  237. DrawDIB Problem
  238. rounding up double ?
  239. Linker error
  240. do u know...dialog window printing...
  241. malloc in DLL
  242. creating OLE in VC?
  243. Help! how to get the bitmap pixel value and make change of the value n save.
  244. docking toolbar
  245. Help! how to get the bitmap pixel value and make change of the value n save.
  246. Bitmaps merging
  247. Probably a stupid question
  248. Get open files name
  249. Returd Recodset
  250. Help!How to create a window doe not appear in taskbar?