Hi Dan,
First off, in case anyone else following this thread was curious, Dan did respond privately to let me know that he does indeed want to add bold lettering to a specific column in a grid. I have attached a screenshot below of the final product, notice the "name" column, all records here are bolded.
This is fairly straight forward, we just have to add some old-fashioned HTML code in the grid to the specific column you want to be bold. First load this screen in the Method Screen Designer, then click "edit" for the grid we are doing this for. Go to "Step 2of9: Grid Columns", and click the "Advanced" link beside the column in question. What we are doing is part of an "SQL Override", so choose the "SQL Override" link at the bottom of this pop-up screen (this will add more choices to your screen), you can ignore everything but step 4: "Generate SQL". Now, just add something similar to what I have in my screenshot example below. You can also try copy and pasting my code from here: '<b>' + ISNULL(Name,'') + '</b>' . Note that the quotes after 'Name' are actually 2 single quotes.
Dan, on a side note, you also asked me what the purpose of the "bold" checkbox when you clicked the "Advanced" link, while editing a field. If you look at the top pic in this post, I added a section labelled "Field - Bold Option:". I added both the Company Name and Name fields to this section, then I added the "bold" option to the Customer Name field. If you look at the screenshot you should see that the "Company Name" field is bolded, and the "Name" field is not bolded, this is what that feature does.
Please give this a shot and let me know if this helps solve your question, feel free to ask anything further if you run into any issues trying to setup your grid this way.
-Ben