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

    Multimedia programs

    Hello everybody: How you know there are hundred of thousands delphi multimedia componentes, but my question is: There are some good programs using them ? I want to do a very well looking multimedia program, a program that can surprise everybody for its beauty. And, of course, I want to see...
  2. wrov

    USB port and DOS

    Hello everybody Do you know how to print on a USB printer using FoxPro 2.5 for DOS ? Is it possible ? The DOS programs think that the printer is connected to the LPT1 port. There is some way for send the output to a USB printer ? Thanks a lot. Walter.
  3. wrov

    How to use the modem ?

    Hello everybody How I can use a free table .DBF which is in other computer, connected by modem ? What I need for use that table ? Thanks in advance. Walter.
  4. wrov

    RLock() is not working

    Hello everybody I'm having a problem on a net. Records seems not be locked. Computer #1 ----------- USE \\NANCY\C\SISTEMAS\USUARIOS SHARED =RLOCK() BROWSE FOR ISRLOCKED() The first record is showed. That's ok. Computer #2 (a few seconds later) ----------- USE \\NANCY\C\SISTEMAS\USUARIOS...
  5. wrov

    Delphi and FoxPro

    Hello everybody: In FoxPro you can write: Procedure OpenFiles Parameters TableName USE &TableName Return And, in your main program write: do OpenFiles with "CUSTOMER" Is possible to do some like that in Delphi ? Thanks in advance Walter.
  6. wrov

    How to use variables in QReports ?

    Hello everybody Do you know how to use variables in QRreports ? By example: if I had a var named CustomerCode in the file Customer.pas, how can I use it in a report (in the Title band) ? Thanks in advance Walter.
  7. wrov

    Forms always on top

    Hi everybody Is there a way to do a form "always on top", no matter that the user does ? In another words: if the program Advice.exe is running then the user can't use Word neither Excel neither nothing more than Advice.exe The idea is the following: The SysAdmin send a message to a...
  8. wrov

    Program for Cybercafe

    Hello everybody I'm writing a program for a cybercafe. My question is: How I can send and receive data from the computers ? In another words: I need a way of communicate with them, esentially send and receive files Thank you very much in advance Walter.
  9. wrov

    Cells of a DBGrid

    Hello everybody Is it possible that a cell in a DBGrid be ReadOnly or not according to a condition ? For example: if the first column have a value of 10 then the second column will be ReadOnly. I had tried the following code in the OnCellEnter event: if Customer['CATEGORY'] = 10 then...
  10. wrov

    SetKey with FoxPro files

    Hello everybody Do you know why SetKey is not working with FoxPro files ? The message 'Capability not supported' is showed after the lines: Customer.IndexName := 'CUS01'; Customer.SetKey; However, writing: Customer.Close; Customer.IndexName := 'CUS01'; Customer.Open; works...
  11. wrov

    Move to a Column

    Hi everybody Do you know how to go to a column in a DBGrid ? If the cursor is in the column #1 and the user press the ENTER key: how to do for move the cursor to the column # 5? Thanks in advance. Walter.
  12. wrov

    FoxPro index files

    Hello everybody Somebody knows how to work with FoxPro index files ? I need have 2 indexes but I dont know how to do it. If working with Paradox files, no troubles. But I cant work with FoxPro indexes, because Delphi not allow me use them. Thanks in advance. Walter.
  13. wrov

    Hi everybody I'm writing a progr

    Hi everybody I'm writing a program for a cybercafe and would need know how to kill the Internet connection of any computer in the network of the cybercafe. In another words: - Allow a computer to connect - Kill the connection Thanks in advance Walter.
  14. wrov

    Objects properties

    Hello everybody There is some way of know which objects are in a form ? I want to know the name and the class of each object for change his properties. By example: - To change the forecolor of all labels to blue and the backcolor of all textboxs to white Thanks in advance Walter.
  15. wrov

    Folder's date

    Hello everybody There is some way to know in which date a folder was created ? The ADIR() function does not work in NT/2000/XP (because it return the date of the last modification, not the date of creation). Thank you very much in advance. Walter.
  16. wrov

    Questions about grids

    Hello I have 2 questions about grids: 1. There is a way to have all columns of a row highligthed (maybe in blue) in a grid when the cursor is in that row and the grid has the focus ? 2. There is a way to have a row highligthed in a grid AFTER the grid has lost the focus ? (In another words...
  17. wrov

    Use of WinZip with Visual FoxPro

    Hello I want that my application can do a backup without the user action. The idea is the following: - When the user hit the "Exit" button, my program (using WinZip or another program like it) will do a backup of the databases and tables. Of course, it could be as...
  18. wrov

    Click on the report's printer button

    Hello If I have this instruction: report form MyReport preview There is some way to know if the user has clicked the printer button or just saw the report in the screen ? Thank you in advance Walter.
  19. wrov

    Grid for data entry

    Hello I need to input data in a GRID which columns are not in the same order that the table. If I write the instructions: with ThisForm.Grid1 .RecordSource = "CUSTOMER" .Column1.ControlSource = "PHONE" .Column2.ControlSource = "EMAIL" endwith I...

Part and Inventory Search

Back
Top