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 Wanet Telecoms Ltd 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. planix

    A wierd/unusual problem with DirectoryIndex... or is it?

    many thanks. Alistair
  2. planix

    A wierd/unusual problem with DirectoryIndex... or is it?

    Hi, I was getting a message that said "File / not found. Please check ... etc". But, I just tried after reading your message and got on just fine. This is really puzzling because I haven't made any changes to httpd and I haven't re-started the server for a couple of days. It seems like it...
  3. planix

    A wierd/unusual problem with DirectoryIndex... or is it?

    Hi, I have Apache 2.0.52 (win32) PHP 4.3.10 mod_perl 1.99 running on Windows 2000. No problems and it seems to be working well. I have DirectoryIndex set up as and this worked well until the other day. I could simply enter the directory address for the server http://discors.jcu.edu.au/ and...
  4. planix

    IIS, header() problem

    So, is there a straightforward, generic fix to this? I have read some posts about using Meta tags to refresh in some circumstances. Is it possible to say that, when sending cookies and using the Location header in IIS, you should first call; header(parameters) then call <meta...
  5. planix

    IIS, header() problem

    Thanks. That actually makes some sense to me. I think I have a hard time understanding the file structure or servers so the idea of absolute and relative gets mixed up with whether I am thinking server file structure or web file structure. I will try the 'nph' idea. Does that generally lead to...
  6. planix

    IIS, header() problem

    I am pretty sure that it is an absolute URL. The variable resolves to something like "https://discors.jcu.edu.au/ojsb/classes/install/". But, I must say I haven't really got a good understanding of what an absolute versus a relative URL is. [blush] Thanks. Alistair
  7. planix

    IIS, header() problem

    Hi, I know that there is a problem with IIS and redirecting using the header() function. But, does anyone have a workaround for this code? The purpose of the code is to build an expression ($url) to redirect to and then redirect to that built location. function redirect($url...
  8. planix

    How can I access a component caption dynamically?

    Hi, Thanks for the ideas. They were both really helpful and gave me the push in the right direction. The simplest solution, though I haven't implemented it fully- just testing the idea, was to use the FindComponents method. Here is what I have so far; procedure TForm1.Button1Click(Sender...
  9. planix

    How can I access a component caption dynamically?

    Hi, I have a form with a multiple number of labels on it. Each label is named "l1" "l2" ... "ln". I need to select a label at random to display some text. So I want to randomly generate a number between 1 and n - easy. Then I want to use that number to point to the label with that number in...
  10. planix

    Image disappears following drag drop

    and the answer was simple and obvious. Basically the image needs to be on top to start with. So, as shape2 was created after shape1 and the image object it was at the top. Thus, when I put the image on it, the image went behind the shape. grrr. Probably be something I'll have to pay...
  11. planix

    Image disappears following drag drop

    Hi, I have a form with 2 squares(shape1 and shape2) and an image control. The picture in the image will be loaded at runtime in the end, but for the moment I have just put one in to try this out. The idea is to drag the image to a shape. Once it is dropped there a range of other processing...
  12. planix

    Is it possible to distort selected parts of an image?

    Thanks Robbie. I guess that I can also keep one image hidden so that the distortion looks like it is happening within the one picture. The next step would be to stretch the image2, by whatever amount, and then use the same copy code back into image1, right? I will give this a go and then come...
  13. planix

    Is it possible to distort selected parts of an image?

    Hi, This is a conceptual question, at this point. No code. I am developing software to use in research to evaluate people's body image, and particularly trying to assess self image distortions. Some software that I have seen, but not used, allows subjects to distort portions of an image of...
  14. planix

    MyLittleBase

    hey... just great. Many thanks. my email is campbells4@ozemaildotcomdotau. Do you happen to know what has happened with the development? It was an excellent little database engine and I lost my only copy when I crashed my OS a while ago. Alistair
  15. planix

    MyLittleBase

    Thanks Steve. The only download link I can find at delphi32.com links back to the defunct webpage for mylittlebase. So, at this point unless someone has a copy I can get by email it looks like it's gone for now. Alistair
  16. planix

    MyLittleBase

    Has anyone got a copy of this freeware database package. I am looking for MLB2+ but the website of the developer is not active anymore. Anyone know if the developer is still working on MLB3? Thanks Alistair Australia
  17. planix

    A problem with cutting and pasting records

    Thanks all. I agree it is a design problem. I will go with a quick fix that I have worked out for now. But I will ask you all again because I'd really like to make this a generic sort of app. Basically I design and use a lot of surveys and questionnaires. I have tried to cut the data...
  18. planix

    A problem with cutting and pasting records

    Thanks. Good advice which I will now follow. Can you help me with the coding side of things. What I was doing was creating a recordset from the table and then stepping through it. I have created a sorted query and then tried to create a recordset from this by Set theDB = CurrentDb Set QTable...
  19. planix

    A problem with cutting and pasting records

    The Background: I have a table which I am using as the basis for an interactive survey. The table holds the Question Number, the Question Content, where to go if the answer is positive, where to go if the answer is negative, and which response format should be used. The table is accessed in...
  20. planix

    Can I use a literal variable to refer to a form field?

    Would you believe I found out just 2 minutes after asking this how to do it? Wierd! Anyway the answer is to use; Me(var) to refer to the field. Per my example; Me(lblQNum.caption)=1 works really well. Thanks.

Part and Inventory Search

Back
Top