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!

Search results for query: *

  • Users: RoguePoet01
  • Content: Threads
  • Order by date
  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

    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.
  3. 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
  4. 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.
  5. 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
  6. 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...
  7. 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) =...
  8. 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...
  9. RoguePoet01

    Stored SQL Functions & VB.net

    Hi, I'm stepping up to VB.net and just read an article about using stored SQL functions. Though I use SQL for my database, I've never had the need to write a stored SQL function before, but this sounds like a good idea. Would anybody have the time to show me a simple function that inserts...
  10. RoguePoet01

    Run a Centralized Network-Based *.exe

    Hi, This used to be very easy in VB6, but it's quite a bit more complicated in VB.net. I used to be able to mark the *.exe as "shared" and then run it from a network drive (say the V:\ drive). Not that easy any more. Any guidance would be very much appreciated. R
  11. RoguePoet01

    Multi-Line TextBox - Set Bar at Start of Text

    Hi, I need to transfer focus to a multi-lined textbox. When I do, all the text in the box is selected. I'd like to deselect the text and position the "bar" at the beginning of the text, at the top. Any ideas? Thanks
  12. RoguePoet01

    Blank the DataPicker Text Box

    Hi, Is there any way to "clear" the datapicker's text box, so that no date is displayed until the user chooses one? Thanks, R
  13. RoguePoet01

    Flexgrid Equivalent

    Hi, I noticed that the Flexgrid is no longer as prevalent as it was in VB6. Did VB.net come up with a better version? I found the FG control in the "legacy" section of the COM references. Going to try to use it, but would appreciate it if somebody has a better idea. Thanks, Rougy
  14. RoguePoet01

    Left-Align Combobox Text

    Hi, I need to left-align the combobox text after the user has made a selection from the drop-down menu. Any ideas? It does it by itself once the box has lost focus, but I'd like it to adjust itself right after the "textchanged" event. Thanks
  15. RoguePoet01

    Dialogue Box for Password

    Hi, I know I can do this with a form, but does anybody know an easy way to use the dialogue box in vb.net? I need to prompt for a password, read SQL to see it the values match, then either allow or deny access to a form. Thanks, R
  16. RoguePoet01

    Tab Control - Span Width

    Hi, I'm using the new tab control in VB.net, and I'm trying to find a way to make the tabs spread out evenly across the top of the screen, instead of being bunched up on the left side. Any ideas? Thanks, R
  17. RoguePoet01

    Strange Problem - Lable or Picturebox Won't Show

    Hi, I'm using MSChart in VB.net, and when I try to make a form appear over it with a "Please Wait" message, the form appears, but the lable on the form won't show. Also, if I try to use a picturebox instead and set it on top of the chart, then switch the picturebox from invisible to visible...
  18. RoguePoet01

    Using Excel in VB.net

    Hi, I have used Excel in VB6 extensively in the past. Now that we're moving up to VB.net, I've noticed that some of the things regarding Excel aren't the same. I particular I need to write data to the Excel spreadsheet, then print out the chart that's associated with that data. I was hoping...
  19. RoguePoet01

    Word Macros: Run in Background

    Hi, I'm writing a simple footer macro for Word 2003. Seems like there used to be a way to make this code execute in the background, but I can't remember how to do it. Any suggestions? Thanks.
  20. RoguePoet01

    Installing Macro from VB6 to Word

    Hi, Is there a way to install a "footer" macro using VB6 into the user's Word program?

Part and Inventory Search

Back
Top