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 Mike Lewis 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

    Hi there, Is it possible to add 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...
  8. Jalr2003

    TCustomWinSocket

    Hi, I was wondering where I could find good help on how to use TCustomWinSocket. I am trying to write an application that sends commands to a device using its Ethernet Port as well as its serial port. I created a base clase with pure virtual functions that includes four functions for...
  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

    Hi, I imagine this is a trivial question for you. I am writing a ksh script that prompts the user to enter several IDs and then stores it into a file, so the list can be used within a sql statement. the file looks like this: --- File 1 ---- '12323kkk', 'teerkkwe', '445kksk3', 'sdfdkkkk'...
  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?

    PH, Actually what I am trying to do is to echo a menu with some selections, read the keystroke and save it into a variable. Then I use a case statement to perform several actions according to what was selected. The problem is when the user enters something wrong. I want the scrip to show an...
  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

    I have a table that has a lot of columns and I want 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...
  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