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 SkipVought 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: serkanb
  • Order by date
  1. serkanb

    binding windows meta file to resource file

    Does anyone know how to bind wmf file to a *.res file? Thanks for your replies...
  2. serkanb

    nested TCollection

    I used TCollection inside of TCollection. The inner collection's items couldn't keep their values. For example if I quit from Delphi and open the project again the inner collections boolean and integer items returns to zero. But the string items keeps their values. What can be the problem...
  3. serkanb

    how can I bind bitmaps in my component?

    I found the problem. I used *.dcr file to keep bmp's. When I carried them into *.res file the problem was solved. Thanks...
  4. serkanb

    how can I bind bitmaps in my component?

    Hello. I have a problem like this: I created a class that inherited from TImage. This component keeps some bitmaps and shows them at the runtime. I create bitmaps at the components constructor procedure. And then load them from bitmap files. Like this: constructor TSBMotor.Create(AOwner...
  5. serkanb

    Copy from Fat32 to fat16

    I have a backup on fat32 filesystem. When I tried copy them to another fat16 disk, I couldn't read the files correctly. There is WinME on source harddisk and DOS 6.22 on destination harddisk. To copy process I used WinME on source harddisk. After copy process I reboot from destination harddisk...
  6. serkanb

    Can't write to floppy disk

    Here is my problem: I mounted floppy... 'mount -t msdos /dev/fd0 /mnt/floppy and coppied a file to floppy 'cp anyfile /mnt/floppy' when I use ls comman I could see the file 'ls /mnt/floppy' but when I tried to see the file from Windows I could't see it. What's wrong here? Could you...
  7. serkanb

    Can't write to floppy disk

    Here is my problem: I mounted floppy... 'mount -t msdos /dev/fd0 /mnt/floppy and coppied a file to floppy 'cp anyfile /mnt/floppy' when I use ls comman I could see the file 'ls /mnt/floppy' but when I tried to see the file from Windows I could't see it. What's wrong here? Could you...
  8. serkanb

    Modem to modem data tranfer

    Hi everybody! I have to transfer a group of data beetween two computer via modem. I'm going to write a program like this: A listener program waits call from client computer. After establishing connection listener program takes data from client and store it in MSSQL2000 database. Here is my...
  9. serkanb

    Is there any easy way to give grant privilage ?

    karluk you are wrigth. I got them into SQL plus buffer with "get" command. "@scriptfile" command is working... thanks...
  10. serkanb

    Is there any easy way to give grant privilage ?

    Thanks "karluk"... I've used your code I have a script a script now : " GRANT CREATE TABLE, CREATE SESSION, CREATE SEQUENCE, CREATE VIEW, CREATE PROCEDURE TO ggurkas; GRANT CREATE TABLE, CREATE SESSION, CREATE...
  11. serkanb

    I have to write a class that have t

    I have to write a class that have transparent background. I know that TImage have transparency property. So I wrote a class that inherited from TImage which draws an ellipse. Like this: TMyControl=class(TImage) private procedure MyMouseDown(Sender: TObject; Button: TMouseButton...
  12. serkanb

    Is there any easy way to give permission ?

    I have a "USERS" table on Oracle 7 (for Sun Solaris). There is ~70 user in this table. I have to give connect permission for these users. I wrote a SQL command like this: "select 'GRANT CREATE TABLE, CREATE SESSION, CREATE SEQUENCE, CREATE VIEW, CREATE PROCEDURE TO' name from...
  13. serkanb

    Is there any easy way to give grant privilage ?

    I have a "USERS" table on Oracle 7 (for Sun Solaris). There is ~70 user in this table. I have to give connect permission for these users. I wrote a SQL command like this: "select 'GRANT CREATE TABLE, CREATE SESSION, CREATE SEQUENCE, CREATE VIEW, CREATE PROCEDURE TO' name from...
  14. serkanb

    Debug problem

    When I tried to debug my program,I've get this error message. "One or more breakpoints cannot be set and have been disabled. Execution will stop at the begining of the program." Loaded 'C:\WINNT\System32\ntdll.dll', no matching symbolic information found. Loaded...
  15. serkanb

    Delphi , CGI, APACHE

    Thanks bonnScott I love PHP very much but It hasn't got a powerfull IDE tool so I couln't use it effectively. I feel good when I use Delphi like IDE's. I'm going to try it with Kylix. thanks....
  16. serkanb

    Internal Server Error and Delphi and CGI

    Thanks ifincham, I've added this line into httpd.conf file. "AddHandler isapi-isa .dll" It isn't genarate "Internal Server Error" now. But now, I counldn't see anything in IExplorer. It tries to execute my .dll file but It's waiting all the time. I've also compiled...
  17. serkanb

    DELPHI, CGI, APACHE

    Hi everybody! I've written a simple "Hello world!" CGI application with Delphi 6. Then I've coppied it Apache's /cgi-bin directory. When I try to run CGI aplication from Internet Explorer an error message occure. For example: http://localhost/cgi-bin/hello.dll/hello Internal...
  18. serkanb

    Delphi , CGI, APACHE

    Hi everybody! I've written a simple "Hello world!" CGI application with Delphi 6. Then I've coppied it Apache's /cgi-bin directory. When I try to run CGI aplication from Internet Explorer an error message occure. For example: http://localhost/cgi-bin/hello.dll/hello Internal...
  19. serkanb

    Internal Server Error and Delphi and CGI

    Hi everybody! I've written a simple "Hello world!" CGI application with Delphi 6. Then I've coppied it Apache's /cgi-bin directory. When I try to run CGI aplication from Internet Explorer an error message occure. For example: http://localhost/cgi-bin/hello.dll/hello Internal...

Part and Inventory Search

Back
Top