PowerToTheBuilder
Helping to put the Power back in PowerBuilder

20,000+ Downloads

October 8, 2008 08:41 by bradwery

Just looking at some website statistics for PowerToTheBuilder.com. I'm so thrilled to see that the PB GUI Controls have been downloaded over 20,000 times. Even if 1/16th of the them are unique downloads that would still mean that 1,250 developers have downloaded and at the very least evaluated what the controls have to offer. To me, these are very encouraging numbers.

Are you using the controls in your application? Has it helped you in some way? I'm always looking for success stories for the site. If you care to share I would be very interested in hearing your story. I'm also a big fan of seeing peoples screen shots. If you would like to share your story with me and others who visit PowerToTheBuilder.com please send me an email at Success@PowerToTheBuilder.com.

Thanks to everyone for your support.

Brad

 


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories:
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

PBGUIControls 2.2.0 Now Available

October 7, 2008 19:39 by bradwery

I wish I could have put in more enhancements. The ones that I did do should help some people. The powerdock control will no longer put the arrow (for document navigation) and the close button up at the top of the parent window. It will now be contained in the control. This is more important for people running their apps in Vista. What this also means is that you can now us the "arrow" to navigate the tabs in the tabcontrol instead of scrolling. There were some changes made to the toolbar strip. You can now open the toolbar items on the right side of the control. I believe that there were more enhancements. Those were the 2 that were at the top of my head. I also fixed a bunch of bugs (as well as added support to 11.5).

I'll have to take a look at my enhancment list to see what's left. I know there are a lot of toolbar enhancements (text position, padding etc). I'm also looking for ideas for new controls. I've been tempted to create a calendar control. I'm not sure how this will work yet. Maybe it will be the same as Outlooks? It will most likely take in some sort of XML file for it's datasource.

 

Brad


Currently rated 5.0 by 1 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories:
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

How do you know it's Summer?

July 23, 2008 08:04 by bradwery

I've been trying really hard to get another release if the GUI controls out but have found that there are too many distractions. I have put some work into the next version. This work has addressed a few interesting issues. I'm excited to get it into the hands of the PB Community.

Aside from the usual Summer distractions, my wife and I sold our house a couple a weeks ago. Luckily we found a new one a few days later. We were given 1 month to pack up and vacate. We will be moving into the new house 1 day before we loose ours. Needless to say, these next couple of weeks will be very busy. Once we get settled in I plan on making more time to work on the offerings provided by PowerToTheBuilder.com.

If you have any questions or comments please don't hesitate to send me an email. I enjoy hearing from everyone and anyone. Smile

 


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories:
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

UI Controls - Things to come.

May 31, 2008 13:18 by bradwery

Recently I've been focusing a lot of my efforts on releasing a new version of Crazy SQuirreL. As a result I've let the UI Controls enhancement list get pretty long. I'm now going to direct my time to reducing this list and getting a new version of the UI Controls released to the public. So far I have the following on the "list" (please let me know if I've missed something): 

 

ButtonListBar:

  - Some icons don't paint proper when the application is built.
 - Add horizontal orientation. 

ToolbarStrip:
  - Add "right" support (open toolbar items on the right side as well as the left).
  - Add padding properties to the toolbar buttons and separator.
  - Fix crashing problem caused by using the PB library functions. 
 
- Support large icons
 
 
- Support text positions (top, bottom, left and right)
 

XPListBar:  
 
- The XPListBar crashes when 120dpi is set on monitor.
 
 
- Add an autosize function.

All Controls:  
 
- Add right to left support. 
 
- Add theme manager.
 
  - Fix various UI bugs\inconsistencies.


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories:
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

Are you running Crazy SQuirreL?

May 26, 2008 13:23 by bradwery

If you're running Crazy SQuirreL I would like to hear from you. Please email me at brad.wery@powertothebuilder.com .

I would really like to get some feedback. I'm curious to know if you encountered any issues while running or installing the software. I would also like to know what you like and dislike about the application.

You're feedback is very important to me so please take a few mintues to send me a note.

Thanks in advance.


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories:
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

CrazySQuirreL 4.0.0 now available

May 20, 2008 19:30 by bradwery

