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 strongm 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: Jen53403
  • Order by date
  1. Jen53403

    Tough SQL query...

    Sorry ESquared, I didn't realize there was a difference. I thought this forum was for anything coded in SQL.
  2. Jen53403

    Tough SQL query...

    Thanks guys! That's all I needed.
  3. Jen53403

    Tough SQL query...

    I have a database of people and their money contributions. I have 6 columns to keep track of individual contributions, and one column called TotalContribution. I want to write a query that would set TotalContribution equal to the sum of the 6 contribution amounts for each person in the table...
  4. Jen53403

    Save File Dialog Prompts User Twice - Why?

    P.S. CheckFileExists and CheckPathExists are both false for SaveFileDialog1 in my code.
  5. Jen53403

    Save File Dialog Prompts User Twice - Why?

    I have VB code which writes to an Excel file and uses a SaveFileDialog to allow the user to select the file name and location. If the file aleady exsists, it gives two warnings: File <filename> already exists. Do you want to replace it? (Yes / No) The user clicks Yes, and then this one pops...
  6. Jen53403

    Goofy string manipulation in VB

    I want to strip the filename off of a path like so: c:\directory\path\filename.ext becomes c:\directory\path\ I couldn't find a premade function in VB to do something like this, so I'm trying to write my own function below. It searches the string backwards for the first instance of the...
  7. Jen53403

    Wait for Form to Unload

    Jebenson, your suggestions worked, but now I have an even worse problem... Excel now fails to load my toolbar containing this code! I got some error message; I can't remember what it said and can't reproduce the error, but I think it was something about a process not being able to disconnect...
  8. Jen53403

    Wait for Form to Unload

    The Application namespace doesn't appear to have a DoEvents() method. System.Windows.Forms doesn't have a Count property or anything that looks like a count. Application doesn't have a Forms or OpenForms in it. I read something about a forms collection, but I can't find that using...
  9. Jen53403

    Wait for Form to Unload

    Hi, I'm just learning VB, and I'm coding an Excel add-in using VSTO. I'm trying to show a form, wait for the user to click OK on the form so it unloads, then continue execution from the function that called the form. I did some searching and found the following code which is supposed to...
  10. Jen53403

    Java acm class files and importing

    I have some Java .class files from an acm library, and a program which imports acm.graphics.*. Where on my computer should I save the library files so the program doesn't error out in compiling the import line? Do I have to set of classpaths or something to make it work also? I'm using...
  11. Jen53403

    Mutual Exclusion - quick question

    Sorry if this is a bad question, but I'm trying to implement some mutual exclusion between processes in C++. I'm aware of the acquire() and enterCriticalSection() functions which are supposed to accomplish this, but I get an error saying these functions are undefined when I try either of them...
  12. Jen53403

    Multiple processes sharing data in C++

    Well I've implemented the shared memory, and it seems to be working fine, but now I've discovered another defect - each process is running through and completing its execution before the next process is created! They should all be running simultaneously; that was the point of my experiment...
  13. Jen53403

    Multiple processes sharing data in C++

    I'm trying to create a simple C++ program that uses fork() to create three processes which work together to calculate the square roots of all integers from 1 - 100. Each thread is supposed to read a common int, print out its root, and increment the int. My problem is I don't know how to get all...
  14. Jen53403

    mouse over and mouse out issues

    I tried using display: block, but in IE, that put an extra line between the li's and spread them out too far.
  15. Jen53403

    mouse over and mouse out issues

    I have an unordered list of links to different pages, and each list item has an "onmouseover" attribute that triggers a Javascript function mouseOver(prod). This function changes the src of the main image on the page to a different image file, depending on the value of prod. So the user can...
  16. Jen53403

    div's in IE with width: 100%

    Thank you very much. I love easy solutions!
  17. Jen53403

    div's in IE with width: 100%

    For the following code example, IE does not stretch the image all the way to the right, while other browsers do. How can I fix this to work as it should in IE too? <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head>...
  18. Jen53403

    Differences in IE's display of &lt;ul&gt;'s

    P.S. I just realised that kaht's suggestion of deleting the display:block from the product-tabs li a attributes now fixes my problem, after I fixed the doctype declaration. Sorry if I confused anyone. There are still minor differences between IE's display and Firefox's display of the page, but...
  19. Jen53403

    Differences in IE's display of &lt;ul&gt;'s

    Vragabond, I followed your link and replaced my doctype with the following one: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> Unfortunately, this did not fix my problem, and IE still leaves an extra line between links in the product...
  20. Jen53403

    Differences in IE's display of &lt;ul&gt;'s

    I don't understand why IE would only warn me about Javascript in a local page and not one online. It seems to me that a page online could do a lot more damage to me than one located on my hard drive. As for doctype declarations, I really have no clue if I did that right. I mostly just copied...

Part and Inventory Search

Back
Top