My thoughts, opinions, and rants about computers and technology.
Mr. Wire
Get link
Facebook
X
Pinterest
Email
Other Apps
You know, somewhere out there, there's probably a guy who works in technology and has the last name of "Wire". I wonder if he cringes every time someone talks about the 1394 standard and mentions "FireWire". :-)
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 ...
The other day I went looking for a PowerBuilder color chart. And while I found a few , they weren't exactly what I was looking for, so I created my own. It's available as a PDF here .
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