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 Wanet Telecoms Ltd 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. Jalr2003

    Copy and paste nodes in a Treeview

    I checked that website and suscribed to have access to all articles but I did not find what I was looking for. I see you are the moderators of some forums there. Could you give me some direction on this? Thanks
  2. Jalr2003

    Copy and paste nodes in a Treeview

    I have been trying to find a sample code on how to copy and paste nodes in a Treeview. Can anyone help me with this? Thanks
  3. Jalr2003

    Getting cropped BLOBs when using a Select Statement

    Hi, Thaks for your answer. The problem I see with your statement is that I was able to retrieve the complete pictures straight from the original table using Borland components, more specifically, the TTable. The same TTable fails when accesing a second table created by using a Select Into...
  4. Jalr2003

    Getting cropped BLOBs when using a Select Statement

    Hello, I am using SQL Server 2005 with a table that looks like this: create table dbo.Display_Images ( pk_Image_ID int Identity(1,1) primary key, Description varchar(50) not null, Picture varbinary(max) not null, DateAdded datetime default getdate(), FileName varchar(50) null )...
  5. Jalr2003

    Components on a DBGrid

    HI, Is it possible to add components to a DBGrid? I would like to be able to set some fields in the database by using a checkbox directly on the grid. I have a field in the database that can only have 0 or 1 as the value, so I would like for the user to be able to set or unset the value in...
  6. Jalr2003

    CheckListBox question

    Sure! That might be helpful. Thanks for your help.
  7. Jalr2003

    CheckListBox question

    ...items to a checklistbox and hide some of the check boxes without hidding their text strings? I want to be able to have something like this: (a * represents a check box) * Open the book * Look for the following words: Soil Mail * Write down the definitions The idea is to have one...
  8. Jalr2003

    TCustomWinSocket

    ...Close(); int __fastcall Read(AnsiString& Response); int __fastcall Write(const AnsiString& Command); TCustomWinSocket* Socket; }; The serial communication is implemented, and works fine, and now I want to use TCustomWinSocket to create the open, close, write, and...
  9. Jalr2003

    Pipes

    Hi, Does someone have an example of how to use TAnsiClient, and more specific the following functions? WaitPostPipeCommand, and PostPipeCommand Thanks, Jalr2003
  10. Jalr2003

    Calculations in a TDBgrid

    Hi, I am new to C++ Builder, and I do not know all the jargon just yet, so please bear with me. I am using a TDBgrid to display the results from a SQL statement. The values I get look like this, NAME ITEM QTY -------- -------- --------- John Screw A...
  11. Jalr2003

    viewing procedures

    Thanks for your help.
  12. Jalr2003

    viewing procedures

    Hi, Is there a way to retreive the source code of a procedure using sqlplus? I use describe, but I does not show the code. If not, what is the best way? Thanks, Jalr2003
  13. Jalr2003

    Replacing from one file into another

    ...to insert this list looks like this: --- File 2 ---- Select field 1, field 2 from table where value in ( ******** ) / ------------------- The idea is to replace the eight asterisks in File 2 with the list from file one. I am not sure what is...
  14. Jalr2003

    Is this possible?

    Hi, I am not sure this can be done, but I ask just in case. As you know, when the ampersand sign is included in the sql statement, the user is prompted to enter the value of the variable when the query is run. Select field from table where variable='&value' What if I have a list of values...
  15. Jalr2003

    Is there something like "goto" in ksh?

    It worked. Thank you very much, Jalr2003
  16. Jalr2003

    Is there something like "goto" in ksh?

    ...2) echo "You have selected Plane " db=planes ((p_flag=1));; 3) echo "You have selected boat " db=boats ((b_flag=1));; *) echo " !!!WRONG SELECTION. TRY AGAIN " And Here I would like to make the scrip display the menu again and wait for the user...
  17. Jalr2003

    Is there something like "goto" in ksh?

    Is there a way to use labels and "goto" in ksh? how do I get a similar results with ksh? Thanks for your help jalr2003
  18. Jalr2003

    Comparing fields and deleting columns

    Thanks CaKiwi It certainly looks better! However, I just noticed something. If I have an imput like this A B C D E F G H - - - - - - - - 1 2 3 4 6 6 2 3 2 4 6 7 my output is A B C F - - - - 1 2 3 6 2 3 2 7 As you see, column B gets the...
  19. Jalr2003

    All fields delimited by commas

    ...to have my results delimited by commas. I now I can do something like this: Select FIELD1 || ',' || FIELD2 || ',' || * * * FIELD(n-1) || ',' || FIELDn FROM TABLE Is there a way to make a select * statement obtaining the same...
  20. Jalr2003

    Comparing fields and deleting columns

    Thanks for your help, I am starting learning about awk, and I am not sure how I can create the array in this case. Could you help me with that? Thanks, Jalr2003

Part and Inventory Search

Back
Top