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

    Cookie problem

    I've a problem with JavaScript and cookies. I have a form with some user data. It's not possible to write more than 18 or 19 form.elements[.....].value into a cookie. I have read that the maximum size of a cookie is 4 kb, My cookie is only 2 kb. This is my script, I found it on Htmlgoodies.com...
  2. Qwark

    Which free compiler

    Hello, I want to make a Windows program in C++. I've seen a couple of free compilers on the internet Cygwin, C++Builder compiler and MingW. Which is the best. Or is there an other better compiler. Please let me know. Thanks, Qwark
  3. Qwark

    Require problem

    I have two files - File1 menu.php: <?php require(&quot;http://www.boerenpagina.nl/standaard/menulink.php&quot;); ?> and some html and php... - File2 menulink.php <?php echo(&quot;BlaBla&quot;); $menulink1 = &quot;index.php?pagina=1&quot;; $menulink2 = &quot;index.php?pagina=2&quot...
  4. Qwark

    Can i use chmod in php

    I would change the permissions (chmod) of a directory (in Linux) via the internet with a php-script. Is it possible to use that chmod command in a php-script. If the answer is yes tell me how. Thank you, Qwark
  5. Qwark

    I want to upload files but get an Error

    I have made the next code, the first time i run the script i'll get an error (I know, doesn't matter at this time). When i have choose a file on my harddisk (I use Windows 95) And click on the button upload i get the next error: Warning: Unable to open 'C:\\files\\0013-0007-1.jpg' for reading...
  6. Qwark

    Protect my scripts

    Hello PHP Guru, I have made some scripts for manage a database. But not everybode is permissed to manage the database. I must protect the script all files or one directory with a central password. Is this possible with PHP or must i use Perl. I hope PHP can handle the problem. Thanks, Qwark.
  7. Qwark

    AUTO_INCREMENT question

    Hello, I have made a mysql database: CREATE table links ( id INT NOT NULL AUTO_INCREMENT, adres VARCHAR(60), PRIMARY KEY(id)); When i put a new record in de database it get a number automaticly. (1,2,3 ...) But when i remove 2 the records are not reorganize automaticly. Is that possible, maybe...
  8. Qwark

    How can i lock all the records who are the result of a query

    Hello, I have a query: cClubSQL = &quot;SELECT clubnr, functienr FROM lid_club WHERE lidnr = &quot; + ALLTRIM(STR(this.nLidnr)) + &quot; INTO CURSOR curClubLid&quot; &amp;cClubSQL This query gives always 1 or more results. from the table lid_club. Can i Lock these results automaticly. If the...
  9. Qwark

    New in PHP / MySQL how to Begin

    Hello PHP Boys &amp; Girls, I like to begin in PHP and connect some things with a MySQL database. What is the best way to begin and of course do you know good site's, manuals or turtorials for that kind of things. I have the MySQL manual and PHP manual already, they are good, but maybe you know...
  10. Qwark

    How to Read the value of the control in a Specific Cell in a grid

    Hello, How can i get the value of a specific cell in a grid control. The Cell must not be activate. The next code doesn't works because the column control isn't an array: ThisForm.grdGrid.grcColumn1[2].txtName.value 2 can also be another number. Can you help me, Qwark
  11. Qwark

    Next and Previous by your self doesn't work??

    Hello, I have made a page with 2 frames. in frame 0 (header.htm) i have made a navigationbar, with the buttons next and previous. I doesn't work correctly with the next code in de header.htm: <A href=&quot;javascript:parent.frames[1].history.go(-1)&quot; onMouseOver=&quot;aPrevious()&quot...
  12. Qwark

    Very heavy Grid navigation problems.

    Hello, I use a grid in my application. It is read-only. The user must select whole rows just like a list box (that works). I can use the mouse for grid navigation (scrolling etc.). But I want use the arrow keys to for grid navigation. Up: select the record up Down: select the record down Right...
  13. Qwark

    Can i hide the blinking cursor

    Hello, Is it possible to hide that blinking | (cursor) in a textbox? If the answer is yes, write down how. Thank you, Qwark
  14. Qwark

    Highlight Grid rows

    Hello, I use a grid in my program. Because it offers a lot more functionality than a listbox, but now i will select (highlight) a whole row just like a list. I have used HighlightRow but that highlight only lines. When I change the backgroundcolor of the specific textbox only one cell is...
  15. Qwark

    Unknow member

    Hello, I have a form(frmForm) with a page frame(pgfPages) and a couple of pages(pagOne, pagTwo). On pagOne I have add a grid control (grdPerson) with a couple of columns In my frmForm.init function I have programmed the next text: this.pgfPages.pagOne.grdPerson.RecourdSource =...
  16. Qwark

    Unknow member

    I have a form(frmForm) with a page frame(pgfPages) and a couple of pages(pagOne, pagTwo). On pagOne I have add a grid control (grdPerson) with a couple of columns In my frmForm.init function I have programmed the next text: this.pgfPages.pagOne.grdPerson.RecourdSource =...
  17. Qwark

    How can I make a .vcx file of a .prg file ?

    Hello, I have a .prg file with the next code: DEFINE CLASS iniaccess AS custom <a lot of properties> <a lot of procedures & functions> ENDDEFINE Can I make a .vcx file of it, with an converting program. Jeroen.
  18. Qwark

    Difference between Classes in .PRG or .VCX files

    What's the difference between classes in an .prg file or in a .vcx file (wich is created with the class designer). And of course what's the best way. Can anyone answer my question, and give your opinion. Thanks, Qwark
  19. Qwark

    How to make a function in a Class

    Hello, I would like to make a function in the *.prg file of a class. Now I have a method getname. In the *.prg file I see PROCEDURE getname, but that must be FUNCTION getname. Because getname returns a value, but when I change the procedure in a function (including FUNCTION and ENDFUNC) it's...
  20. Qwark

    Preload images, HOW??

    Hello, I use the mouseover command in my site. Images wich I use in the mouseover command, start loading at the same time. But they must start loading when the page is loading, for example I must use a function wich start loading images by use the 'onload' event. I know there is a way to...

Part and Inventory Search

Back
Top