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

    Splitting Words in two

    This is perfect, Chris! Thank you very much for your time and for sharing your expertise.
  2. janise

    Splitting Words in two

    Thanks so much Chris, How do I call this function, please! This didn't work for me: <tr> <td colspan="4" align="center">WrapOnSpace(<%=rsData("certcomment")%>)</td> </tr>
  3. janise

    Splitting Words in two

    Can I have you bell me out one more time, please? I have a field on our table that we need to split the values into two. The value is something like: I am coming to see you today, Will you be at home? We would like to split this like: I am coming to see you today, Will you be at home? The...
  4. janise

    Creating a certificate label

    Thanks DreX, This was actually originally done with access db with customized printing option. This time, we just wanted to ensure that it can be printed from any printer. The question then is there any way you can give me a head start on how to do the second recommendation you made? It is...
  5. janise

    Creating a certificate label

    Hello all, I just created an avery type label with the help of an asp guru. It turns out that the label is actually a certificate exactly like the one here right under the first TY (red heart) http://www.truebluebeansnews.com/page5.html It has a dimension of width: 211 and height: 207 I...
  6. janise

    CSS and unstable image alignment

    I have fixed that. I removed the 135px and changed the 662px to 85% which is the size of the page ( as it was set). Everything works great now. Again, thanks for sharing your expert knowledge.
  7. janise

    CSS and unstable image alignment

    Thank you so much for sharing your expertise on this with me. It is working the way I want it to work. I also want to thank you for having the patience to even attempt to help given the lump of code I dumped on the forum. There is just one little problem. As is, it works well because of this...
  8. janise

    CSS and unstable image alignment

    Perhaps, you can give me an example of what you mean. The real problem is that with the type of style sheet I am using, table is being treated as a background. So can you please take a look at where I placed the div info you suggested and help. I know I did it wrong because the same problem is...
  9. janise

    CSS and unstable image alignment

    hi, Thanks for your response and hopefully, you can assist me. This is the current look of this website: websamba.com/aparish What I need to replace here are: Home Choir Register Roster Calendar Luncheon News. I need to replace above headers with the same header but different design from...
  10. janise

    CSS and unstable image alignment

    Hello gurus, Please take a look at the code below. It works well as is because it creates a header for this page. Please take a look. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content= "text/html...
  11. janise

    Date issue

    PG, Your code worked perfectly. I am sure Tarwn's recommendation would work if the date is submitted as Monthname/day/yyyy which was what I was using before I ran into problem I will stick with PG's for now. I appreciate all the help.
  12. janise

    Date issue

    amorous and Tarwn, I didn't see your code before my last post. First amorous. If I run this code: varDate = CDate(rs("Date_submitted")) varDate = FormatDateTime(varDate, 1) I get Tuesday, June 29, 2004. If you don't believe me, do a response.write and you will see. Ok, I see what was...
  13. janise

    Date issue

    hi PG! I ran the code and got this: Microsoft VBScript runtime (0x800A0005) Invalid procedure call or argument: 'MonthName' BTW: Thanks a lot!
  14. janise

    Date issue

    hi Amorous, and thanks for the help but this what I am getting when I ran your code: /29/2004
  15. janise

    Date issue

    Hi, This is what I got when I tried using your code: Error Type: Microsoft VBScript runtime (0x800A01C2) Wrong number of arguments or invalid property assignment: 'Right'
  16. janise

    Date issue

    Urgent help needed. We have a date field on our database called date_submitted. I want this date to return only month, day and year, no day, no time. In other words, I want: June 29, 2004 So far, the one I am using is returning: Day, month and year like: Tuesday, June 29 2004. Can I get...
  17. janise

    query hanging

    sorry, the text data type was a mistake. I have it correct as varchar on both tables; I just typed it incorrectly. As far as join is concerned, I thought that was correct. I want to return everything on the left and whatever matches on the right. What I forgot to mention on my first post was...
  18. janise

    query hanging

    I have 2 tables: table1 and table2 (simple enough). Table1's structure is like this: id identity, scode text sdate datetime loc1 varchar, loc2 varchar, direction varchar, distance table2 has following structre: id identity, scode varchar -> relates to table1 by scode, filename varchar scode...
  19. janise

    Association multiple records to one id

    hi Bastien, thanks for the code, This code is taking forever to run and hasn't been able complete processing. It is probably me using your code incorrectly. Here is what I currently have. old_val ="" While Not rstSearch.EOF And rstSearch.AbsolutePage = iPageCurrent if oldval <>...
  20. janise

    Association multiple records to one id

    Hello everyone again, I have done this before but for the life of me, could not remember how; and couldn't find a sample of the one I did. I have an ID, say 123 which can be associated with one or more records. For instance, Id records 123...

Part and Inventory Search

Back
Top