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

    Console app parent

    Hello Does anyone know if/how I can set the parent of a console app. I run a console from another exe and I want the console to finish when the main app closes. Any ideas Andrew
  2. goodmanrAy

    Intraweb - application mode - stateless

    Hello I have inherited an intraweb project that has been written for mobile devices. My problem is that it has been developed in application mode. Due to the nature of mobile devices (coverage issues, timeout problems) the project needs to be changed to a stateless model. Does anyone know if it...
  3. goodmanrAy

    SQL Server Developer Client Database

    Hello I've recreated an SQLServer database on my home pc using SQL Server Developer. I'm now trying to connect to this database using delphi. Does anyone have an idea of what my connection string should look like? As there is no server as such? Any help greatly appreciated. Thanks Andrew
  4. goodmanrAy

    Target Page?

    Hello I'm pretty new to web development. I've created a site which uses a Microsoft Border for the top and bottom. Top holds the navigation menu for the site. I then used the "include page" component to add the left and right borders. My problem is that I only want the left and right pages...
  5. goodmanrAy

    User that has a file locked

    Hello Does anyone have any ideas on how I can find out the name of a user that has a file locked. Cheers Andrew
  6. goodmanrAy

    Replicate table onto another server

    Hello Does anyone know if it is possible to replicate a table onto 2/3 other databases on different servers. The reason: need to run a join on two tables from two different databases on two different servers. thanks Andrew
  7. goodmanrAy

    Select with If?

    Hello I am unsure if this is possible, but I'll give it a bash. I have a query select MML.ChangeID,MCCTT.ChangeToDesc from MaceMaterialLog MML Left Outer Join MaceChangesLog MCL on MML.ChangeID = MCL.ChangeID Left Outer Join MaceChangesChangeToTypes MCCTT on MCL.ChangeToID =...
  8. goodmanrAy

    Order By, Group By

    Hi Is it possible to Group together fields then order by a different field. e.g. I have 2 columns ID1 - ID2 A - 3 A - 4 A - 5 B - 1 B - 6 C - 2 C - 7 I want to group by ID1 but order by ID2 i.e I want out B - 1 B - 6 C - 2 C - 7 A - 3 A - 4 A - 5 in that particular order...
  9. goodmanrAy

    OLE internet explorer save as

    Hello I am creating an instance of internet explorer via OLE. I was wondering if anyone knows how to carry out a 'save as' on the active web page. uses ComObj; var IE : Variant; IE := CreateOleObject('InternetExplorer.Application'); IE.Visible := true; IE.Navigate('web...
  10. goodmanrAy

    Read-only problem using a frame in Excel

    I have created an excel 97 spread sheet which has a "microsoft forms 2.0 frame" on it. When I change the excel file to read-only (it's going to be used by multi users), the work sheet crashes with an acess violation. Has anyone else come across this problem, any ideas on getting around it...
  11. goodmanrAy

    Multipage, tab between pages

    Hello Does anyone know how I can set up a multipage component to just tab between the pages in the multipage, not to tab to the components on the pages. Working in excel 97, using a Microsoft Forms 2.0 multipage Cheers Andrew
  12. goodmanrAy

    CommandButton event within a Frame (Excel)

    Hello I am writing a user interface for excel. I have a CommandButton which is placed on a Frame (using Frame Object > Edit). I am struggling to find out how to access the click event for the CommandButton on the frame. When I double click it in design mode, it doesn't create a click event...
  13. goodmanrAy

    Child Form, Parent Form On Close focus

    Hi I am writing an app which needs to alert a user at some point in it's process. I am creating a child form to alert the user, I want the child form to pop up as the top most window and stay there until closed. I have managed to acheive this by override on the procedure CreateParams...
  14. goodmanrAy

    Internet Header

    Am writing a application which tracks an emails life, i.e. 1. Receive email from client 2. reply to email 3. receive reply from client 2. repeat 2. etc Does anyone know how to extract the internet header(full header) from an email so I can tell if the email is currently in a transaction...
  15. goodmanrAy

    TChart Label, tick, grid problem

    I have a TChart with three axis bottom, right and left I am trying to line up the ticks and labels on the right and left axis, the ranges are different on the left and right axis but I want the grids and ticks to line up. So that a label on the left axis is at the same point on the right axis...
  16. goodmanrAy

    Chart Component

    Has anyone got any advice on a Chart Component I can use. TChart is not flexible enough, in that I want exact control over where headings/text is placed and where the graph is positioned etc. Cheers Andrew
  17. goodmanrAy

    Array as a property

    Have a problem writing to an array of records which is a property of an object. type ArrayRecord = record A : integer B : string C : Real type SomeObject = class(Tobject) private FArray : array of TArrayRecord function GetItem(index : integer) procedure SetItem(index : integer; value ...
  18. goodmanrAy

    GetTableNames: I want to display t

    GetTableNames: I want to display the table names in a combo box in chronological order not alphabetical order like they are at the moment e.g. the files name are January02, Febrauary02 etc var mylist : TStringList; begin MyList := TStringList.Create; Try Session.GetTableNames('C:\My...

Part and Inventory Search

Back
Top