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...
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...
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...
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...
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
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...
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...
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...
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...
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...
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
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...
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...
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...
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...
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...
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.