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: *

  • Users: SLider3
  • Content: Threads
  • Order by date
  1. SLider3

    Get file Size for files > 4 GB

    What function should I use if i want to get the File size o a file and it may have more than 4 GB?
  2. SLider3

    ShellExecuteEx issue

    Hi I'm using ShellExecuteEx to run a dos program from my bcb aplication. In lpFile i put the path to the program, and in lpParameters the line with parameters. well, the dos program sends some messages to the monitor and i want to save them to a file. If I run the program in command pronpt it's...
  3. SLider3

    Fonts filename

    I have a FontDialog and i need do to know the filename of the Font selected. For example: FontDialog->Font->Name returns "Arial" but what I need is the filename: "arial.ttf". Thanks in advance.
  4. SLider3

    How do I delete all files in a folder?

    I want to delete all the files in a folder. How can i do that?
  5. SLider3

    ExecutAndWait

    My program should run another program and wait him to finish his job and only then execute the next line. How can i do this?
  6. SLider3

    is not a member of 'TForm1' ....why???

    I have one project with some source files. I have the main source file (main.cpp) and it header file (main.h) where are declared all the objects on the form. In one of the oters source files (other.cpp) i needed to use some objects in the form, so i had the line #include "main.h" to 'other.cpp'...
  7. SLider3

    bidimensional array problem

    I'm trying to make a function, that receives a "bidimensional" array (ex: a[][]) and print it. The problem is that the function could receive arrays of different size and it must print them. So, i cant declare the function like this: void printTable(int table[][5]) and the C doesnt allow me to...
  8. SLider3

    Open a file by dropping it over the form

    I want to open a file when the user drop it over the form or over a secific object. Can anyone help me?
  9. SLider3

    link mailto

    I think this should be very easy but i dont know how to do it. I've made a about box and i want to put there a text, and somewhere in that text i want the word "email" with the link to send me a email (mailto). So, my problems are: How do I put only one word with the link, and how do I make that...
  10. SLider3

    Program closes itself

    I?ve made one program that basicaly reads and writes text files. The problem is that it sometimes closes itself without apparent reason. Can someone please tell me what may be the cause of this?
  11. SLider3

    How to make a trable like this one?

    How can I make a table like this one? I want to put one table like the one is above in my BCB program but I don´t know what component use. I tryed the components StringGrid and ValueListEditor but I wasn't able to do what i want. Can you help me????
  12. SLider3

    help with Mediaplayer object

    I´m trying to make a video (also audio) player. For this i´m using the object mediaplayer, but i´m having some problems. At the moment my player only have the common buttons (play, stop, etc) and a Panel where the video is displayed. 1) Now i´m trying to implement a trackbar. For this i use...
  13. SLider3

    Mediaplayer object

    I´m trying to make a video (also audio) player. For this i´m using the object mediaplayer, but i´m having some problems. At the moment my player only have the common buttons (play, stop, etc) and a Panel where the video is displayed. 1) Now i´m trying to implement a trackbar. For this i use...
  14. SLider3

    How to make a dll?

    Hi I need a speedy dll that parses a string and returns a substring. The dll sould contain a function in order to be called by one program, like this: Parsestring(String, Ldelimiter, Rdelimiter, Number, Action) legend: Parsestring is the function name, and returns the substring. String is the...
  15. SLider3

    How to accede to options of some objects?

    Hi I´m trying to put multiple languages in my program and to do that i need to change Captions of some objects and other things. Well my problem is chnging the caption of some ojbects. I want to change: - the caption of the tabs of a TPageControl - the items of TComboBox I also want to accede...
  16. SLider3

    Hello! I want to read a file wit

    Hello! I want to read a file with a specific text format to a struct (or array of structs...) and than write it to a new file. The text format of the file is: {int}{int}string\n Some example lines: {12}{34}The text i want {56}{105}More and more text This is parte of my code: typedef struct...
  17. SLider3

    PageControl problem

    Hello! I put a TEdit called "show_text" into the form (Form1). In Unit1.cpp (the principal code file) i call a function called "Show" that is in other code file("other.cpp") and i put the prototipe of "Show" in Unit1.h (uni1.cpp header file). The funtion...
  18. SLider3

    Hello! I´m using Borland C++ Bui

    Hello! I´m using Borland C++ Builder 6 Enterprise Edition to do my programmes but i think it is quite limited at graphic level (or i don't use it right....probably this). I want that my programms have a Windows Xp design. Do you see what i mean? Look to this image: I would like to know how...
  19. SLider3

    4 Questions

    Hello, please help me with this doubts How can I give to my bcb programmes a look more Windows XP? All the buttons had a look like Win98 and i dont like it :( What can I do to a TEdit box don't accept numbers bigers then 60??? If I had a 9 in there it will only accept a 5 (foe exemple) if...
  20. SLider3

    Static Linking

    When I compile a programme with Borland C++ it creats a exctutable. But this executable needs other files to work (like vcl60.bpl, vclx60.bpl, etc). How can I make a executable that don't need any other file to work? PS: I saw something about Static linking but I don't know how to do it. Please...

Part and Inventory Search

Back
Top