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!

Recent content by CzechNET

  1. CzechNET

    Entering values to textbox in a parent window

    Hello, I have a window that has a textbox in a form called FRM, now from this window I have a pop-up that contains an image. When this image is clicked the textbox in the parent window would have a value "Something" (example). Is this doable ? If so can you point me to the right direction ...
  2. CzechNET

    Unique Results Only

    Thanks Rudy :) I think it's exactly what I was after, it gives me the fields I need but only form records that have a unique email address. Thanks.
  3. CzechNET

    Unique Results Only

    I have a query like this: SELECT fldUSERNAME, fldPASSWORD, fldNAME, fldEMAIL FROM MY_TABLE Now I'm trying to return only those records with a unique email addres, so no email address would be repeated twice. How would I go about it, somehow use the GROUP BY ?
  4. CzechNET

    Converting text to datetime value

    Thanks r937 !
  5. CzechNET

    Converting text to datetime value

    Thanks r937, works great on MSSQL. Do you know of equivalent for MS Access ?
  6. CzechNET

    Converting text to datetime value

    Oh, right .. MS SQL server, though I'd preffer if it was in ANSI SQL, not T-SQL
  7. CzechNET

    SELECT TOP <variable> FROM ...

    As in ? Variable = "SELECT TOP " & MY_COP & " FROM ....." Eitehr way convert to stored proc ! It's going to be for the best :)
  8. CzechNET

    Converting text to datetime value

    Anyone ? Please :)
  9. CzechNET

    Converting text to datetime value

    The DB I have to work with has 2 fields (among other) "fldSTIME text(8)" and "fldSDATE DateTime" Now, I need to sort the records based on the date which works fine however I'd like to sort it by the fldSTIME as well, where the fldSTIME gets converted to time and attached to the fldSDATE. The...
  10. CzechNET

    Finding the most occuring number

    Thanks
  11. CzechNET

    Finding the most occuring number

    I have a table that looks like this tbl_name ------- ID fldCATE fldSOME and I need to find out what's the most occurring fldCATE value (it's an integer btw)no matter the rest, so say if value 5 is there 60 times while value 1 is there only 25 times, the value 5 should be returned. Any ideas ?
  12. CzechNET

    Get submitted form field names and values

    Just wandering if it's possible to get the form field names dynamically, just as you'd get the form fields values .... for each obj in request.form response.write request(obj) & "<br>" next Above code will produce values, but not the form names, any idea how to get them...
  13. CzechNET

    Delete File from client's cache

    Can't you set the cache to expire in certain time period, say in a few days or perhaps even hours ?
  14. CzechNET

    ASP 6 Convert to (PHP || .net)

    My 2 cents .. since you already are on the Windows platform, I'd stick with it, .NET is very powerful when used right and is actually quite easy to migrate from ASP to ASP.NET. Also if you are not familiar with the Linux/Unix environment you'd have to rely that much more on opinions coming from...

Part and Inventory Search

Back
Top