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 derfloh 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. tamara3776

    DBGrid and record count

    Hey, I was wondering if anyone already knows how to do this. After my dbgrid gets populated I would like to count the number of records that are displayed and display the record count on the form. If you know how to do this can you post an answer and help me out. Thanks
  2. tamara3776

    darker lines in a StringGrid

    Hey, I am not even sure if this is possible or not. I was wondering if there is a way to have the grid lines in a string grid show as black and not the standard grey. Any help would be appreciated. Thanks
  3. tamara3776

    TStringGrid and cell colors

    It seems like I have tried a million things and it still does not want to work the way that I need it to. If you can take a look at my code to see if you can find anything wrong I would greatly appreciate it. with (Sender as TStringGrid) do begin if (ErrList.Count > 0) then begin...
  4. tamara3776

    TStringGrid and cell colors

    I put your code into my app and tested it and it did color the cell that errored out immediately. However when I clicked on other cells they were getting colored as well. I initially used this code that you provided: Canvas.TextRect( Rect, Rect.Left+2, Rect.Top+2, Cells[acol, arow]); and...
  5. tamara3776

    TStringGrid and cell colors

    Hmmm interesting. Is the default drawing property of your String Grid set to false or true?
  6. tamara3776

    TStringGrid and cell colors

    Is there any way around the fact that the cell has to be selected for it to be colored.
  7. tamara3776

    TStringGrid and cell colors

    Thanks, I will give it a go to see if I can modify it to work with my application. Much appreciated
  8. tamara3776

    TStringGrid and cell colors

    Would this still apply even though I am using StringGrid and not a DBGrid?
  9. tamara3776

    TStringGrid and cell colors

    I am having alot of difficulty trying to accomplish this. I have a data entry form with a string grid on it. When the user hits the submit button the form will be validated and the fields with errors will be colored red. I need to know how to color the individual cells in the grid that have...
  10. tamara3776

    TSTringGrid and TDateTimePicker

    Thanks, I will give it a try and let you know how it turns out.
  11. tamara3776

    TSTringGrid and TDateTimePicker

    I am pretty new to delphi and am now starting on a new project. One of my first tasks is to put a date time picker inside of a cell in a string grid. So far no luck so if anyone could help it would be greatly appreciated. Thanks in advance
  12. tamara3776

    wodSFTP

    Hi, I was wondering if anyone has used the wodSFTP component before. It connects to a FTP server using SSH as security. If anyone has used it I would love to hear your opinions about it as I am thinking of using this for an application I have to develop. Thanks
  13. tamara3776

    Using IDFTP with SSH

    Does anyone know if it is possible to connect to an FTP server that uses SSH as security by way of the IDFTP component. I have a simple FTP app created but I need to be able to connect to a site that uses SSH. My app just seems to hang. Any ideas would be greatly appreciated Thanks
  14. tamara3776

    C Compatible String

    Thanks I will give it a try and let you know how it works out.
  15. tamara3776

    C Compatible String

    Hi Everyone, I am writing a dll for another piece of software that will only accept a C compatible string. The software will pass a string to my dll which then in turn will return a string. I have everything working fine accept that the software will not accept the string I return as it states...
  16. tamara3776

    Populate List with Query Names

    One other question. If I wanted to select multiple items in my list and have them all show in the memo field how would I go about this. This is what I have so far: var i : integer; begin memSQL.Clear; if(lstQuery.ItemIndex>=0)then begin if lstQuery.SelCount > 0 then begin...
  17. tamara3776

    Populate List with Query Names

    That is exactly what I am looking for. Thank you so much.
  18. tamara3776

    Populate List with Query Names

    Hi All, I am a newcomer to delphi and am looking for some help. I am wondering if there is a way to add the names of TQuery objects to a list box. I have several Queries in one application and would like a central area to see the queries and eventually the SQL behind them. Please let me...

Part and Inventory Search

Back
Top