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 strongm 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. shilpashetty27

    Update links to ODBC tables using Linked Table Manager

    Hi All, I'm new to MS Access and have been trying to update the links to the ODBC tables in my database. I'm trying to do this using the Linked Table Manager option by right-clicking on the ODBC table I want to update. I'm then prompted for choosing a DSN and then a data source. Can anyone...
  2. shilpashetty27

    Filtering for Unique Fields in a Table

    Hi, I've been trying to accomplish the following in MS Access: From the following table, I'm trying to filter out any duplicate 'Column B' values. For the unique 'Column B' values, I want my query to return the corresponding 'Column C' values. Column A Column B Column C 1 abcd stuv 2...
  3. shilpashetty27

    Comparing 2 columns in a particular table

    Hi, I'm trying to compare two columns in one particular table. To be more specific, I have 3 columns as shown below: Column 1 Column2 Column3 1 abcd efgh 2 efgh mnop 3 ijkl abcd 4...
  4. shilpashetty27

    Filtering for UNIQUE records in one table

    Hi all, I've been trying to accomplish the filtering out of duplicate data in the following table. ID Name Code 1 x Pink 2 y Red 3 z Orange 4 z Orange From the table above, I'm trying to filter out duplicate 'Name' fields and obtain only unique 'Name' fields with...
  5. shilpashetty27

    Linker Error in Borland

    Hi all, Here's the linker error I'm presented with in my Borland project. Any ideas what the file in the error message is? [Linker Error]Unable to open file 'PROCONST.R32' Thanks for your help in advance cheers, Shilpa
  6. shilpashetty27

    Array of objects

    Hi all, I’m trying to create an array of a string object whose contents I need to access later. To be more specific: string data[] = {“10”,”11”, “12”}; Using a for loop I want to access the first, second and third element of the array above. As I understand it, the above declaration is...
  7. shilpashetty27

    Reading a text file

    Hi all, I’m trying to read the contents of a text file and attempting to compare each content with a particular number in a pre-defined array. I’m unable to proceed as I’m stuck with how I can read contents that are specified in various formats. For eg: below is a sample of how the contents of...
  8. shilpashetty27

    File Position Pointer

    Hi all, A little background on what I'm trying to do. I've created a file with 5 lines, 3 numbers on each line. I intend to read only the second number of every line and then jump to the newline. For eg: Line 1: 1 2 3 Line 2: 4 5 6 Line 3: 7 8 9 Line 4: 1 2 3...
  9. shilpashetty27

    multiple selects using TRadioButton

    Hi All, As i understand it, it is not possible to select more than one option in a TRadioButton component. Any ideas on what I need to use to be able to select more than one option at the same time in a RadioButton component. If it's not possible to achieve this with a RadioButton, can you...
  10. shilpashetty27

    control that will open a text file in the default text editor

    Hi all, I need some pointers on file handling in Borland. I’m trying to create a button that will open a file in my default text editor. Not sure if there is a BCB function that can handle this. The file to be opened is created using the OpenDialog control. Thanks in advance for your...
  11. shilpashetty27

    mouse over events in BCB5

    Hi all, I'm trying to create 'mouse over events' that will pop-up a 'help' menu describing the function of the control that the mouse is pointing to on my form but not sure how i can go about it. Can anyone please give me some direction/ideas? Thanks in advance for the help! cheers, Shilpa
  12. shilpashetty27

    structures in C

    Hi all, Can anyone please enlighten me on what the following initialization means. I have not come across this kind of declaration thus far and not sure what it does or means. struct { int event :3; //not sure what this initialization means bool flag :1; }; Thanks in advance! Shilpa
  13. shilpashetty27

    Highlighting in RichEdit

    Hi all, I've been trying to achieve the following, with no luck whatsoever. I have a RichEdit control, a button and an edit control on my form. After i type something in the edit control and hit the button, I want that typed data to show up on the RichEdit control as highlighted data. Any...
  14. shilpashetty27

    use of the 'this' keyword as a constructor parameter

    I'm not sure what the 'this' keyword does when used as a parameter in a constructor. For example, pls consider the foll: class shape { private: int color; int dim; public: shape(); shape(int i); ~shape(); }; int main() { shape(this); } I'm not sure what the 'this' keyword...
  15. shilpashetty27

    Pagecontrol in BCB5

    Hi all, can anyone please clarify what the following C++ Borland code does or means? PageControlChange(this) Thanks in advance! cheers, Shilpa
  16. shilpashetty27

    Error message in Borland c++ Builder

    Hi all, My Borland ++ Builder project displays the following error after compiling and linking: 'Project example.exe raised exception class EListError with message 'List index out of bounds (1);. Process stopped. Use Step orRun to continue'. Can someone please enlighten me on how I can get...
  17. shilpashetty27

    RadioGroup in Borland Builder

    Hi, Does anyone know how I can make one of the 'Items' of a 'RadioGroup' component in Borland invisible. To be more specific, my RadioGroup has 4 items, one of which must become invisble in response to an event. I'd appreciate it if anyone could tell me how I can go about doing this. thanks...
  18. shilpashetty27

    viewing forms in Borland

    Hi all, I've not been able to view a form that i saved in my borland project. I was able to view it when i opened the project and was working on it, but I must have unknowingly hit a key accidentally that has made my form completely invisible. When i click on the 'View' menu and select...
  19. shilpashetty27

    multiple tabs in Borland Builder

    Hi all, I'm trying to create multiple level of tabs in my gui application. To be more specific, I want to create a set of 4 tabs, on selection of one of those 4 tabs, i want to be able to select from another set of 1 to 4 tabs. I'm not sure if this can be accomplished, and if it can, I would...

Part and Inventory Search

Back
Top