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 Mike Lewis 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: *

  1. tmcain

    Validate data then submit

    Sounds good, but I have a question. I am not familiar with javascript. What will happen if the function returns false?
  2. tmcain

    Degrees vs. experience

    In my area, they won't even look at you without at least a 4 year degree. I suppose it all depends on what you want from your career and where you want to go.
  3. tmcain

    Validate data then submit

    I have looked through archives but haven't found my exact answer. I have a button that when the onclick event is fired it runs a subroutine to validate data. Once that is finished I have code in the routine document.shipForm.submit Interdev is aware of my controls because when i type the '.'...
  4. tmcain

    Output parameters and @@identity

    In case anyone refers to this in the future, I found the problem. The ASP page was treating my stored proc output param like a resultset so I had to close the recordset before I could use the parameters. Here is the code I had to insert right after my cmd.execute: While Not rst Is Nothing...
  5. tmcain

    Output parameters and @@identity

    Thanks! I have tested and it looks fine. So for some reason my page isn't working properly.
  6. tmcain

    Output parameters and @@identity

    Sorry! I guess I haven't had enough coffee. Here is the stored procedure: --This Procedure creates a basket for the Outgoing Shipment Form CREATE Procedure sp_CreateShipment @Employee varchar(50), @idShipment int output As -- Select @Employee, @idShipment Begin Tran Insert into...
  7. tmcain

    Output parameters and @@identity

    I am having trouble returning a value to an asp page. The set up I have is a user enters data in a form. This info is inserted into a table and assigned an auto-generated key. I want the stored procedure I have written to return the key back to the page for another stored procedure to use as an...
  8. tmcain

    Wanting Vertical Cascading Menu

    I have javascript for a cascading menu that works well. However, I really want the menu to go up and down along the left hand page. This particular menu goes across the screen from left to right at the top. Is there a property I can change to get the menu on its side?
  9. tmcain

    Resizing a Form

    Thanks, I'll try this approach.
  10. tmcain

    Resizing a Form

    I need to ensure that when a user resizes my form all the controls are still visible and in proportion. Is there an easy way to do this? If you can post examples, I would appreciate it. Thanks
  11. tmcain

    Saving Files to HardDrive

    I am creating a program that allows a user to open a jpg file (picture will be of products carried). They can then rename the file to match a product number in the database. The program will check to see if the name they want to give it is valid and then will let them see a description of the...
  12. tmcain

    SQL syntax for Crystal

    Sorry, already tried that one and it doesn't work. I was going to do it manually.
  13. tmcain

    Popup Menus not Specified

    I have searched the archives and didn't see this particular problem, although I might have overlooked it. I copied a web page that I created with Visual Studio Interdev and Dreamweaver. I created a navbar in Fireworks 4 with a popup menu. I have tried to open this file in IE on another...
  14. tmcain

    I have searched the archives and di

    I have searched the archives and didn't see this particular problem, although I might have overlooked it. I copied a web page that I created with Visual Studio Interdev and Dreamweaver. I created a navbar in Fireworks 4 with a popup menu. I have tried to open this file in IE on another...
  15. tmcain

    SQL syntax for Crystal

    Additional info, the database is Oracle 8.16
  16. tmcain

    SQL syntax for Crystal

    I need to convert SQL syntax that originated in access to a crystal report. I am not familiar with proper placement of tick marks, etc. and am having problems finding how to do this in help or online. I basically am changing the 'from' section of the SQL statement. Here is the access version...
  17. tmcain

    Value of Concatanated Field

    Try this whileprintingrecords; numbervar x; x of course intialize the variable with whatever type it is, string, etc. hope this helps
  18. tmcain

    Value of Concatanated Field

    Have you tried assigning the "value" to a variable? You could then have a formula field to print out the variable. I hope this helps!
  19. tmcain

    Concerning Linking Tables.....

    This doesn't seem to be working. I tried at different times both a left outer join and a right outer join. Will keep working on it. If someone can think of a reason why the outer join doesn't seem to be working, please let me know. After I read IdoMillet's post, I thought for sure it would...
  20. tmcain

    Concerning Linking Tables.....

    I am needing to retrieve information from about 5 tables total. The problem is that some of the records haven't been entered into two of the tables. Thus, those particular records don't show up, since there isn't a match in ALL the tables. Our users want to see this information, even if details...

Part and Inventory Search

Back
Top