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

    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...
  3. 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...
  4. 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...
  5. 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
  6. 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...
  7. 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...
  8. 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...
  9. prgmrgirl

    Getting Current User

    Oguys, I have done this before and of course, no longer have the code so I don't remember how I did this. We have some users who, once connected to our intranet, want to use a page. I would like to simply get the name of the user so that I can display "Welcome UserName" at the top of the...
  10. prgmrgirl

    Word XML Toolbox

    Howdy all, This is a strange one. I downloaded the XML toolbar figuring it would save me some time. Got it all installed, open up a word doc but when I click any of the buttons, none of them work. Nothing happens at all. It will not convert tags, show schema, won't let me save from that...
  11. prgmrgirl

    Excel - Select Only Filtered Data

    Howdy all, How would I programmatically select only the data in a list that has been filtered? For example, if the user has filtered the data to only show companies with offices in IL, how would I then select that data without selecting everything else? Thanks! prgmrgirl
  12. prgmrgirl

    Excel Lists - Maybe I'm Crazy

    Howdy guys, I dread to hear the answer to this one. I have an Excel 2003 list. It has the little blue line around it and everything. Life would almost be good except that I cannot do subtotals on the list. If I convert it back to a range, the option Data->Subtotals is available again...
  13. prgmrgirl

    Specifying an XSL file in a schema

    Howdy everyone, I have a schema and I would like all documents that conform to that schema to be transformed a certain way. Would I be able to specify the xsl file to use right on the schema? The xml file names may change etc but I want anything that conforms to this schema to be transformed...
  14. prgmrgirl

    Apply a transform on export with Excel

    Howdy everyone, We have a spreadsheet with lots of data. It has a schema and can be imported/exported just fine. However, I would like to apply a transform to the data on export. Basically, I'd like to pull only some of the records into xml based on a criteria I define. For example, on...
  15. prgmrgirl

    Can a shared workbook contain a list?

    Hey guys, I noticed something funky today. I created a workbook and pulled in data from an xml file (created a list). Now I can't share it. The option (Tools->Share Workbook is grayed out). I can create a shared workspace but then I can't refresh the XML data. [shadessad] Anyone know how...
  16. prgmrgirl

    How to create a read/write connection to Access from Excel

    Hey guys, I've been trying to figure out how to do the above with as little coding as possible. I thought the data connection using the Date->Import External Data was a two-way connection but its not. Basically my users want to use Excel as the front end to enter data into an Access database...
  17. prgmrgirl

    Crosstab Help

    Hey everyone, this one is just making me crazy. I have a table (custSales) with the following columns: custType, Period, Sales Now I would like to create a crosstab, like so: Select custType, Sum(case Period when 'TY' then Sales else null end) As ThisYear, Sum(case Period when 'LY' then...
  18. prgmrgirl

    Question on Best Practice

    Hey guys, I'd like to know what your opinions are about the best way to send data. If you have an webpage that uses Ajax: Is it generally preferable to get small amounts of data when needed or to send all the data in one shot and manipulate it via client-side code? Example: a page that uses...
  19. prgmrgirl

    Variable Changes unexpectedly

    Hey guys! This is a weird one. I'm not sure what to make of it. I have a two functions like so: <input type='radio' name='foo' value='1234-1' onclick='myFunction(this.value)'/> <input type='radio' name='foo' value='1234-2' onclick='myFunction(this.value)'/> function myFunction(val) { //do...
  20. prgmrgirl

    Recordset and Array Problem

    Hey guys, I have a recordset that I pull back from a database. I'd like to put this recordset into an array. Seems simple enough, right? var cust = new Array() var i=0 while (!rst.eof) { cust[i] =rst.fields("custName") rst.movenext i++ } I keep getting the error that cust is not an...

Part and Inventory Search

Back
Top