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 TouchToneTommy 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. RobPouwelse

    Language problems

    Hello, I have a problem where the crystal report developer displays the right language on its reports (Dutch) and the crystal report server displays those same reports in English or US language. For example, the Dutch notation of a date would be 20/10/2005 (20th of September 2005) whereas the...
  2. RobPouwelse

    CR Server installation problem

    Hi, I've recently got Crystal Reports XI Developer and tried to install the Crystal Reports XI Server that came with the package on a Windows 2k3 Server with Small Business server installed. The problem that arises is the fact that I can't seem to be able to have CR XI Server installation log...
  3. RobPouwelse

    Translate error: Value out of bounds

    Hi, I've been trying to read records from an omnis database (from raining data) into delphi for editing and inserting into an access database. The problem that I've run into is that as soon as I try to retrieve the value of a date type field, the program stops with the error "Translate error...
  4. RobPouwelse

    What am I doing wrong?

    I am currently running the evaluation version of CRServer and CRXI and have undertaken the following steps. - Installed CRServer and let it install/create a CMS for me. I have also installed both the .NET and the Java viewers. - Installed CRXI on the same pc and made a simple report which I...
  5. RobPouwelse

    Query performance greatly decreases with linked tables?

    Hello again, I have noticed that when I use linked tables in a report using CR XI, that the performance greatly decreases. A report with 2 tables (3234 and 967 records respectively) will take about 190.000ms to compile (thats about 3 minutes). If I add another table to it, the compile time will...
  6. RobPouwelse

    Report viewer does not take parameters

    Hello, I have a question regarding the report application server (RAS) which should be able to generate reports using report templates made with Crystal reports. Whenever I open a report (through the default ePortfolio) that requires parameter input, I don't get any prompt whatsoever. Instead...
  7. RobPouwelse

    Databases are just plain weird..

    I've got a strange one!! :-) I'm using a DBGrid, Datasource and a Table. Datasource.Dataset = Table; DBGrid.Datasource = Datasource; So, DBGrid shows Table.. I've made Table active so i can change the contents of the database. Now the weird part comes in :-) When i change a record and i exit...
  8. RobPouwelse

    String to TString... is that possible??

    I need to sort a database (OnButtonClick) i'm now using query's to do the job, but for some reason it doesn't take this, it wants a Tstring instead of a string. When i used a Memo before to insert my own SQL query it worked perfectly, but when i do it like this (so the user doesn't have to know...
  9. RobPouwelse

    Finding a File

    I have a made a program which uses a config file for certain variables (just a normal textfile with .cfg :)) Then problem is that i can only specify the location of the .cfg in my program.. i cannot genarate it, i could do it if i knew how to search my ENTIRE pc for that file. but the FindFirst...
  10. RobPouwelse

    TDBGrid problems

    I've got a TDBGrid in which i am able to chance an existing database (.db) and in which i can "save" it as a document (.txt) and directly upload it to a server (through NMFTP), after that it deletes the document (so only the database remains) when i "convert" the database it...
  11. RobPouwelse

    It's not Streaming and it's not FTP... what is it??

    I need to convert my Database into a Textfile.. That works I need to have that Textfile on a FTP.. That works Now i need to do it without having that Textfile on my PC.. ermmm?? what i basicly want is this : NMFTP.Upload(AssignFile (F,Txt_Aangeboden);Rewrite (F);Table1.First;while not...
  12. RobPouwelse

    How to connect to a FTP server??

    How can i connect to an FTP server using Delphi 4? I need to input the location, user and password. Is there a function like for instance: FTPConnect(Loc,Usr,Pass); tnx
  13. RobPouwelse

    How do i add a component??

    I have donwloaded a program (Tetris) for delphi with sourcecode (freeware) It uses it's own component.. But i don't know how to add a component..Heck, i don't even know what extension a component has (user made).. is it .dcu?? i looked in the delphi help but it only says how to create one...
  14. RobPouwelse

    Easy encryption of Text

    Is there an easy way of encrypting and decrypting text?? I searched the web.. and found one who moves bits around.. ?? i didn't understand a word :) so, i need an easy method of encrypting and decrypting TEXT it doesn't have to be a 128bit ecryption key and such.. But it has to be easy enough...
  15. RobPouwelse

    .DB to .TXT

    I need to convert a .db file (Paradox 7) to a text file. I know the architecture of the text file must be cell[tab]cell[tab]cell[tab]cell (eol) cell[tab]cell[tab]cell[tab]cell (eol) until i get to (eof).. the problem i have is: How can i get that cell information? the only function i found...
  16. RobPouwelse

    How can you scroll a DBGrid with a Scrollwheel??

    the Subject tells it all :D i've got a working DBGrid (thnx to "Basiscursus Delphi 4 from Maarten Stefanski") it does have a scrollbar.. but i can't scroll through it using my scrollwheel.. any thoughts about it?? then please reply :D
  17. RobPouwelse

    Values accumelate automaticly??

    Next one :).. I'll try and explain what's the problem here.... First you got the old FUNCTION ================================================ function Func_from (Str1, Str2 :string):string ; var index, StrLength : integer; begin index := pos( Str1, Str2 ) + 5; if index <> 0 then begin...
  18. RobPouwelse

    Simple Function implementation (or so i thought)

    I'm back.. :):) and with a new error (for me).. [Error] Unit1.pas(24): Unsatisfied forward or external declaration: 'TForm1.Func_from' What am i doing wrong here?? I know it's something with Func_from (it's placement?) but i already tried placing it in {public decleration} or removing it...
  19. RobPouwelse

    Taking Strings out of a text

    Hi, i'm a newbi to Delphi (i know a bit TP and C++, you know, standart stuff) I need to extract certain parts from a text (repeatative text) and put it in a database.. (The database part i'll worry about later) But i haven't found a way to &quot;search&quot; the text file for every occurance of...

Part and Inventory Search

Back
Top