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 Wanet Telecoms Ltd 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: jennuhw
  • Content: Threads
  • Order by date
  1. jennuhw

    70-294 and 70-297

    Do these two tests overlap? I am scheduled to take the 294 this coming Friday, and I am hoping that I can take the 297 shortly afterwards. Thanks!
  2. jennuhw

    Shortcuts at Top of Desktop Disappeared

    When I installed Vista on my new laptop from Dell yesterday, I had a shortcut bar on my desktop at the top of the screen. It had email, music, pictures, IE, etc. Somehow it has disappeared, and for the life of me, I can't get it back! Where is the setting for this? Thanks!
  3. jennuhw

    HijackThis Log

    Spysweeper isn't picking up what is giving me fits! I keep getting notices that Spysweeper is blocking 86004546.exe (comes up with a new number name everytime.) I always choose block, but it won't fix the problem. After I block it, IE screens keep flashing, and the exe is running in the...
  4. jennuhw

    Hanged?

    I am by far an English major, but I feel that I can punctuate and use proper grammar. I found this article on MSNBC http://www.msnbc.msn.com/id/11721949/. How does a journalist have a career using the word 'hanged' instead of 'hung'? Don't we learn the past, present and future tense in grade...
  5. jennuhw

    Multiple Queries - Multithread?

    I have several queries that are ran on button click. From what I have read on multithreading is that the processes don't necessarily run at the same time if I understood this correctly. I need to speed up the response times of the queries and am wondering if multithreading is the way to go...
  6. jennuhw

    View HTML Source

    When I right click on an object and choose "View HTML Source", I would expect to go straight to the code for that object selected like in FrontPage. When I do this, it just goes to the first line, and I must search to find the object. Is this the way it is suppose to work? Thanks.
  7. jennuhw

    ArrayList Retrieve Values

    I created an arraylist differently than I have in the past. Now, I am having problems retrieving any information from the arraylist. Any ideas? Dim CCConn = New System.Data.SqlClient.SqlConnection("server=server;uid=username;pwd=password;database=database") Dim CQSQL As String =...
  8. jennuhw

    Excel Session Left Open on Server

    Can someone please explain to me why this is leaving an Excel session open on the server? I must be missing something little. Thanks! Call fso.CopyFile(otherfile, fname) ' create the Excel object Dim objXlApp = Server.CreateObject("Excel.Application")...
  9. jennuhw

    AutoFilter in Excel Workbook

    I am trying to set the autofilter up for each sheet of my workbook if there is any information on them. For some reason, no matter how I code it, the last sheet to get the autofilter applied is the only one that has the autofilter on. Any ideas? Below is my code shortened up: Set objXlApp =...
  10. jennuhw

    Set Select Box Selected by Value?

    I have tried many combinations, but none of them are working, and surprisingly, I don't end up getting an error. The select box ends up having nothing selected. I need to set the selected option of a select box by the value since I don't know the index. Is this possible? Here is my code...
  11. jennuhw

    Excel Multiple Sheets Problem

    I have created workbooks like this before, but I have never had the following problem. Here is all of my code: Set objXlApp = Server.CreateObject("Excel.Application") objxlapp.visible = true ' open the spreadsheet file set books = objXlApp.Workbooks.add() 'Open...
  12. jennuhw

    More Efficient Way to Fill Table?

    Is there a more efficient way filling a table than the code I am currently using below? [code] tablesql = "CREATE TABLE MyTemptable_" & username & " (order_no varchar(8), customer_part_number char(40), customer_id char(8))" myConnection.execute tablesql fillsql = "select order_no, item_id...
  13. jennuhw

    Trigger - Not a Valid User

    I am testing the trigger listed below to update another database: CREATE TRIGGER [ESP_Global_Quote_Table] ON [oe_hdr] FOR INSERT AS /* The trigger will enter order number and item id into the quote table in GlobalOpp database on ESP12. */ declare @order_no as varchar(8) select...
  14. jennuhw

    Edit Excel from Link

    I have a page where there is a link to an Excel document on the web server. The link and upload works fine. The problem lies when the user edits the document and tries to save it, it automatically wants to do a save as with My Documents being default. Is there a way to open the document in...
  15. jennuhw

    Workbooks.Add with Excel in Browser

    I have code to open a new workbook and copy a sheet to it. This works great if the spreadsheet is opened directly in Excel. The problem is if the workbook is opened in IE (where it will be accessed) it fails on the workbooks.add line with the following error: Method 'Add' of object 'Workbooks'...
  16. jennuhw

    Excel.Application SaveAs/Export...

    I am trying to open an Excel spreadsheet and do a saveas after making changes. [code] Dim objXlApp, objXlSheet ' create the Excel object Set objXlApp = Server.CreateObject("Excel.Application") ' open the spreadsheet file objXlApp.Workbooks.Open server.mappath("sunhua.xls")...
  17. jennuhw

    Datetime Picker Problems

    I originally posted this in the java forum, but I was redirected. I am using Microsoft's datetime picker. I have a beginning and end date. I want the end date to equal the beginning date if the beginning date has changed. I tried onchange event, but it never fired off. I changed this to...
  18. jennuhw

    onblur DateTime Picker

    I am using Microsoft's datetime picker. I have a beginning and end date. I want the end date to equal the beginning date if the beginning date has changed. I tried onchange event, but it never fired off. I changed this to the onblur which works, kinda. If you use the mouse to change the...
  19. jennuhw

    InfoPath and Exchange

    We are currently wanting to change our Outlook Forms to InfoPath forms. I have searched all over, but I don't see how I can make an InfoPath form mimic an email with the To: button and all. Thanks!
  20. jennuhw

    Hyperlink Description Competing with Comments

    I have added comments to my shapes. Now, I am going through and adding hyperlinks to the same shapes. The description of the hyperlink is now showing while hovering over the shape. I have changed the hyperlink description to match, but it doesn't show the whole description. If I change the...

Part and Inventory Search

Back
Top