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: Jalr2003
  • Content: Threads
  • Order by date
  1. 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
  2. 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 )...
  3. 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...
  4. 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...
  5. 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...
  6. Jalr2003

    Pipes

    Hi, Does someone have an example of how to use TAnsiClient, and more specific the following functions? WaitPostPipeCommand, and PostPipeCommand Thanks, Jalr2003
  7. 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...
  8. 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
  9. 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'...
  10. 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...
  11. 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
  12. 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...
  13. Jalr2003

    Selecting fields without null values

    I have a table like this primary_key param1 param2 param3 param4 param5 param6 param7 1 10 3 5 3 7 2 3 4 12 4 4...
  14. Jalr2003

    Comparing fields and deleting columns

    I have the following file A B C D E F G - - - - - - - 1 2 3 4 5 6 7 1 3 3 4 8 6 8 I want to compare lines 2 and 3 column by column, and print the complete column when those two values are different. In this case, the intended output would be B...

Part and Inventory Search

Back
Top