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: techkate
  • Content: Threads
  • Order by date
  1. techkate

    New to ASP.NET - subfolder in website with same name as website

    I'm new to .NET (I come from a VB6 / SQL background). I'm now working in a position where I am the go-to for VB.NET and ASP.NET app/website maintenance. All previous developers in the group left the company, with little documentation left behind also. Picking up on the .NET language itself...
  2. techkate

    Best way to move 1 million small files from one dir to several dir's?

    I need to perform a one-time move of about 1.2 million small files. The files could range in size from <1k to 50k. All of these files were sitting in one archive folder, and the fact that there were so many files in that one directory turned out to be the cause in determining why a proprietary...
  3. techkate

    input type=file cant set name

    I am creating file inputs ad-hoc. However, the name I specify is not 'sticking'. The inputs that I create at design time behave with the name attribute appropriately. note: the variable filesrc is passed into the routine as something like "testdoc2" thisFile = document.createElement("input")...
  4. techkate

    ado begin trans w/ string query

    I'm relatively new to vbscript. What's harder is that it's been a while since using ADO. I'm a little rusty, and I'm having trouble finding what I'm looking for on Google. As always, I post here in those situations. Basically, I'm looking to use a SQL Transaction and execute a string update...
  5. techkate

    vbscript begin trans execute cmd

    I'm relatively new to vbscript. What's harder is that it's been a while since using ADO. I'm a little rusty, and I'm having trouble finding what I'm looking for on Google. As always, I post here in those situations. Basically, I'm looking to use a SQL Transaction and execute a string update...
  6. techkate

    Determing client time

    When determining the client time, would it be better to only get the time zone, and base the client time off of the difference between the server time and the correct time for that timezone? This would avoid any human dst time change mistakes. Don't really need help on this, just wondering if...
  7. techkate

    Using inline vbscript in HTML within XSL

    I have an xsl file that outputs html. What is the proper way to include inline vb scripting? For example, when not working in xsl, I would typically do something like this: <% dim myVar = 'frak' %> <span><%= myVar%></span> I've been playing around with escaping and such, but I can't quite...
  8. techkate

    Retrieve index of an html element

    Is it possible to retrieve the index of an html element (ie Input button) that is in an array? For example: <html> <input type="button" id="theButton" value="Button One" onclick="theButton_onclick();"/> <br><br> <input type="button" id="theButton" value="Button Two"...
  9. techkate

    How to copy nText value from one record to another

    This seems to be one of those concepts that I'm just not able to grasp - looked at other posts here, googled, scoured through help, and I'm still not getting it. I think I'm supposed to use UPDATETEXT, but I'm not sure how. All I want to do is copy the value of an nText field, which I will...
  10. techkate

    IE 7 print preview window event?

    Currently, I manipulate my page layouts (asp.net) using window.onbeforeprint and window.onafterprint so that pages print as best as possible. Are there similar events for the new Internet Explorer 7 print preview function? It appears the print preview ignores window.onbeforeprint and...
  11. techkate

    Possible to import tasks into Outlook from 3rd Party file

    I would like to be able to create a file (comma-separated?) that Outlook can read in and create tasks for. Is this possible? Thanks! Kate Yeah, it's a non-nutritive cereal varnish. It's semi-permeable. It's not osmotic. What it does is it coats and seals the flake, prevents the milk from...
  12. techkate

    Sum Aliases (not explicit fields)

    I'm looking to get the sum of two counts into one value/attribute in the XML returned. Here is the simplified query as it returns now, with two different sum columns: select 1 as TAG, null as PARENT, 'No Status Set' as [XMLTest!1!Status], count(*) as [XMLTest!1!mainCount], (select count(*)...
  13. techkate

    Fading a TR

    I'm trying to use some code I found to fade the color of an element, in my case, a row (tr). On the website from which the code originated, http://www.javascript-page.com/fader.html, it works great with fading the background of the webpage. When I implement the code into my .js file, I...
  14. techkate

    Select Box rapid close

    Has anyone ever run into this annoyance where clicking a select box to expand the list just causes it to drop down quickly then just as quickly revert back to the original value without allowing you to select an item from the list? This seems to alternate between being an issue with the size of...
  15. techkate

    Cell wrapping - hanging indent?

    I'm new to HTML. Is there any way to indent the 2nd line of the cell when it wraps? Here is what my cell looks like now (where '>' represents an arrow icon): ____________________ |> BlahAndBlah Blah| |AndBlah | ____________________ I would like it to look like this...
  16. techkate

    Equivalent of VB's Right$() function?

    I'm new to Javascript, please bear with me. I've done some searching for this, haven't quite found what I was looking for. Looked in the FAQ's here too. I have a filename, let's say, of 'MyFile.xls'. I want to strip off the filename and preserve it, so I would have two variables: string1 =...
  17. techkate

    Mail Merge - MSWORD.OLB (10.x vs 11.x)

    I am trying to update my mail merge code (vb6) so that users who have Word 2003 can perform a mail merge successfully. Currently, this does not work for Word 2003 users, it only works in Word 2000/2002. This is probably because the VB Project references MSWORD.OLB - which is the Microsoft Word...
  18. techkate

    CR Viewer Export to Excel No File Created

    We are using Crystal 8.5 and there are two machines that cannot export to Excel from the Crystal Viewer. When you click on the Export button, the handful of Excel formats is there, and you can select one and then specify the options in the dialog box. After that, the 'Save To' dialog appears...
  19. techkate

    Help w/ Reg Value Enum/Deletion

    I'm having an issue enumerating registry values (using RegEnumValue). Please see thread222-1136841 . Any help is appreciated. Thanks, Kate
  20. techkate

    Help w/ Reg Value Enum/Deletion

    I'm relatively new to editing the registry through VB, specifically with using the RegEnumValue API call. The following code is supposed to enumerate a list of values within a particular registry key. It works fine in the IDE, I've been using it to delete Internet Explorer URL history...

Part and Inventory Search

Back
Top