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 Mike Lewis 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. Byourself

    Access returns maximum 245 records on 1 query?

    Well, Recordcount returns -1 I also tried to use maxRecords but it didn't help. The problem is very unclear... I can't exactly tell what happens after the 245th record... I can try to explain though: My function goal is to build an html code as a one big string and then show it to the...
  2. Byourself

    Access returns maximum 245 records on 1 query?

    I have a very strange problem... I have a query which should return all the records from one table. I'm using ADO from my ASP page in order to do this. I have a weird problem that after 245 records it would stop my whole function and wouldn't throw any error... it'd just stop... Someone knows...
  3. Byourself

    Search XML File with XMLDOM

    Hmmmm... Could you add a short sample code? XMLDOM is really bad documented and I can't find nothing about it... Thanks --------------- "Young and hostile, but not stupid" (Blink 182)
  4. Byourself

    Crystal Reporting on the Web

    ASP .NET has a great support for Crystal Reports. Have you thought of moving on to ASP .NET? ASP will make it hard on you to use Crystal Reports although it's possible... Shay --------------- "Young and hostile, but not stupid" (Blink 182)
  5. Byourself

    Search XML File with XMLDOM

    Hi, I have a question. I couldn't find documentation about it on the net so I hope the pro's here will help. Well, I have an xml which looks like: <MyXMLTree> <FirstName> <width>200px</width> <DefValue>Your name here</DefValue> </FirstName> </MyXMLTree> Anyway, I'd like to know...
  6. Byourself

    Can I encrypte ASP files?

    hahaha ucvhost came up, lately, with a decision that they do not allow any action with or on files... So you won't be able to upload files, use xml or even send an email attachment through your pages... That's what I call a REALLY BAD host... :-) Anyway, that's not a problem, my host now is...
  7. Byourself

    Colorize source code?

    right --------------- &quot;We'll never give up, it's no use&quot; (Blink 182)
  8. Byourself

    Colorize source code?

    Sorry... I didn't know that [ red ] [ / red ] was used here... :-) I hope you got the idea in spite of the red text there... --------------- &quot;We'll never give up, it's no use&quot; (Blink 182)
  9. Byourself

    Colorize source code?

    There are 2 good options - 1. Replace, for example, every &quot;Dim&quot; with &quot;<font color=red>Dim</font>&quot; 2. A better solution, which will prevent coloring words that are not related to the code (for instance, &quot;dim&quot; in a comment...), will be to use tags. Here is an...
  10. Byourself

    Can I encrypte ASP files?

    That's not an option... I fell we lose the point here - Can ASP files be encrypted and stay active? If yes, how? Thanks --------------- &quot;We'll never give up, it's no use&quot; (Blink 182)
  11. Byourself

    Can I encrypte ASP files?

    I know that... I am talking about a situation when other people have access (via FTP) to my files. --------------- &quot;We'll never give up, it's no use&quot; (Blink 182)
  12. Byourself

    Include file with parameter ?

    This cannot be achieved with a simple include. You will have to read the html page like a text file and output its lines to your asp page. --------------- &quot;We'll never give up, it's no use&quot; (Blink 182)
  13. Byourself

    Can I encrypte ASP files?

    I would like to encrypte my project's asp files, so other people won't be able to steal my code not legally. Can this be done, while keeping the encrypted ASP files active? --------------- &quot;We'll never give up, it's no use&quot; (Blink 182)
  14. Byourself

    Is there something like args[] in ASP?

    Jason, What I asked is that if there is a way to make a function that its amount of variables is not known. Array is not an option... I want to implement a function which will react about the same like printf (C++) or WriteLine (C#)... Args[] wasn't such a good example I know... Thanks! Shay...
  15. Byourself

    Is there something like args[] in ASP?

    Hi, I want to create a function which I can't know for certain how much variables will be passed to it. I'd like to know if there is something like args[] (from c++) so I can write something like this: function DoSomething( MyVar, ... ) { for each Elem in args ' ... next } Thanks...
  16. Byourself

    Get table names fro an MS-Access DB

    Is there a way to get the table names from an MS-Access database by SQL only? I know that in Oracle, for instance, that will be accomplish easily (SELECT table_name from tabs...) Thanks, Shay --------------- &quot;We'll never give up, it's no use&quot; (Blink 182)
  17. Byourself

    Beep Beep!

    craigey, The good old HTML will come handy here: <EMBED SRC=&quot;example.mid&quot; AUTOSTART=&quot;TRUE&quot; LOOP=&quot;TRUE&quot; WIDTH=&quot;145&quot; HEIGHT=&quot;60&quot; ALIGN=&quot;CENTER&quot;> <NOEMBED> <BGSOUND SRC=&quot;example.mid&quot; LOOP=&quot;10&quot;> </NOEMBED> </EMBED>...
  18. Byourself

    How to retrieve users email address

    You will never be able to fetch visitor's email addresses. Think of it - If this could be done, then noone would be able to control their email box from spam and viruses... One would consider such thing as the worst privacy issue... Another reason is that users intend to have multiple email...

Part and Inventory Search

Back
Top