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 SkipVought 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: *

  1. flynbye

    Force IE to check for new swfs?

    I am having this same problem with a project that I am working with. I'm wondering is this a dead thread? No resolution at this time or? This does have an impact on what I'm doing as we have a complete flash site going up but what I'm seeing is that updates to the swf file are now showing...
  2. flynbye

    Bind .NET recordset to Excel worksheet

    Just looking for a good example to bind some data from a SQL query that I'm running on our backend tables to an Excel workbook. I've done this before and don't remember it being that difficult but having trouble setting it up at the moment. Anyone able to point me to any good examples I hope...
  3. flynbye

    Excel Hyperlink with .NET

    Thanks guys... just for everyone's information what I eventually ended up doing was simply using the old VB6 formatting on the hyperlink setup and while .NET complains some about it, it does actually except it and link the code. So, what I ended up with looks like this: Dim...
  4. flynbye

    Excel Hyperlink with .NET

    I'm struggling with this one and am thinking that I'm close but setting up something incorrectly. Basically I build detail pages with customer information and on a main page summarize the data. For ease of use I'd like to set up a link to the other pages in column A. The .NET code that I have...
  5. flynbye

    Excel Border Formatting

    Spoke too soon... here is what WILL work with constants... (more hoops to jump through) Range = CurrSheet.Range("A1:A3") With Range .Borders(XlBordersIndex.xlEdgeBottom).LineStyle = Excel.XlLineStyle.xlContinuous...
  6. flynbye

    Excel Border Formatting

    Thanks PHV... basically I don't get a reference to the constants so while I know those exist they aren't readily available. Sooo... once again Skip appreciate the response and that was the direction that I ended up going. Just annoyed that I have all those fancy constants and I'm back to...
  7. flynbye

    Excel Border Formatting

    Ok back on this topic after I thought we were completely done. Just to be clear I'm using vb.NET and while I've seen repeated postings aobut Excel border changes etc. including the helpful macro listings when I port this code over to the .NET side what I'm getting is an undeclared variable...
  8. flynbye

    Excel Border Formatting

    Well for crying out loud... I've programmed around Excel for years and I've never even thought of that Skip! lol... Time for me to go over to the wall and bash my head some... Thank you... AND... here's ur star :) CF I always makes things much harder than they should be... that way later I...
  9. flynbye

    Excel Border Formatting

    Hookay... Skip had posted this section of code in the past and frankly it does pretty much everything I need it to do but strangely enough I'm getting an undeclared on the linestyle formatting (ie xlThin, xlContinuous). I am importing the microsoft.office.interop so not sure why I'm getting the...
  10. flynbye

    Excel Worksheet positioning

    I know that this is probably not difficult since I have found some reference to the Excel .move method but I'm having problems with positioning a newly created worksheet. Anyone have a quick example of how to move a worksheet available? Thanks! I always makes things much harder than they...
  11. flynbye

    Listbox SelectedValue question...

    Ok not exactly on the mark but you've given me something to take a look at... soooo... STAR for you and I'll come back with the completed post ~assuming that I can make this onery bugger work :)~ CF I always makes things much harder than they should be... that way later I can slap myself in...
  12. flynbye

    Listbox SelectedValue question...

    Ok get the feeling I'm trying to paddle uphill here... What I was hoping to do (and it does not appear to be working) is to fill a listbox on the fly from an employee's table and then use the "EmpCode" listed in the code below later to properly fill a data field for a submitted meeting table...
  13. flynbye

    Gridview how to autopostback?

    Sorry been AFK... this is a Gridview(2.0) I always makes things much harder than they should be... that way later I can slap myself in the forhead after spending hours and hours on two lines of code and say to myself "DUH!"
  14. flynbye

    Gridview how to autopostback?

    Nothing going on in the rebind... Chris I always makes things much harder than they should be... that way later I can slap myself in the forhead after spending hours and hours on two lines of code and say to myself "DUH!"
  15. flynbye

    Gridview how to autopostback?

    What I've posted is the submit button code... and I am not doing anything on the pageindexchanging event... sooo... hrm not sure how I would go about rebinding but will play with that for a moment whilst you digest the above :) Thanks! Chris I always makes things much harder than they should...
  16. flynbye

    Gridview how to autopostback?

    Protected Sub btnSubmit_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnSubmit.Click Dim ConnectionString As String ConnectionString = System.Configuration.ConfigurationManager.AppSettings("appConnectionString") Dim cnnSql As New...
  17. flynbye

    Gridview how to autopostback?

    Good Morning All :) Well the problem that I'm having is that I've built a gridview of available employee information with the data coming from a stored SQL procedure linked to a submit button which retrieves the records I require. All of this works fine but I'd like to implement paging on the...
  18. flynbye

    Gridview autopostback

    Thanks Jeb, Tried to repost in the ASP forums but they seem to be down at the moment (or busy) I'll give it another shot here shortly. I always makes things much harder than they should be... that way later I can slap myself in the forhead after spending hours and hours on two lines of code...
  19. flynbye

    Gridview autopostback

    Good Morning All :) Well the problem that I'm having is that I've built a gridview of available employee information with the data coming from a stored SQL procedure linked to a submit button which retrieves the records I require. All of this works fine but I'd like to implement paging on the...
  20. flynbye

    Gridview - select column can I hide?

    Have a gridview where I've written come vb.net code to highlight each of the rows etc. on the mouseover even and will want to process a click event on the gridview control but don't want to see the "select" column and would rather the user able to select the row just based on the highlighting...

Part and Inventory Search

Back
Top