home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / os / mswindo / programm / tools / 784 < prev    next >
Encoding:
Text File  |  1992-08-27  |  4.2 KB  |  83 lines

  1. Newsgroups: comp.os.ms-windows.programmer.tools
  2. Path: sparky!uunet!mcsun!sunic!palantir.p.tvt.se!infolog!andras@infolog.se
  3. From: andras@infolog.se (Andras Lengyel)
  4. Subject: Re: VB Dev Kits
  5. Message-ID: <1992Aug27.164315.11045@infolog.se>
  6. Sender: news@infolog.se
  7. Organization: Infologics
  8. References: <BtMpsr.8no@news.cso.uiuc.edu>
  9. Date: Thu, 27 Aug 1992 16:43:15 GMT
  10. Lines: 71
  11.  
  12. In article <BtMpsr.8no@news.cso.uiuc.edu>, skhg0983@uxa.cso.uiuc.edu (Steve Holzgraefe) writes:
  13. > Does anyone have have any yays/nays about either the Professional Toolkit
  14. > from Microsoft or VBTools from Microhelp? I'm interested in any pointers,
  15. > criticisms, experiences, comparisons, etc.  Also, any info on VB v2 and
  16. > any new tools it might contain would be great.
  17. Hi,
  18.  
  19. I have worked with these VB tools and some others. Generally I think the Prof
  20. Toolkit from Microsoft is better and more stable that VBTools.
  21.  
  22. VBTools 2.0 includes many nice custom controls and new fuctionality, but there are
  23. quite a few shortcomings and cosmetic details that are irritating if you work 
  24. professionally with VB. The Prof Toolkit have fewer custom controls but are more 
  25. robust and the functionality that is implemented works as you would expect. 
  26. Very few bugs are found in Prof Toolkit.
  27.  
  28. This is not a complete comparison, but I try to highlight some of the differences
  29. and problems I have experienced:
  30.  
  31. * MDI child windows. The Prof Toolkit have a separate MDI control and other types of
  32. controls can be put in these. MDI control cannot be loaded at runtime. Arraging, tiling
  33. and cascading works ok. Captions can be combined with the main window (form) then the MDI
  34. is maximized. Several of the VBTools controls have MDI capabilities, such as plain
  35. MDI windows, listboxes, grids and toolboxes. Activation and deactivation of MDI
  36. child windows does not work as expected. Sometimes the main window (form) loses focus when
  37. MDIs are activated. Arraging, tiling and cascading does not work as expected. For
  38. example, arraging icons can only be used on MDI controls inside MDI controls(!), top
  39. level MDIs in a form cannot be arranged, tiled or cascaded. Combining titles
  40. with the form is not implemented.
  41.  
  42. * Listboxes. VBTools has listboxes where pictures can be placed and tab stops can be
  43. set. One problem with the listboxes is that if you click inside a listbox below the
  44. last item (if there is space there), the last item will be highlighted but no
  45. click event fired. The Prof toolkit have no listboxes where pictures can be placed,
  46. but the work as expected.
  47.  
  48. * The Prof Toolkit have controls for accessing Windows common dialogs and the MM
  49. extensions (MCI), which VBTools lacks.
  50.  
  51. * Bitmap buttons. The Prof Tookit have several types of button controls where pictures
  52. can be placed, like "normal" buttons, animated buttons and "toolbar" group buttons.
  53. The toolbar buttons have the only bug we found in Prof Toolkit: sometimes they
  54. "freeze" and get no further click events, they just die. VBTools also have several 
  55. button controls that can include pictures, but have annoying rubberbands around 
  56. the bitmap and the caption in a button. The idea of separate positioning is ok, 
  57. but they stretch when the entire button is resized. This will distort the 
  58. bitmap(!) and often completely destroys your carefully designed button interior.
  59.  
  60. One shortcoming of all bitmap buttons (and this is quite serious), except for the
  61. Prof Toolkit toolbar buttons, is that there is no support for a disabled version
  62. of the bitmap, hence the buttons give no feedback when enabled or disabled. This
  63. functionality has to be programmed with copying of bitmaps from other "buffer"
  64. picture controls.
  65.  
  66. * VBTools has a picture control that supports 256-color bitmaps. But this is not an
  67. extension of the built-in picture control. The 256-color picture control have no
  68. functionality for drawing and displaying text on the surface, as has the built-in
  69. control. You have to access the Windows API directly to be able to draw on this control.
  70.  
  71. * Examples of code. VBTools have many small examples, the Prof Tookit has few examples,
  72. but are more complex and most are actually usable applications
  73.  
  74.  
  75. (My) conclusion: If you work professionally with VB - the Prof Toolkit is a better
  76. choice, otherwise you can opt for VBTools.
  77.  
  78. Andras
  79.  
  80.  
  81.  
  82.