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 bkrike 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: mcallaghan
  • Content: Threads
  • Order by date
  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

    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()...
  6. 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...
  7. 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...
  8. 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...
  9. mcallaghan

    request.form value from a drop down

    I have a drop down list which is populated from a mysql database. I should also point out that the drop down value has a value put in there but I want to give the user the opportunity to change it. For some reason I cant get the value when I click on the button. Below is the code that i am...
  10. mcallaghan

    Inserting a colon into a database

    This is a pretty simple question I think. I have a asp page where I am inserting a text into a mediumtext field. Lets just say the word is (we're). Whenever I insert a colon I get a error. It doesnt like it. I take the colon out and it works. Does anyone know of a work around.
  11. mcallaghan

    If 2 dates equal a checkbox gets flaged

    I have 2 fields on a page where one date field is automatically loaded when the screen is loaded with todays date the second field a user picks a date. I have a javascript that opens a calender and they choose a date. What I am looking for is if these 2 date are equal to put it in the check...
  12. mcallaghan

    Drop down box Passing Parameters

    I am using vbscripting to connect to a database and populate a dropdown box with the values from a query. Thats the short description. My question is I would like to be able to pass the value from the drop down to the next webpage through the search bar. Example: my drop down list has these...
  13. mcallaghan

    Messagebox with Comb list

    I am trying create a messagebox with a list box does anyone have code that it can be done. Thanks
  14. mcallaghan

    Passing Parameters

    I wrote a shell script that I am passing parameters to a Vbscript. Does anyone know if you are restrictions to the amount of parameters you can pass. I am passing 8 and it is causing a error. Thanks
  15. mcallaghan

    Outlook Question

    Dont know if you can do this. Does anyone know if there is a way in vbscript where I can pass the name and call out to my global address list in outlook and obtain the email address from the list. Example 1) I am passing the name John Smith from a outside application 2) I want this to go into...
  16. mcallaghan

    Problem with grabbing strings

    I have a question on using string I am trying to create a script that will take a name such as John Smith and create a variable that says jsmith. The code i have just isnt working mAssigned = "John Smith") pos=instr(mAssigned," ") msgbox pos ("Works Fine") first=left(mAssigned,1) msgbox...
  17. mcallaghan

    Nested Awk

    I have a list of files like so >>C:\dev\test\test1\090205\A1CQ00004341_BTOtiers.sql@@\main\R3_Support_INT\3 >>C:\dev\test\test1\090205\A1CQ00004341_TOPtiers.sql@@\main\R3_Support_INT\3 >>C:\dev\test\test1\090205\A1CQ00004341_TOPtier2.sql@@\main\R3_Support_INT\3 What i want to to is just have a...
  18. mcallaghan

    Changing Font through Perl

    I am wondering is there a way through Perl to be able to change the font to be Courier in a text file. Does anyone have a script to do this.
  19. mcallaghan

    Is there a way to read through a file and change its font

    I have this txt file and would like to be able to read through the whole txt file and change all the font to courier new. Is there a way we can do this through awk or sed command and how to do it.
  20. mcallaghan

    A e-mail question

    I currently have a vbscript that has a attachement to it. What I am currently looking to do is be able to send a e-mail with the attachement in the body of the e-mail. Example: Lets say the the attachement sample.txt file just has the words test 123. I want to be able to send the words test 123...

Part and Inventory Search

Back
Top