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

  1. Exception - warning
  2. DLL with same name but in different directories
  3. How to make a console, ole automation server application?
  4. Multiple resource files
  5. How to Write&read data from samrtcard?
  6. debugging an attached process
  7. IsThreadAlive( threadId ) ?? How to determine if thread is alive with just the m_nThreadId
  8. Spinning icons
  9. Creating a MenuHandle
  10. Grid Control: Replicating drop down list from a combobox
  11. Retrieving a handle
  12. How to make key work on a dialog based application?
  13. Edit Box
  14. RichEditCtrl size
  15. IHTMLFrameSetElement
  16. Activate a Window
  17. VC++
  18. Additional NT Logon
  19. CListCtrl !!! Anybody
  20. Encourage voluntary people...
  21. This is how I find out IRQ & I/O addrs.
  22. Record Set objects
  23. SQL and Access
  24. Setting Focus to CComboBox Control
  25. spell checker
  26. Problem with closing ActiveX OLE Property Sheet
  27. How can i change the typical scrollbar in a tree control ?
  28. Urgent: Session Menegement
  29. MTS Custom Resource Dispensers
  30. Graphics
  31. More on ODBC Jet DLL (Version 4.x)
  32. Finding the number of sectors
  33. Automatic resizing of controls in a CWnd.
  34. formating in CRichEditCtrl
  35. formating in CRichEditCtrl
  36. Simple question
  37. DLL
  38. How do you test the value of the m_hWnd variable
  39. Printer Fonts
  40. Help me to automate Access97
  41. Deleting non-empty folder
  42. Modifying a 3rd party's menus?
  43. Icon problem...
  44. general question
  45. beginner
  46. Printer Fonts
  47. definitions
  48. CD ROM sectors in VC++ for Win 95
  49. Adding a menu item
  50. Microsoft COM+
  51. OOD??
  52. Urgent Help with AT comands
  53. reading a registry key
  54. Printer Fonts (Somebody help me, please !)
  55. (Urgent) Files
  56. Release version problem
  57. How to let Windows to open a folder
  58. How to change the font of the tool tip text
  59. How to use WebBrowser Control
  60. TSR / Interrupts
  61. how to clear the buffer in an ...
  62. Shell_NotifyIcon
  63. How to change font in control bar??
  64. Logon Hours
  65. Sorting data in a CListCtrl object
  66. WINOLDAP crashes with my ShellProc?!
  67. Anyone know about afxTraceEnabled ?
  68. Adding a menu item to Explorer
  69. How to Create a relation (CDaoDatabase::CreateRelation method)
  70. ...Grouped Radio Btns...
  71. Retrieving data from a property page
  72. CTabCtrl, adding controls
  73. HTTP-Client, CGI
  74. CControlBars
  75. Access drivers.....
  76. Access drivers.....
  77. saving time in a file header
  78. CRecordset in a console app == troubles
  79. Adding controls to CTabCtrl
  80. Popup a new "modal" FrameWnd
  81. C++
  82. MDI Question
  83. Limit of CEdit is 64k/1MB
  84. Subnet commnication
  85. Dlg setfocus()
  86. Where does GetWindowsDirectory() find its info
  87. Serial Comm - Simple
  88. Wrappable flat toolbar
  89. Does anyone know this...
  90. Printing in a Dialog Based Project
  91. Context Help Tool Button
  92. ATL Property Page
  93. Why my socket application runs so slow?
  94. How to have my program's icon in the Windows Task bar?
  95. Listview icons not being masked
  96. Adding a menu in Explorer
  97. Long Pointer
  98. WM_KEYDOWN and Numeric Key Pad
  99. Finding the number of sectors
  100. Quick question re sorting an array
  101. MFC function that returns OS dir?
  102. Need OnInitDialog equivalent in CFormView.
  103. How to prevent a dialog box from being displayed at runtime
  104. WM_MY_MESSAGE
  105. 12:12:12 AM can't catch by VT_DATE inCOleSafeArray in Execl Automation.
  106. MDI and openGL
  107. Function Call on an Input Stream (External File)
  108. New Programer Questions (real easy I'm guessing)
  109. ToolBar,StatusBar in Dialog
  110. NICE Books for OpenGL
  111. Multi Threading
  112. How I can create slider like winamp?
  113. Balanced Multiway MergSort code
  114. How to obtain the device context(CDC) permanently throughout the program???
  115. MDI that have parent window on desktop
  116. how to compare two bitmaps that are displayed in sdi
  117. How to display 3d image on 2D raster screen
  118. 3D Reconstruction from stereo images
  119. 3d from bitmaps
  120. Scrolling Text
  121. How can I use classes from DLL ?
  122. Setting a font to Menu
  123. Changing the font of application's menu
  124. ole
  125. How to get DirectDraw Interface in MFC program
  126. driver
  127. New customization project
  128. pointer to my doc class
  129. how to create CDC dc; - I am just plain confused
  130. Link Problem
  131. Urgent : Alignment problem in statusbar
  132. file
  133. CDC and bitmaps
  134. 2 different users accessing the same database
  135. Sending Keys to a window
  136. Can't issue MsgBox after DoModal()
  137. Enumerating all windows on the desktop
  138. the user pressed ENTER on a edit box?
  139. Starting new process
  140. HELP!! REAL BAD
  141. FileParsing
  142. OnHelpHitTest() in CFormView
  143. A couple of questions
  144. oledriver
  145. mode 13h, MCGA
  146. bitmaps
  147. Odd shaped rich edit controls
  148. OpenPrinter, StartPagePrinter and WritePrinter
  149. Winsock Functions
  150. A little question about the nature of CFile reading
  151. Compiler Error
  152. Changing font of a dialog dynamically
  153. graphics again
  154. CD Rom File system
  155. Context Menu
  156. URGENT: How to write onto the new created window?
  157. CListCtrl
  158. A button to call up email application
  159. Class Inclusion Confusion
  160. IP Scanning
  161. Side image bar for menu?
  162. Menu in a dialog ?
  163. Printing custom sizes on NT
  164. How can I obtain a window handle to a property sheet ?
  165. Interface
  166. Scriptinterpreter to use within Visual C++ ?
  167. trying to astablish a WATCH window
  168. "Window" Item In Main Menu
  169. Bits
  170. CFile-- reading text, binary, and etc?????
  171. TRUSTED DOMAINS!!!
  172. CListCtrl
  173. Registry and C++
  174. Call the browser and connect to given URL
  175. Open drive shared with some access...
  176. How to make my programe start as soon as some app such as Outlook express start and then stay on the
  177. Microsoft Data Grid Control
  178. About Enhanced Meta File
  179. Data Report
  180. Header files
  181. Help
  182. Help
  183. Computing folder size
  184. Modifying Dialogs in the Resource editor
  185. How to implement Undo/Redo in CDialog ?
  186. How do I change the color of a line ?
  187. Best Control Available
  188. COM-fused
  189. Bitmaps
  190. Slide shows
  191. How do I know if a DOS program terminates?
  192. Usage of Dynamic Call for any program
  193. My own Strings class
  194. How to detect when running out of windows resources
  195. A struct consisted of LPCTSTR
  196. Rotating Font
  197. Rotating Bmp 90 degrees
  198. I need search strings in files (char zero too)...
  199. CDialog inheritance
  200. Tree Control
  201. Resizing Controls in run time.
  202. Execel and ODBC
  203. Client OnReceive() Question
  204. [STL] problems in using map & multimap
  205. PropertySheet
  206. Why there is no new topic in whats new since one month
  207. View not Update!!
  208. Need help with this code please...
  209. arabic, chineese, german, hebrew ...
  210. How to Get file form ftp server
  211. Diff between VB and VC++
  212. Regarding Windows NT
  213. Taskbar
  214. How to use XML dll in c++
  215. Urgent (HD Sector R/W)
  216. How to use ODBC API call for knowing Tables in a database ?
  217. icon index in system image list
  218. Virtual Directory
  219. Debug Server
  220. new document with predefined name and archive path
  221. Getting new controls
  222. Icon: Drawing as disabled?
  223. REPOST: attaching to a running process
  224. start with a hiden dialog box
  225. Media Player
  226. start with a hiden dialog box !
  227. start with a hiden dialog box !!
  228. WSAError()= 997
  229. WSAError()= 997
  230. How activate a window?
  231. How to use connect fucyion of socket api
  232. Exact base10 floating-point class (like double)
  233. about share memory
  234. List View
  235. MapViewOfFile
  236. ComboBox / Default value
  237. How to draw a bitmap into another bitmap?
  238. Status Bar
  239. Rotating a given CFont
  240. How to get the title of the active application?
  241. Silverrun ID-number needed
  242. CRichedit: Setting dxOffset
  243. CRichedit: Setting dxOffset
  244. AfxLoadLibrary - undeclared indentifier
  245. Spell Check
  246. Urgent (HD Sector R/W)
  247. Access image in Access
  248. Urgent Please Tell me how to call connect fuction of winsock (Not CAsyncSocket connect) Api
  249. C++ Compiler
  250. How to dynamic register IP address for Windows NT?