// JP opened flex table

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

  1. Expected constant expression
  2. Subscript requires array or pointer type
  3. CPrintInfo
  4. Edit controls
  5. slider control
  6. '1A' cannot be read
  7. How to start a new thread ?
  8. CSliderCtrl
  9. Muliple views of database
  10. ComboBox
  11. Exe-packer?
  12. GetLine Problem !
  13. Libraries
  14. how to make two views of the same doc in an MDI co-exist?
  15. InitCommonControlsEx linker error
  16. new???
  17. CListCtrl : OnItemChanged
  18. Contect Menu
  19. TreeCtrl-change icons
  20. CSplitterWnd
  21. CTreeCtrl - how to detect where the user right clicked
  22. how to kill a thread blocked by socket
  23. Getting a good book for coding
  24. please help!!
  25. $50.00 for solving problem(guaranteed)
  26. Inheriting CString
  27. AfxMessageBox
  28. Drag and Drop into ActiveX control
  29. Initializing Strings in a List Box Problem
  30. $100.00 for help (This is all I can do! I am not reach
  31. Handling Sockets
  32. I will send cash for those, who lives outside US
  33. Changing control class that my CMyListView is using
  34. extract text only content from html file
  35. x, y position on status bar
  36. console call in dll
  37. System DSN w/ Command Line
  38. MSFlexGrid
  39. Accessing a control
  40. How to use dc.FloodFill to fill a rect?
  41. How can i do THIS ??
  42. How to create a mouse cursor with more than 2 colors?
  43. OleLoadPicture
  44. ASP.dll
  45. Bitmaps
  46. Bitmap: How to store my drawing in .BMP format
  47. BMP: How to store my drawings in .bmp format ?
  48. How to find name of exe from extension of file.
  49. What does the AFX_IDW_PANE_FIRST really mean?
  50. Bit of confusion
  51. Why the data is not refresh?(about OpenURL())
  52. Factorial?
  53. Detecting if Minimized
  54. How to display a window before long calculation
  55. switching menu
  56. unresolved externals
  57. read an integer as input.
  58. Encryption
  59. Urgent PLS!!!!!help
  60. Capture output from DOS program
  61. ADO Errors
  62. Performance of ListView
  63. How to launch dialup networking
  64. Help! Debug Assertion Failed!
  65. Threads with global variables
  66. png
  67. Sorting the listview
  68. Scroll bar in Print Preview
  69. ActiveX + COM object
  70. MCIWnd ans Dialog
  71. Formating cout output.
  72. CreateWindow function error
  73. TELNET - how to disable local echo
  74. stdole2.tlb
  75. Picture property
  76. Picture property
  77. CDialog et MCIWnd 2
  78. ToolTips & CBitmap controls
  79. Background Color
  80. Not satisffied with CodeGuru?
  81. USB
  82. How to remove files from VC++ project
  83. Urgent:Help on graph of the sound!
  84. app-class and view-class
  85. GetListCtrl().SetExtendedStyle(LVS_OWNERDRAWFIXED);
  86. COM vs OLE
  87. ATL COM Error message
  88. VC++
  89. Write a drawing zone of a CScrollView window to a bmp file!
  90. CRecordSet and DataBase interaction
  91. Menu-->Very Very Urgent
  92. Question
  93. Get text extension in Combo box
  94. How to pass value to argument from VB to a function written in C++
  95. CDDB for a MP3 player
  96. Detecting when a socket gets disconnected
  97. windows sockets
  98. CRecordSet And DB interaction ..Very urgent
  99. Syntax of LoadImage
  100. Open the CD reader Door
  101. Commucation
  102. Table not found
  103. Prouf, if Escape was pressed or not
  104. CToolBar repositioning in Dialog
  105. Change default character set
  106. Windows NT: How do i know if it a SERVER or WorkStation..
  107. I need to load diff. toolbars for each view..
  108. CListCtrl with enable/disabled checkboxes
  109. finding out the server time
  110. Database application in VC++
  111. windows style
  112. IPX/SPX UNDER WIN32
  113. Problem with Ole control in MFC regular DLL
  114. Retrieving info for a CDAudio via Internet
  115. NT Protection
  116. CLongBinary
  117. COM Programming - Accessing Outlook (CDO)
  118. Should be simple - How to return values in method parameters ?
  119. Sending a CEdit input to another dialog box
  120. winnt server and nt workstation
  121. ATL COM : Error MIDL 2309
  122. MFC assertion failure
  123. Date/Time format in Access
  124. Library/dll
  125. Implementation
  126. Plugin for Web Browser
  127. Find the bad boy -> Memory-Violators
  128. How to change a printer bin
  129. Thank very much to everybody, I ve received 8 responces! by email. I am working on it.
  130. Drawing a bitmap transparently
  131. Get right message
  132. HOW TO: call activeX/com object in VC++
  133. ATL: FireViewChange, InvalidateRect, and WM_PAINT
  134. Window does not split in half correctly
  135. Reading from the registry
  136. CGridCell (drag/drop columns)
  137. Need help sending an xml stream to an internet module.
  138. POP3 programming
  139. Libraries
  140. Stack overflow
  141. Help with OLE DB
  142. Statics
  143. Is there a way to disable and/or remove the X box on a view/window??
  144. how can I get the control ID in decimal
  145. Proof, if Escape was pressed...
  146. Listbox - Returning User Select Values
  147. Nutty .LIB linking
  148. Raising Error in C++ COM, handled in VB.
  149. WriteFile / ReadFile - Do these take system resources?
  150. making a function send its output to an edit box
  151. New file
  152. WM_CLOSE
  153. Get all open documents in MDI App?
  154. Handling guids
  155. How to retrieve the text of a column heading in CListCtrl?
  156. How do I disable an item in a TreeViewCtrl
  157. Script Class
  158. Proof, if Escape-Key was pressed?
  159. Context-sensitive help in property sheet
  160. Explorer
  161. Creating CRecordset class
  162. Dynamic List
  163. ShellExecute doesn't open Developer Studio
  164. Create expanding/shrinking folder lists.
  165. Memory referesh
  166. NT Security Question: Help badly needed
  167. Basic C++ Trouble Compiling
  168. Writing a telnet script
  169. Open the CD reader
  170. Printing LV control
  171. Openning DB and displaying in a view
  172. CButton
  173. Runtime console sizing or scrolling?
  174. Hello All! Please help me with Audio Compression Manager. I break my head...
  175. Help to understand when run som app !!
  176. Playing any Waveform into file (WAV, PCM 44100/16). How?
  177. Can't add a dialog to a MFC Console project
  178. Howto Putting a CFileDialog always on top?
  179. how can I call a function from a base class while in a derived class?
  180. Converting string to date
  181. CTabCtrl
  182. CEditView
  183. Print Preview problem
  184. access pixel in bitmap
  185. Time-limit install?
  186. determine version of DLL
  187. CRecordset and CTime Problem
  188. Dynamic Property sheets ?
  189. About my offer! ($still inthe open)!
  190. IM JUST STARTING...HELP PLEASE
  191. IM JUST STARTING...HELP PLEASE
  192. convert map into a single strusture
  193. p.s. on About my offer
  194. 256 Character Limit in CStatic Control!?
  195. Multithreaded MDI Views
  196. Local Time + GMT
  197. How to call a dll function?
  198. ListBox vs. EditBox
  199. Auto buddy spinner(winnt)
  200. How to access MSG file dragdropped from outlook
  201. BN_CLICKED vanish in child dialog
  202. encryption of a line of text
  203. Console application.
  204. NT problems
  205. CRecordSet
  206. Checking Email
  207. Checking Email
  208. Checking Email
  209. Reading input from keyboard
  210. problem with window scrollbars
  211. How to save bitmap from dcMem?
  212. questions on ISAPI
  213. VB's Global Multiuse equivalent in VC?
  214. Time
  215. Access to data in al CListView
  216. RPC:Novell Server and Win95 Client
  217. How can i show and hide a part of the dialog at run time like Outlook
  218. anyone can help me to start the COM/DCOM programming.
  219. Should I use to Recordsets?
  220. ::OnApply() about OleCreatePropertyFrame
  221. Is there a VC++ equivalent to VB's DoEvents
  222. How do I put a separator in a tool bar at design time?
  223. calling vc++ dll from vb
  224. is it possible ??
  225. How to save graphics that i drew into a bitmap?
  226. Getting URL of active Internet Explorer
  227. MDI Application
  228. Q: COM & VB / trouble with 2 interfaces
  229. Use PlaySound function
  230. Pls !Help with CreateWindow()
  231. Abnormal Program Termination
  232. WinInet
  233. Customize Font common dialog
  234. CListCtrl to display an image list and bmp simultaneously
  235. How Do I Debug my ATL COM DLL
  236. CListCtrl
  237. Passing combined parameters to a function... need some help please..
  238. How to get current display mode?
  239. Cutting previously marked part of picture
  240. DCOM gurus Please help
  241. VARIANT
  242. List Box - Returning A Value
  243. stoping the mouse from entering the area
  244. Passing variables of different data types through a single SafeArray
  245. Scaling images
  246. pixel value
  247. how do i open an application from a html file--urgent!!
  248. Dial Up connection
  249. CBitmapButton and CToolTipCtrl
  250. Customized(Resizable) Dockable Tool Bar?
//JP added flex table