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 Rhinorhino 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: LastCyborg
  • Content: Threads
  • Order by date
  1. LastCyborg

    SQLConnection.State

    This component has an event that it supossed to be raised when the state changes, but it doesn't works. I have been checking it by unplugging the network when the App is running What am I doing wrong? //The connection is ok I have coded this: private void sqlConnection1_StateChange(object...
  2. LastCyborg

    WinControls -> properties and methods

    I'm moving from Borland C++ Builder to VS.NET (C#). I have not had problems with sintax neither the IDE, my problems are the name of the Win Controls. Do you know a place where I can Download a good tutorial? Where can I get a sample of using of every control in the ToolBox? Like DataSets...
  3. LastCyborg

    C++ Builder Migration

    As you know I have been programming by using BCB for a few years, but I haven't been very happy because Borland prefers Delphi than BCB. In our carrer, you know that technology changes very fast, so if something new is released, the old technology go to the trash and it is not going to be...
  4. LastCyborg

    Date question

    I have a Field that contains a Date, but I need to show that Date plus 8 days, is there an easy way to do this or I have to code the function? Example: RecordField = 01/01/04 DataToShow = 09/01/04 The problem is when I have to change the mont or year, etc --- LastCyborg ---
  5. LastCyborg

    problem with OpenPictureDialog / CD serial Number

    If I put an OpenPicureDialog (using the default configuration) on my form and I click twice on it,I see the preview working very well. But when I run my App some filters dissappear. And if I remove the filters and I just put for jpg's it fails why?? Do you know how can I retrieve the CD serial...
  6. LastCyborg

    What about C++Builder for .NET ?

    Why Borland hasn't released a version of BCB like in Delphi for .NET? Maybe they are excusing with C#Builder. Sometimes they make me think I should migrate to Delphi.
  7. LastCyborg

    Query to MS Excel

    How can I export a Query to MS Excel?
  8. LastCyborg

    Query to MSExcel

    I'm programming a DataBase which has some queries, but I need an option to export a query to MSExcel. How can I do that?
  9. LastCyborg

    TStringList as a paramater

    Is there a way to pass as a parameter an instance of a TStringList Class??? In other words I need to create a class constructor that has it as parameter. Here is some code of what I'm doing //--------------------------------------------------------------------------- .h...
  10. LastCyborg

    MDI Problem

    I'm making an MDI editor, but I got some problems with the save as, print and others functions The problem is that when I have >=2 new sheets and I choose the save,save as or print functions this functions don't work with the active child window. For example if I have 3 sheets and the caption...
  11. LastCyborg

    Associating a file extension to my app

    How can I associate certain file extensions to be opened with my application? like .doc with MS Word, .txt with notepad, etc --- LastCyborg ---
  12. LastCyborg

    Associate extensions to my app

    How can I associate certain file extensions to be open with my application? like .doc with MS Word, .txt with notepad, etc --- LastCyborg ---
  13. LastCyborg

    /bMDI Editor, active child?/b

    I'm making an MDI editor, but I got some problems with save as function The problem is that when I have >=2 new sheets and I choose the save,save as or print functions this functions don't work with the active child window. For example if I have 3 sheets and the caption for each one of this...
  14. LastCyborg

    Sending mails using NMSMTP

    Days ago I saw that somebody was trying to send mails, and he said that chose SMTP, I tried to do the same, but I have some problems. First, I don't know to much about Internet applications, so what should I put in the host property? Can I make that when the user choose to send a mail my...
  15. LastCyborg

    Language for MessageDlg

    I was programming my own dialogs, but i think that should be an easier way to do this How can I change the language for the Dialogs? I mean when I put this code -> MessageDlg (&quot;Any String&quot;, mtConfirmation, TMsgDlgButtons ()<<mbYes<<mbNo,0) a Dialog Message appears but the caption...
  16. LastCyborg

    Delphi Vs C++Builder?

    Why do u think that Delphi is better than C++Builder? What are the disadvantages of C++Builder? ---LastCyborg---
  17. LastCyborg

    Selecting the form

    Sometimes when u have the form covered with components is almost impossible to select the form (specially when u use alClient aligment). Ther are 2 ways to get select the form: 1.- Using the ComboBox in the object inspector 2.- Select any component and hit ESC Pressing the Esc key you select...
  18. LastCyborg

    Dll's for application

    Days ago I saw in a forum a MS-DOS instruction to list all the needed files (Dll, bpl, etc) to run a program. Do u know that instruction? ---LastCyborg---
  19. LastCyborg

    ListBox Component

    I have this component in a frame, but i cannot make reference to the index of it. I have something like this var selIndex = ListBoxName.getSelectedIndex (); if (selIndex == 1) //element Index number 1 { movieClipName.gotoAndStop (selIndex + 1); } it should go in the movi clip to the frame...
  20. LastCyborg

    Movie clip keep playing

    I want that a mc play his animation when mouse rolls over it, then if mouse rolls over out, the mc must to be playing until certain frame, and if mouse is out play in the same mc another frame number is it possible? ---LastCyborg---

Part and Inventory Search

Back
Top