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

    ajax delays

    Hi there, I am using ajax to call a backend php script that sorts 10,000 records which are then sent back to the web page to replace existing unsorted data. The problem that I have is that as soon is as the sorting starts (ie the php script is running) there is a significant delay and the...
  2. nicasa

    javascript tree menu

    Hi there, my javascript tree menu - works fine in firefox, but not in ie7. Without going into coding details, does anyone have any general suggestions ... Funny thing is that USED to work, so something has changed , regards, Steven M
  3. nicasa

    idle pages

    HI All, I need to create an automatic logout for partly completed form pages with retention of any entered data. What I have in mind is a javascript based (page reload) logout after say 10 mins of a page being left idle. Do you have any better ideas ? Also, after logging in again, how could...
  4. nicasa

    cross browser check box functionality

    HI Gurus, I have created a simple function that enables a text field if a check box is ticked. (and vice versa) Here is the code ... <input name = "vm_box" type = "checkbox" onClick="enableField('vm_pin', 'vm_box')" /> <input name = "vm_pin" type = "text" maxlength = "5" disabled /> function...
  5. nicasa

    Moving Values Between Select Boxes

    Hi Gurus, I am Moving Values Between Select Boxes using the following code snippet ... <TABLE BORDER=0> <TR> <TD> <SELECT NAME="list1" MULTIPLE SIZE=10 > <OPTION VALUE="G723">G.723.1</OPTION> <OPTION VALUE="gsm">GSM</OPTION> <OPTION...
  6. nicasa

    Checkbox help

    HI There, I have a simple checkbox called 'checkall' .... <input name = "checkall" type = "checkbox" onclick = "checkAll()" /> On clicking this checkbox I wish to set ALL of the following checkboxes as 'on' by invoking "checkAll()". <input name = "check[]" type = "checkbox" value =...
  7. nicasa

    Importing SQL DB

    HI There, I have a mySQL DB (5 tables) that I would like to import to another mySQL DB (sam version). Using either the manager window or the command line, how could I do this. I have tried but I get the error message that the tables cannot be found , regards, Steven Matthews
  8. nicasa

    SQL instal

    Hi All, I am new to the world of SQL and would like some help regarding the start at the DOS prompt. I have a very basic query ... I have done a basic install but when I type mysql at the DOS prompt I get a "You do not have permission error ..., cannot logon as local host" The SQL server is...
  9. nicasa

    Installing MySql 5.0

    Hi All, I am new to the world of SQL and would like some help regarding the start at the DOS prompt I have done a basic install but when I type mysql at the DOS prompt I get a "You do not have permission error ..., cannot logon as local host" The SQL server is on the same machine as the...
  10. nicasa

    resizing a jpeg

    Hi There, Is it at all possible to resize a jpeg file programmatically using a method from say TJpeg ? regards, steven Matthews
  11. nicasa

    Arabic Unicode

    Hi All, I would like to localise some apps to use arabic aswell as western languages. Parsing western ASCII text is fairly easy but how would I deal with unicode arabic ? I have had some experience in parsing japanese pdf files by reading ASCII strings two chars at a time and writing them to...
  12. nicasa

    BCB and databases

    Hi all, I am new to database programming and am wondering thge best route to follow. Coming from a BCB compiler and C background the use of embedded SQL statements seems the most logical. In BCB there seem to be two main ways to go: BDE or ADO. Which would be the better and why ? Any advice...
  13. nicasa

    database programming

    Hi There, I am new to database programming in BCB and would like to know where to start. Should I use the BDE or the ADO components ? What is the best route to follow for creating simple client server database apps ? I have recently learnt SQL. Is it easy to embed SQL commands into C programs...
  14. nicasa

    Application icon

    Hi All, I wish to change my application icon. I can usually do this through Project -&gt; Options -&gt; application tab. Unfortunately this is sometimes greyed out and cannot be used. How can I make it functional ? Thanks, Steven Matthews
  15. nicasa

    populating database tables

    Hi all, I have downloaded and installed the latest version of mysql from www.mysql.com. I now wish to populate the tables that I have created by downloading &quot;tysql24_data.sql&quot; from www.samspublishing.com. The problem is that I cannot find such a file on this web site. Does anyone...
  16. nicasa

    Using Synchronise

    Hi All What is the correct way to call synchronise() in a thread ? I want to be able to call a function using a pointer to main form like this: synchronise(pMyForm->MyFunction()); It does not work !! Does MyFunction() need to be a vcl function ?? HELP .... SteveM
  17. nicasa

    using bcc32 with vcl

    Hi there, I am using the bcc32 compiler provided as a free download by borland. I would like to know how to use it to build and compile apps containing vcl components. I have tried to re-compile an old windows app built using the bcb builder IDE but cannot link together all the .obj files since...
  18. nicasa

    Object Instantiation

    HI there, Essentially a C programmer, I would like to know when an object should be instsantiated on the stack and when on the free store. eg for class fred, we can create objects as follows: fred myobject; // use myobject // myobject.function(); OR fred myobject = new fred(); // use...
  19. nicasa

    database connection

    Hi there, I have recently downloaded and installed mySQL, shareware version. I am new to databases ... Q. Do I need to be connected to the internet to access the mySql server ? I have used the WinMySQLadmin1.4.exe to create a user name and password and the green light shows. local host name...
  20. nicasa

    compilation with bcc32

    Hi There, I have recently downloaded the command line free tools kit which includes the bcc32 compiler. Can I use this compiler to compile source containg vcl.h objects since I no longer have the Borland IDE to use. Or am I confined soley to console application development (no guis) ?? Thanks...

Part and Inventory Search

Back
Top