The first thing you will notice when you open the application is an updated Object Browser. I still need to add some functionality to it like being able to connect to a datasource and a way to refresh any node in the tree.

The other major enhancement I made was to the SQL Query windows autocomplete feature. I’ve extended it to be a little more flexible. You now have table autocomplete and custom autocomplete lists. To activate the table autocomplete list just type the name of the table owner and enter a period (e.g. select * from dbo. ). If you don’t know the table owner or don’t want to enter it you can just enter a period.

The idea of a custom autocomplete list is new. It gives you the ability to list anything you want. What displays can be a static list of items or the results of an SQL statement. By default, 3 lists are provided with the install: CSQL, DP and DT. CSQL lists all functions you can use in T-SQL. DP lists all datapart items and DT lists all datatypes. Try this:

SELECT csql.

You should see a list of functions appear. Continue typing to filter the list.

All custom lists are maintained in a new window called “My Autocomplete”. You can get to it through the Tools\My Autocomplete menu. If you select “List” for the type you would just enter a list of items in the editor window. If you enter “Command” for the type you specify a select statement. The first column in the select statement will be used for filtering and inserting into the SQL editor window.

Here’s an example of where you can use a custom list:


1. Enter a new item in the My Autocomplete window called country (assuming you have a country lookup table).
2. Change the type to Command.
3. Enter the following SQl (as an example)

      SELECT country_code, country _name
          FROM country _tb

4. In a new SQL Query window type

      SELECT *
         FROM city_tb
         WHERE country _code = country. <at this point you should see a list of all countries in the country_tb table>


Currently rated 4.7 by 3 people

  • Currently 4.666667/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories:
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

PBGUIControls 2.1.2 available for download

May 4, 2008 13:05 by bradwery

This release focuses on support for PB11.2.

Please let me know if you find any issues.

Thanks,

Brad


Currently rated 5.0 by 1 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories:
Actions: E-mail | Permalink | Comments (8) | Comment RSSRSS comment feed

PowerBuilder Ning Community

April 30, 2008 13:45 by bradwery

From Jason Fenter of TeamSybase:

"Sybase has been reviewing NNTP availability and is looking at alternative ways to build a user community. As a test-bed / proof-of-concept, I have personally created a community on Ning (http://powerbuilder.ning.com). While Ning certainly doesn't offer all of the features that I'd like to see Sybase eventually implement, I am trying to foster some community involvement on that site. Several of the TeamSybase members have joined already and are available to answer questions there.

Please sign up; give it a try. My hope is that it evolves into more than just a Q&A database, but it won't get there without your participation."

 

It looks quite interesting, you should check it out when you've got a chance.

Brad


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories:
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

PowerDock for Winforms

April 27, 2008 19:10 by bradwery

It took a little time but I finally got PowerDock migrated to PB11 for Winforms deployment. About 95% of the functionality was ported over. The last few items I have to address relate to dynamic menu's.

The Win32 version of the control has a built in context menu which gets activated when the arrow in the upper right hand corner of the window is clicked. The context menu displays a menu item for all the opened documents. If you have more than 9 documents open, a More Windows option is available which opens a document selector window. In addition to this, the context menu also has a close and close all option.

One I learn how to do dynamic menu's in Winforms this will be fixed and all functionality will be present.

Please let me know if you find any other problems with the controls.

Thanks,

Brad 


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories:
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

PBGUIControls 2.1.1 Released

April 13, 2008 12:59 by bradwery

A new version of the PB GUI controls have been released on www.PowerToTheBuilder.com. This release contains a number of enhancements to the PowerDock control.

A number of small features have been added to make the PowerDock UI more like some of its comparable counterparts. A close button and document context menu will now display for open documents in the upper right hand corner of your window. There is now a hover effect on the collapsing panels pin. In addition to all this, there have been numerous other enhancements made to make the control behave as it expected.

The list of thing I need to add to the control is growing. Here are a few items that will be addressed in future released:

 - Close button on collapsing panel.
 - Resize ability for expanded and unpinned collapsing panel.
 - Overloaded method for the UserObject version of OpenDocument which will accept a type parameter.
 - Functions to expand a panel without hovering over it (i.e. if you need to show error output).
 - .NET Winforms migration.

Thanks,

Brad


Currently rated 5.0 by 1 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories:
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed