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 strongm 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. sancho1980

    linker error when build5ng dll using borland compiler

    hi i'm trying to build a windows dll with the borland command line tools. the dll makes use of standard lib functions; the headers are all included and also the path to the library files is handed over to the linker but every time i try to build the dll, i'm getting the following linker error...
  2. sancho1980

    trouble getting my sp done

    hello i'm having touble getting my sp done. the problem is as follow..i've found an sp tokenize (which works fine) with the following signature: CREATE PROCEDURE TOKENIZE ( S VARCHAR(10000), DELIM CHAR(1)) RETURNS ( ID INTEGER, TKN VARCHAR(10000)) AS DECLARE VARIABLE I INTEGER; DECLARE...
  3. sancho1980

    writing a custom collation driver

    Hi I'm really desperate; does any of you have experience with writing a custom collation driver for Interbase? I've downloaded a paper describing how to do that with examples included but I don't get it all up and running; the URL is...
  4. sancho1980

    cannot transliterate between character sets

    Hello, I'm trying to convert a paradox table into an interbase table where my char fields in the interbase table have the unicode_fss charset and now every time i read a field in the paradox table with special characters (like the german ö) and then try to store it in my ibdataset (under delphi)...
  5. sancho1980

    inserting into tibtable

    Hello, can any of you help me, please. I have a paradox database which I'm trying to convert into an interbase database (called PROTODIC.gdb); I'v made my definitions with IBexpert and now I'm trying to insert a record into one of the tables of that new database. So I added to my Delphi data...
  6. sancho1980

    connection to remote database

    Hi, you sure know these database aliases in delphi, right? Now, if I open the database explorer and select one of the aliases, I find a parameter called server which is where the given database is located, right? Now, I was trying to connect to a remote database using this alias so I just tried...
  7. sancho1980

    interbase restrictions

    Hello I was trying to create an interbase table with the following sql statement: CREATE DOMAIN "TSTR100" AS VARCHAR(100); CREATE DOMAIN "TSTR10" AS VARCHAR(10); CREATE DOMAIN "TSTR15" AS VARCHAR(15); CREATE DOMAIN "TSTRMAX" AS VARCHAR(32000); CREATE TABLE haupteintraege ( ID INTEGER NOT NULL...
  8. sancho1980

    how do i edit paradox relationships

    Hello I've got a simple question: If I want to define a Paradox database with relationships, do I have to buy Corel Paradox or is there other kind of (free) software that does the trick? Thanx, Martin
  9. sancho1980

    delphi and database problem

    Hello people I do have a problem with Delphi and databases so I didnt know whether to post this in the Delphi or the Database forum so I just decided to post it in both. I have defined a database in Access which has several tables (which are not all relevant for my question), anyway this is...
  10. sancho1980

    how do i disable window-closing?

    If I have a TForm object, it by default closes when I click on the X of the window, right? There must be a way of disabling that, is there? I was looking like mad for an appropriate property but wasn't able to find it... Thanx, Martin
  11. sancho1980

    using UNICODE, please help, I'm sure some of you can help

    Hello, I'm new to Delphi. I'm trying to write a vocabulary trainer of my own. Do you mind helping me out? Suppose I have written a vocabulary list in the windows editor and save it as a .txt - file using the UTF8-encoding. Now, even loading that document into a TMemo text field doesnt work...
  12. sancho1980

    create()-probs

    Hello people, as I said, I'm new to Pascal but what I'm encountering now really goes beyond my capacities. What I'm trying to do in the following snippet is simply create objects of my own TEntry class and then insert them into a TList but it seems like every time I invoke Create I get the same...
  13. sancho1980

    inheritance

    Hi! I have made the following 3 definitions in one unit: type TEntry = class private FTarget: WideString; FSource: WideString; public property Source: WideString read FSource write FSource; property Target: WideString read FTarget write FTarget; end; type PEntry =...
  14. sancho1980

    converting a string to an array of WideChar

    Hi does any of you have an idea how convert a string to an array of WideChar and viceversa? Thanx, Martin
  15. sancho1980

    how do I get round the string copy-on-write technique?

    Hi, I'm very new to Pascal and I'm actually learning it because I need to do something in Delphi. I've worked with C and JAVA before where I wouldn't have had to ask this question actually: As I understand it, if you have a string variable in Pascal referenced by 2 variables and then change the...

Part and Inventory Search

Back
Top