Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by RoguePoet01

  1. RoguePoet01

    Format WinForm Datagrid Examples

    Anybody know of some good example code for formatting datagrids? Apparently microsoft thinks this knowledge is second-nature for all coders.
  2. RoguePoet01

    Query - Sort Alpha as Numeric

    That's a big help. I found something similar. Select * from Table Order by CONVERT(Int, Silo) Thanks for your help.
  3. RoguePoet01

    Query - Sort Alpha as Numeric

    Hi, I have a table with Silo numbers listed in them, but they're listed as alpha, not numeric. So when I do a sort, I get: 1 10 11 2 3 4 ... Instead of: 1 2 3 4 ... 10 11 Is there any way around this? Thanks.
  4. RoguePoet01

    Excel Library Not Found on Client

    Never mind, but thanks for stopping by. I had to register the Excel.exe with the /REGSERVER command, and so far that seems to have solved the problem. Thanks again.
  5. RoguePoet01

    Excel Library Not Found on Client

    Hi, I don't know what's going on. Trying to install a program on our "terminal services" server and it won't recognize the "Excel9.olb" library file. Any ideas? Thanks, Rougy
  6. RoguePoet01

    Terminal Services Issues

    Anybody familiar with terminal service issues? We're starting to use it here at the plant, and it's not letting my VB6 programs print Excel spreadsheets like it used to. I'm getting a "DLL not found" error. Thanks.
  7. RoguePoet01

    Programmatically Add Menu Items

    Hi, Anyone know a way to add items to a menu programmatically? I'm doing pop-up menus for "product" descriptions, and I'm keeping the products and descriptions in an SQL file. What I'd like to do is read the SQL file and load the menu at start-up. Thanks, Rougy
  8. RoguePoet01

    Coordinate ComboBoxes

    Very kind of you. Thanks.
  9. RoguePoet01

    Coordinate ComboBoxes

    Hi, I might have to do this with some SQL reads, but I was hoping I could do it this way. Load combobox1 with the names and a combobox index. Load combobox2 with the SQL RecIndex and a combobox index. Load combobox3 with the name descriptions and a cb index. So...what I want to happen is to...
  10. RoguePoet01

    Sending DataGrid Row/Col Data to Textboxes

    Very helpful. Thank you!
  11. RoguePoet01

    Sending DataGrid Row/Col Data to Textboxes

    Hi, I can't seem to find how to reference and send a row of data to a form's textboxes in winform mode. With a flexgrid it used to be something like: With form .textbox(1) = .flexgrid.TextMatrix(.flexgrid.Row, 1) .textbox(2) = .flexgrid.TextMatrix(.flexgrid.Row, 2) .textbox(3) =...
  12. RoguePoet01

    Format DataGrid Tips

    RiverGuy, you're a peach. Thanks. An FYI for future searchers: here's some code from MS that helps (I'm a Google champ, but this took me over an hour to find). http://www.microsoft.com/downloads/details.aspx?familyid=28fd458f-5571-42b4-a2fe-09b69ddf0863&displaylang=en It's the only set of...
  13. RoguePoet01

    Format DataGrid Tips

    Hi RiverGuy, I remember you. You've helped me out before. Could I bother you for some more info? A snippit of code. I don't get the DataTable thing. I've got a dataset and I've used dataviews but never a datatable.
  14. RoguePoet01

    Format DataGrid Tips

    Hi, I'm trying to format this here dad-gum datagrid and well, dip me in horse feathers, I can't cypher it t'all! Ch'all got any links or add-vise to help me on my way? Done found the "TableStyles" and the "DataGridColumnStyles" but when I make the changes it don't seem to make no diffrence...

Part and Inventory Search

Back
Top