When Gimp 2.10 was released, the new icons for the toolbox items were all black and white. If, like me, you'd like to go back to the color versions, here's how: Select Edit --> Preferences From the Preferences dialog, under the Interface section, select Icon Theme For the icon theme, select Legacy if you want icons like they were in 2.8. If you'd like color versions of the new icons, select the icon theme named Color .
I've been working with PowerBuilder for close to a decade now. In that time I've seen PB developers create some screens that, while they functioned properly, could have been ….. a little nicer looking. In this blog post I briefly go over a few things that, IMHO, can help you create better looking PowerBuilder apps. I plan on writing a series of blog posts that expand on each of these items. I'll update this post with links to the other posts as they become available. Standard disclaimer: I'm not a graphics designer nor do I play one on TV. Take what I say with a grain of salt. Color Probably the simplest thing you can do to make a PowerBuilder application look better is to add a bit of color. Just don't overdo it. You want to make the screen visually appealing without it becoming a distraction. Icons The second thing you can do to make your PB apps look better is to add some icons. Although PowerBuilder comes with several ...
I recently worked on a project that used PowerBuilder for the front end and SQL Server for the database. I've worked with both of these technologies in the past but this was the first time I used them together. Below are some notes about the things that I learned regarding PB and SQL Server working together. Single Quoted Strings If you do any work with SQL statements in SQL Server Management Studio (SSMS), you'll find that SQL Server only accepts strings if they are surrounded by single quotes. You can use double quotes in the PowerBuilder painters and they'll get translated properly on their way to SQL Server. But you may want to just go ahead and use single quotes everywhere, especially if you are trying to track down a problem by copying SQL from PowerBuilder and pasting it into SSMS. Identity Columns One of my tables had its primary key set in SQL Server to autoincrement. In my datawindow I would insert a row and then do an update. I was expecting the value SQL Server ...
Comments