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

  1. prgmrgirl

    Session and ViewState Question

    Hey guys, I just read somewhere that Session is shared among multiple tabs open to the same site whereas ViewState is not. Is this true? I can see this causing some serious problems if a user has the same page open in two different tabs but the value being held in the Session variable should...
  2. prgmrgirl

    Getting Free Disk Space

    LOL ArkM! Hint hint nudge nudge :) I suspected as much. Thanks for confirming!
  3. prgmrgirl

    Getting Free Disk Space

    Thanks a lot guys! This stuff if good to know. Have a virtual beer on me! [thumbsup2] prgmrgirl
  4. prgmrgirl

    Getting Free Disk Space

    Thanks for your response! Yes they report the same figure. My understanding is that the ManagementObject uses WMI. But I don't know how DriveInfo is getting its data. I looked around but couldn't find anything definitive about it. I suspect it's using some kind of API call in the background...
  5. prgmrgirl

    Getting Free Disk Space

    Hey guys, I'm trying to figure out the difference between these two ways of getting free disk space: One uses a System.Management.ManagementObject: ManagementObject disk = new ManagementObject("win32_logicaldisk.deviceid=\"c:\""); disk.Get(); return disk["FreeSpace"] and the other uses...
  6. prgmrgirl

    Best way to deal with large downloads

    Hey guys, Imagine that you have salesreps that must occasionally download very large files via a desktop app while on the road. I'm looking for some feedback as to the best way to deal with downloading these large files. Is it better to have a 'background' downloader and get a little bit at a...
  7. prgmrgirl

    How to place cursor in a JTextField

    prosper, Thanks for the link. Unfortunately, it's not so much the movement from one line to the other that is the problem. I am able to do that just fine. The issue is that once I get to the next line, I cannot activate the editor. The cell is selected but the editor doesn't necessarily...
  8. prgmrgirl

    How to place cursor in a JTextField

    Thanks so much for the responses! Ah swing, how I hate thee! LOL I am using a JTable which uses a JComboBox as a cell editor. When the user is done, I would like for them to be able to hit 'enter' to go to the next line. Going to the next line is easy. But moving the focus to the next line...
  9. prgmrgirl

    How to place cursor in a JTextField

    I can't believe this is so difficult to do in Java. I grow to dislike this language more and more as time goes on. I have tried .requetFocus(), .requestFocusInWindow(), setCaretPosition(). I can't believe how many hours I have spent on something that should be so simple... Can someone...
  10. prgmrgirl

    Adding an image to a JSplitPane slider bar

    Hi guys, I'm fairly new to Java and have been trying to figure out how to add an icon to the slider bar in a JSplitPane. Is there an easy way to do this that I am missing? Or do I have to create my own subclass of JSplitPane to add a the image? Thanks for your help! prgmrgirl
  11. prgmrgirl

    Macro Help

    Howdy, I'm a little confused: I'm assuming you want the stuff after ActiveWorkbook.RefreshAll to run last...? In your post you say the section that begins with Sheets("Adhocs in odd locations") but there are two sections that start with that. I would suggest doing this: open up the macro to...
  12. prgmrgirl

    Suggestions For XML in Office

    Hey guys, I'm hoping this is the right place to post this as I know there is an XML forum. Not sure which one is more appropriate...Sorry if its in the wrong spot. I have been trying to incorporate XML into more of our daily processes but in each case that I have examined, it seems that...
  13. prgmrgirl

    Compliance Issues with Opera

    Hey Dan (that's one of my favorite songs btw [tongue] ), - At what stage do you get the error? As soon as I click the button that runs the javascript. - Which version of Opera are you testing it with? (have you tried the latest version?) Latest version - Do you have a URL to the full page...
  14. prgmrgirl

    Compliance Issues with Opera

    Hey guys, I'm trying to test a webpage on Opera. It works fine in IE and Firefox. I pared down all the javascript trying to isolate the problem but nothing helps. The details: Testing the page on a machine running XP Pro. I'm using an aspx file on localhost and running the page by...
  15. prgmrgirl

    Problem With Converting XML to SpreadsheetML

    Hey Tom, I know its not working because the column is not coming up as being autofitted even though the AutoFitWidth is set to 1 in the xsl. The default is <Column ss:AutoFitWidth="0" />. Normally you would set the width yourself like this: <Column ss:Width="200" /> Not really sure why...
  16. prgmrgirl

    Problem With Converting XML to SpreadsheetML

    **UPDATE** Found the problem with using style: I had accidently put <Workbook> BEFORE <xsl:template match="/">. D'oh! Still can't figure out why <Column ss:AutoFitWidth="1" /> isn't working though. [sad]
  17. prgmrgirl

    Problem With Converting XML to SpreadsheetML

    Howdy All, This is a weird one: I have a simple XML file and I want to turn it into Excel via XSL. I can do this without a problem except for a couple of strange things... For some reason, the following will not work:<Column ss:AutoFitWidth="1"/> No error, it just doesn't autofit the...
  18. prgmrgirl

    Getting Current User

    Hi Nick, thanks for joining the lunacy! They use a network login. The users would already be crawling around the network doing other things. It's just a matter of finding out who exactly is on the page at that moment. What I would like to have is their network login (i.e. DOMAIN\USERNAME)...
  19. prgmrgirl

    Getting Current User

    Yeah, it is and mine has been on! LOL Any ideas what the heck could be causing this one? prgmrgirl
  20. prgmrgirl

    Getting Current User

    Hi Jason, Thanks for the reply. Tried to do that but then I get NO username back at all. [sadeyes] prgmrgirl

Part and Inventory Search

Back
Top