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 Mike Lewis 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. BigRedTexas

    Dll or better option?

    Thanks Craig. So you're saying that even if a Web Service is using a dll, the dll can be seamlessly replaced while in use?
  2. BigRedTexas

    Dll or better option?

    Ok, we want to have a dll or something similiear used for basic business functions (formatting, calculations, etc.) on the network and have other applications all reference that dll. Here's the (possibly dumb) question. If we want to update that dll on the fly (in the middle of the day while...
  3. BigRedTexas

    VS.NET looses windows handle???

    Yes, both XP and .NET have the latest service packs. It's funny, because the other developer here is having the same problems.
  4. BigRedTexas

    VS.NET looses windows handle???

    I have had VS.NET installed on 2 XP machines and one 2000 machine. The 2000 machine did not have these problems. However, both XP machines have problems keeping VS.NET in the task list. For instance, if I minimize it, I can see it in the Task Bar but if I click on it, it won't Maximize...
  5. BigRedTexas

    How do I retrieve the application version for my web app?

    Hey Mark, thanks for your help anyway. :) I can see the value I need in the registry, I just don't have the way to access it. :( Can I just look for the registry key? How is that done. I know the old WIN API way to do it, but there's gotta be a better way now. Thanks again, Scott
  6. BigRedTexas

    How do I retrieve the application version for my web app?

    Ok, sorry to bring this back from the dead, but this didn't do what I needed. This displays the .NET Framework version. I am looking for a way to display the installed version of the application. Thanks, Scott
  7. BigRedTexas

    How do I retrieve the application version for my web app?

    Thanks, that worked great. I did at a .toString to get it to work right.
  8. BigRedTexas

    How do I retrieve the application version for my web app?

    I need to retrieve the application version number and display it on my start page. Does anyone know how this is done? Thanks, Scott
  9. BigRedTexas

    Deployment Question???

    I would like my setup to install over the current version of my ASP.NET application. However, whenever I try to run the new setup, I get the following message: "Another version of this product is installed....." Setup Project Properties: DetectNewereInstalledVersion = True...
  10. BigRedTexas

    How do I get the username of local computer?

    I'm trying to append my username I'm logged on to my computer as onto a build version. How can I retrieve that via VB.NET? Thanks, Scott
  11. BigRedTexas

    Redirect not working properly when using a timer??

    Zarcam, that's just it, I did step through it and it's hitting it every time. That's why I'm confused. Scott
  12. BigRedTexas

    Redirect not working properly when using a timer??

    Zarcom, here goes: "Private Sub tmrRedirect_Elapsed(ByVal sender As System.Object, ByVal e As System.Timers.ElapsedEventArgs) Handles tmrRedirect.Elapsed Dim respString As String respString = viewState("RouteForm") + "?UserName=" + viewState("UserName")...
  13. BigRedTexas

    Redirect not working properly when using a timer??

    I'm trying to redirect to a certain page after 3 seconds but when the timer fires off and it hits the redirect, nothing happens. If I put the same redirect code behind a button, it works fine. Does anyone have a clue what could be causing this?
  14. BigRedTexas

    Hello all, I have a databound da

    Can you please explain what you mean "Regular Expressions".
  15. BigRedTexas

    Hello all, I have a databound da

    Hello all, I have a databound datagrid that is pulling a string field filled with phone numbers. The problem I'm having is formatting the phone numbers to look like 999-999-9999. I have seen plenty examples of using the "Data Formatting Expression" in the datagrid columns properties...
  16. BigRedTexas

    How do I minimize my current browser window?

    To answer my own question (since nobody else can), here it is. Javascript: window.opener = top; window.close(); Hope that gives somebody else some help if they need this answer. :)
  17. BigRedTexas

    How do I minimize my current browser window?

    I am calling an open on another browser window and need to minimize the current one. How can I do this via .net? I'm assuming Javascript is the way to go but can't figure it out. I used a "window.blur()" but all that does is send that window to the back. Thanks for your help in...
  18. BigRedTexas

    How do you make a TabPage Active

    I've looked on MSDN but don't see an obvious way to make a TabPage active on the .net TabControl. I have two tabs, and just want to be able to make the second one active when something happens. Can anyone please help me? Thanks, Scott
  19. BigRedTexas

    Can't release Excel Object

    The sheet is not the problem. The actual application is what is not visible. Also, the application reference is never released, so it shows up in Task Manager. So, if I run the app 3 times, 3 instances of Excel show up in Task Manager and cannot be terminated. Thanks, Scott
  20. BigRedTexas

    Can't release Excel Object

    I have a simple ASP.NET app that launches an existing Excel workbook when the user clicks a button. However, the workbook never becomes visible (I set it to visible). And when I try to set the excel object to nothing, the excel object doesn't go way. When I try to call an application.quit()...

Part and Inventory Search

Back
Top