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 SkipVought 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. mcallaghan

    Creating a role of dates

    I have to create a 14 day list of records. 09/17/2014 09/16/2014 09/15/2014 09/14/2014 etc.... Sometimes the field will have records in it. So the data will display 09/17/2014 09/16/2014 09/14/2014 But none is displaying [highlight #EF2929]09/15/2014[/highlight] because nothing happened...
  2. mcallaghan

    Displaying specific data if they have more then one record.

    I am trying to only display the data if they have more then one order per group. I need to display each record it has different info but they are all grouped by id. Currently I created a array within the group in the detail but its showing the data data multiple times. Does anyone have any...
  3. mcallaghan

    Formula For who is in a bed at a certain time

    My table has a start time and a end time. I need to find out a grand total of how many patients are in a bed at a certain hour. Paitient A can be in a bed for 1 hour and 11 while patient b can be in a bed for 2 hours at 11 and 12. The table is one row per record. I need the results to be...
  4. mcallaghan

    Passing parameters to a webservice

    I have this project coming up where i need to pass parameters to a webservice using python preferably. Does anyone have a example where they did something like this. Thanks
  5. mcallaghan

    Adding txtboxes on change using Javascript

    Im getting the error that my 2 variables r and m arent declared. Am i missing something.
  6. mcallaghan

    Adding txtboxes on change using Javascript

    I have a simple little form wearing i am trying to add 2 txtbox values and put it in a 3rd textbox. When the value change the third box will change. Can anyone explain what I am doing wrong. Thanks for all your help. <script type="text/javascript" language="javascript"> function calcVals()...
  7. mcallaghan

    Grid view Footer Grand total

    Well I tried that It didnt work. I think the issue has to do with the Decimal.Parse(Eval( Part of this code. It doesnt like the fact that the values are null. Thanks
  8. mcallaghan

    Grid view Footer Grand total

    I have a grid where I am doing a grand total it all works well but if the value can be null. When it is null it blows up. Does anyone know a work around. <script runat="server"> Dim TotalUnitPrice As Decimal = 0.0 Function GetUnitPrice(ByVal Price As Decimal) As Decimal If...
  9. mcallaghan

    Request.form from a hyperlink

    Well the insert is working properly If I was to set the display the hyperling value in a details view to visible. I do need the capability to be able to insert the request.form value from a hyperlink into the table. Example: lets take this hyperlink...
  10. mcallaghan

    Request.form from a hyperlink

    I am using Sql server. I dont think it has anything to do about the database. I am just asking how to insert the request.form value into the database. Thanks
  11. mcallaghan

    Request.form from a hyperlink

    I have a pretty general Question that I am very unclear on how to do it. I have a hyperlink that passes parameters and putting them into a details view. I dont want to put all these values into details view though. I am having no problem with grabbing these values. I just want to insert these...
  12. mcallaghan

    Mapping a file into a link

    Hello All, What I am trying to do today is on my intranet site is provide the user the option to add path and file. The user will browse his or her public folders on there computer find the file. I will put that path and file into a txtbox. This public folders is accesible from my webservers...
  13. mcallaghan

    request.form value from a drop down

    i GOT IT TO WORK THIS IS WHAT I DID TO MAKE IT WORK '*****************CHANGED <select name="select" size="1"> '******************** <% Set conn = server.createobject("adodb.connection") connection = "DRIVER={MySQL ODBC 3.51 Driver}; conn.open (connection) set result =...
  14. mcallaghan

    request.form value from a drop down

    <select name="Bckuser1"><option value=></option><option value=''mcallaghan''>mcallaghan</option><option value=''jk''>jk</option><option value=''sa''>sa</option><option </option></select> This is what i see when i view source there is more names but i deleted all of them
  15. mcallaghan

    request.form value from a drop down

    Im not having a problem with seeing the data in the drop down. Its the passing the value that i selected to the save functionality.
  16. mcallaghan

    request.form value from a drop down

    Yes it does post to itself. I provided below the code I am using
  17. mcallaghan

    request.form value from a drop down

    Here is the code that i am using. <% Dim l_name,lokay,l_enter1,lmodsql dim l_password,rs If Not Session("loginokays")or l_okay=True Then Response.Redirect "loginpchange.asp" else l_name=Session("Name") l_name=lcase(l_name) l_pass=Session("password")...
  18. mcallaghan

    request.form value from a drop down

    when it gets to this point Response.write "here" &Request.Form("bckUser1") it prints out the words here and the rest is blank here
  19. mcallaghan

    request.form value from a drop down

    Yes I there is source code
  20. mcallaghan

    request.form value from a drop down

    Yes it does get to the if statement. But the Request.Form("bckUser1") is blank

Part and Inventory Search

Back
Top