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. preprocessor directive
  2. Serting edit box text
  3. LNK1104 error. Please help!
  4. A print problem
  5. How to make rotative button group
  6. How to setup the project
  7. data structure
  8. Difference between Handle And Pointer
  9. EditBox and problem with MULTILINE
  10. how to add hex numbers which are in the CString format
  11. Backspace in ActiveX control
  12. How to connect to database automatically
  13. MFC Crash on exit
  14. Static Lib, CWinApp object
  15. Memory Error..
  16. Simple system date question
  17. format a double to string
  18. BuildTime.h
  19. list control question
  20. CDateTimeCtrl + Mousewheel
  21. I need a boring dialog
  22. Core dumo on WIN98
  23. Undocumented TShoot.ocx - Need help !
  24. Send me TAPI samples, please
  25. what does AYG mean?
  26. Non Editable Excel Automation
  27. strangest error ever: build failure due to ntdll.dll
  28. Template problems...
  29. How to detect receiver Pickup Event for outbound call?
  30. RS232 Works but has a problem
  31. displaying a recordset through a datagrid
  32. Error, opening the database and table.
  33. Hi!
  34. How to use two timers in an appliction?
  35. Background image
  36. Using existing dialogs in another Visual Studio C++ project
  37. Scroll Controls on Dialog Bars
  38. any error in my code?thank u !
  39. Help for debugging needed...
  40. calculate time taken by a function?
  41. How to check for Ctrl+S button combination?
  42. Sending data through serial port
  43. How to archive CString?
  44. could not read;currently locked by user 'Admin'
  45. Local scope issue.
  46. AfxGetApp() = NULL
  47. IDispatch object name
  48. Finding a COM IID from the registry
  49. Resource properties
  50. setting a property of an activex
  51. Templates and DLLs in VC7
  52. Converting CSliderCtrl Units to Logical Units
  53. dll probs
  54. Writing to file when user has no permission
  55. Multiple DLL question
  56. resizing custom window
  57. How may I communicate with a parallel port in winxp?
  58. problem with includes (win32 MFC)
  59. fstream with ios::in | ios::out fails is_open()
  60. Stack data structure
  61. what is the max length of buffer TCHAR [ ] and char [] ?
  62. exception handling during debug
  63. how to detect pci LPT2 address
  64. How to detect right-click on a CRichEditCtrl
  65. List files in CListCtrl?
  66. using modf in C
  67. Error: Stack corruption
  68. Update STL Map
  69. URGENT- HELP in Eventsink
  70. HOW: menu didn update after modify it?
  71. Programmatically Create Multi-Line Buttons
  72. InternetSetOption with INTERNET_OPTION_CONNECT_TIMEOUT does not have any effect
  73. Calling functions from DLL
  74. WM_USER usage
  75. making a solution from a makefile?
  76. Varinat
  77. how to make the background of CListCtrl transparent
  78. Problems with IDipatch
  79. Problem with classes declaration
  80. Statement completion in VC++ 6.0
  81. How to access a big object with ado?
  82. CreateMsgService problem with MAPI
  83. compiling c code using VC++
  84. [Urgent] document icon transparency problem
  85. Invalidate NC area?
  86. problem using 'unsigned char' in ifstream
  87. How to know the process is a service or an interactive process
  88. How can i get the services which are running in my system.
  89. List Control
  90. tapi-playing a wav file
  91. COM Problem
  92. Adding user specific functions to user defined control
  93. string to double char array
  94. SetLimitText Win98 limit
  95. Crystal Reports 10 or 9
  96. CEdit ODBC FIXED CString edit control function
  97. Please Help - Converting CSliderCtrl Line Widths into Logical Units
  98. Character conversion
  99. Event Description and the list of available Events
  100. Debug/ Release mode problem
  101. help on debugging calender program
  102. Texture Mapping!!
  103. How do I move a child window?
  104. converting a file to hex and then to dec
  105. Getting texts and showing it with OnDraw()?
  106. status bar message help needed!
  107. Problems with closing modeless property sheet
  108. Strange repaint problem with Dialogs...
  109. menu item does not disable
  110. pointer to constant arrays
  111. How to create MS Access Table using ODBC
  112. Change the size of a Edit box in a Dialog
  113. Singleton (using static) in DLL does not work
  114. Call to AfxBeginThread won't compile!
  115. Lpt2
  116. Reading SFX CAB-files
  117. Can't trap "onkeydown" in FORMVIEW
  118. VariantClear & SysFreeString
  119. ClistCntrl, can't sort values.
  120. How to join two tables in different database?
  121. TimerProc access to members
  122. Search Function Help
  123. HELP: Starting the screen saver
  124. modeless MFC dialog started from a console app
  125. Getting list of ports
  126. Spliting widow as per user need
  127. Adding Menu bar to Dialog based application
  128. Message Loop
  129. how can i save my application window state in registry
  130. CComboBox without the client edge?
  131. Allocate place for pointer
  132. How do we download new client componets to old componets in the client m/c ?
  133. How can I change the image in .MSI setup File
  134. How to configure modbus in MFC
  135. Bitmap matrix
  136. DLL - crash during return statement
  137. CDialog based object not retaining hWnd
  138. Registering COM
  139. Utilising the clipboard
  140. problem with ShowBrowserBar
  141. display system menu on custom caption
  142. How to include a % sign in CString
  143. Exporting method from a DLL?
  144. GetProc Address Compile errors
  145. Problem with .idl file
  146. function with parameter: poiter to an array
  147. CArray SetSize
  148. Inter language communication
  149. How to plot Log Log Graph?
  150. Can a CEdit box be less than 12 pixels high?
  151. Graphics become exhausted
  152. latest version of ISScript.msi
  153. How to detect the end for ShellExecute
  154. Button ID
  155. Is it possible to determine whether a function is inlined or not?
  156. Simple Question
  157. SC_CLOSE message
  158. Create application to open Powerpoint Files
  159. Conversion from char* to BSTR
  160. CListCtrl SortItems problem with m_hWnd
  161. Creating button in MDIChildWnd
  162. Creating button in MDIChildWnd
  163. VC Debugger problem
  164. Static Lib , .pdb problem
  165. Constructor question
  166. Dialog
  167. TAB Order
  168. import lib
  169. How to rename a Visual C++ File
  170. Getting information about porccess and dll's
  171. Debug Assertion Failed
  172. how to change font size on CStatic obj
  173. from dec to ascii
  174. expanding monostate
  175. URL Link in Edit Control
  176. different imagelist for clistctrl
  177. Accessing WebCam Data
  178. (Broad question) recommended resources for code optimization?
  179. How to modify constant in exe with out rebuild?
  180. MFC class comunictaion
  181. Adding menu to Child Window
  182. Adding menu to Child Window
  183. Accelerators and edit controls
  184. Check if pointer is valid
  185. don't get notifications of CHeaderControl
  186. RPC Example from MSDN
  187. GetWindowRect and ClientToScreen in an ActiveX
  188. How can i recognize usb com numbers from program
  189. Library to DLL
  190. is there any activex or control to let the user select a time (hour & min)?
  191. WaitforMultipleObjects
  192. register an OCX (regsvr32) on client pc not working!
  193. Problem with ini file
  194. Problem drawing source code with Hebrew text
  195. Question about ISAPI and Thread Pool
  196. Problem with COledatetime
  197. How to sort items using virtual list in mmc?
  198. how: formatted print of MSFlexGrid
  199. propertysheets + wizard mode + buttons
  200. RecentFileList
  201. problem with linker
  202. LinkError - 1123 - CVTRES
  203. CLSID to char*
  204. LNK 2001 unresolved external symbol
  205. Resource Table
  206. mapping tree on an array - is it bad?
  207. What after GetActiveObject( …. ) ?
  208. DLL Compatibility
  209. Processes(services...) list from taskmanager,
  210. How Remove Different font From Word pad and MS Word by my program
  211. Next Control in Order
  212. toolbar prompt resource clash
  213. Solution For Tab Order
  214. Change of user information,
  215. Enumerating the list of groups available in the system,
  216. VC++ ODBC for oracle and SQLServer
  217. How to develope plugins?
  218. Copy constructor called during CArray element access
  219. Emergency! old question without ideal answer
  220. self made web Browser and Javascript error.
  221. Creating a message loop from scratch
  222. theBrain "Slide Effect Window" how???
  223. I'm working with ATL COM Server
  224. How to flush mouse buffer?
  225. fprintf and char output?!
  226. Linker errors with ADSI
  227. call c++ functions in java
  228. Windows Explorer-like list view
  229. fscanf and reading a single char
  230. Downloading a .txt file from HTTP page
  231. override pretranslatemessage
  232. Capture Windows Logout Question
  233. A Newbie's Problems w/ DLLs
  234. can someone help me out with this DirectDraw7 algorithm?
  235. question:
  236. Do i need a copy constructor?
  237. How to prevent or kill the popup menu?
  238. Hiding WaitCursor in embedded visual c++
  239. How to register windows service??
  240. A simple Question
  241. Is there any function that fires events when reaches an dd-mm-yyyy hh:mm:ss?
  242. SetClipboardData newline problem
  243. Win32 API Programming
  244. How to send email attachent using web services in C#
  245. Throw exception again within catch
  246. Lincense authentication
  247. Problem regarding API,s
  248. Keep MFC Application listening
  249. Send a file to my server using MFC
  250. unsigned long to CString