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: FranckM
  • Content: Threads
  • Order by date
  1. FranckM

    VB 6 components

    I'm trying to understand a system I currently working with. This following line calls a function from the component. There are 2 possibikities, but I don't know which one. Can anyone shed some light? Thanks ;) This is the line in asp: *** objGrantee.PartyName =...
  2. FranckM

    Query problem?

    I'm trying to get a list of all the numbers for which the parent of that number and the parent of that numbers formers aren't the same. Every number has a parent. A number can also have a forward( a number that was create before the current number was created) number and a former number( a...
  3. FranckM

    looping problem

    Hi guys, I have a looping problem that I can't find right now. This is the sql query when I execute this code: SELECT iogc_instrument.instrument_number, iogc_instrument.iogc_agreement_number FROM ilrs.iogc_instrument WHERE iogc_instrument.instrument_number IN...
  4. FranckM

    string literal too long

    string literal too long is the error I'm getting by using this code. I'm assuming this is because I'm creating a huge SQL statment. Is that the problem? IF so does anyone know how I could fix this? Thanks for taking the time to read, it's really appreciated. do while icounter <=...
  5. FranckM

    Infininate loop problem? going beyong 254 values for in function

    Guys, I'm trying to create a statement that will allow me to have more then 254 values in an in statement. I'm trying to do this with the following statment. When I try to use it I get a scripttimeout error, even if I increase the timeout. I'm baffaled, I don't know what the problem could be...
  6. FranckM

    Cutting a string in 2 when a delimiter has been seen after x times?

    Is there a way to cut a string in 2 once a delimiter has been seen x amount of times? This is what I'd be starting with: string = (bob,june,sally,eric,joel) This is what I would have at the end: string1 = (bob,june) string2 = (sally,eric,joel) Thanks for taking the time to read and write ;)
  7. FranckM

    How do I count nulls?

    Is it possible to count the number of null values found in one column? Thanks for taking the time to read and answer ;)
  8. FranckM

    vb4 web application problems

    I'm using a vb4 web application and it dosen't work with windows 2000 and windows nt, though xp, which is based on the same kernel, has no problem running the app. Does anyone know of a place where I can find problems like these? or have any of you guys encounter a problem like this? Thanks for...
  9. FranckM

    Interesting question

    Is it possible to write some code, asp or other, that would get the link to an other image if the current image is missing. This way you wouldn't get a broken image. I would use direct linking to server x, if server x goes down, the images on server y, the one where the page would be would use...
  10. FranckM

    Mid

    This is the error I get when I try using mid: Error Type: Microsoft VBScript runtime (0x800A0005) Invalid procedure call or argument: 'Mid' /ESD-PSE/language.asp, line 4 This is the code I have that results in this error: sString = Request.ServerVariables(&quot;HTTP_REFERER&quot;) sExt = Mid...
  11. FranckM

    Array problem

    Trying to sort in alphabetical order, the date I get from the txt file I have to use I tryed this. I get the same results as before(not in alphabetical order, but in the order that it is found in the file. Here's the code: function DisplayLinks() Dim objFS 'File System Object Dim objFile...
  12. FranckM

    Alphabetic order of an array?

    Is it possible to list the contents of an array in alphabetic order? I mean is there a simple way of donig this?
  13. FranckM

    button alignment

    I have a problem with the button's alignmnet. I have some text and then I have a button, I would like the middle of the text to be at the same height as the middle of the button. Is this possible? Thanks for taking the time to read n write!
  14. FranckM

    buttons

    Instead of having links in my site, I want to make them buttons. I create a form for each ling with the action as the url of the link. The button works..but's huge...is there a way to make the button stay the size of a normal button and not a huge one. Thanks for readinf and replying!
  15. FranckM

    weird ado problem - any ideas?

    ,,, ADODB.Recordset error '800a0cb3' Current Recordset does not support updating. This may be a limitation of the provider, or of the selected locktype. /ABSInternet_Local/test.asp, line 40 I have 2 sql queries set to rs and rs2. I open both of them, then I do this...
  16. FranckM

    requesting data from a recordset

    This is what i'm doing right now: set rs2 = Server.CreateObject (&quot;ADODB.Recordset&quot;) rs2.Open &quot;select distinct P1.number, p2.number from part p1, part p2 where P1.number = P2.number(+) Later in the code I use the following to use that information in the table <% do while not...
  17. FranckM

    Is there a way to make this work in Netscape 4.47+

    <td align=&quot;center&quot; onMouseOver=&quot;this.bgColor='#ff0000'&quot; onMouseOut=&quot;this.bgColor='#0000ff'&quot;> Is there a way to make this work in netscape 4.47
  18. FranckM

    Background image in a cell

    I'm trying to get a background image to appear in a cell of a table. In netscpae the background dosen't appear, in IE everything works. Any ideas on what the problem might be?
  19. FranckM

    Odd display problem with netscape

    This is really weird, I can't post the code because it would be too elnghty, but I'll give a description of the problem: This is an ASP page that is called from different pages, and the information showed on the page comes from a database. In one circumstance, only in netscape, a big white...
  20. FranckM

    Scrolling in a table?

    Is is possible to make the contents of a table scrollable without the rest of the page moving? Thanks for taking the time to read ;)

Part and Inventory Search

Back
Top