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 Chris Miller 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: liamlaurent
  • Order by date
  1. liamlaurent

    How do I declare a multidimensional array of constant values ?

    Hello All, I would like to declare a multidimension array of constant values. I want to do something like this: const A: Array[1..2,1..2] of real = ( 1.0,2.0, 3.0,4.0); It will work for a one dimensional array but it does not for multidimensional arrays...
  2. liamlaurent

    Can inherited controls appear at design time?

    Hello Lespaul. The following link will answer your question: http://delphi.about.com/od/kbcurt/a/dynamiccreation.htm Liam
  3. liamlaurent

    Can inherited controls appear at design time?

    Hi everyone, I have a base form that I want all my other forms to inherit controls from (trying to cut down on design time). It has a page control a tool bar, a DBGrid and a few other controls. However when I set the other forms to inherit from it: e.g TfrmChemicals = class(TFrmBase) the...
  4. liamlaurent

    Can I put multiple lines in the Expression Builder?

    Thanks for the response. I am familar with VB so I will just use the event handlers then. The reason why I asked is because I did not want to complicate this with VB as it is for a novice class in ACCESS. Thanks anyway. Cheers Liam
  5. liamlaurent

    Can I put multiple lines in the Expression Builder?

    Hello All, I want to change the ROW SOURCE value of a combobox on a form dynamically. I want to requery it also when it is changed. Can I accomplish this in the Expresssion Builder without have to use VB code? Thanks Liam
  6. liamlaurent

    Encrypt string with MD5

    Can anyone tell/show me how I can use MD5 to encrypt a string in Delphi 7.0? Thanks Liam
  7. liamlaurent

    can I trap exceptions from a DBNavigator's actions?

    Thanks Aaron, I just used the OnEditError, OnPostError, and OnDeleteError events of the dataset that the DB Navigator controls. Liam
  8. liamlaurent

    Can I export and make the Stored procedure refence the new DB name?

    Thank you Paul, I just removed the [db_HelloWorld].[dbo]. part before the table name and the exported like that. It seems like this part of the extended table name is not needed by SQL Server. Thanks Liam
  9. liamlaurent

    can I trap exceptions from a DBNavigator's actions?

    Hello All, Is there a way to trap the exceptions that may come from a DB Navigator's action events? Let's say I click on the insert button and there was a problem inserting, is there a way to trap that exception in a try...except block so that I can display my customized error messages instead...
  10. liamlaurent

    Can I export and make the Stored procedure refence the new DB name?

    Good day everyone, I am having trouble exporting an SQL server database to another database on the same server - but with a different name. Whenever I export the DB the stored procedures maintain their references to the original database name. Is there a way that I can export the DB and make...
  11. liamlaurent

    Visualising images

    Hello Aaron, I opened up my program today and there were no problems with the MultiSelect. Guess it was some bug in the system. On another note what considerations do I have to make if I wanna put 2 EasyListViews on my form (Each on a different Tab od a PageControl component)? Liam
  12. liamlaurent

    Visualising images

    Hello Aaron, I managed to modify your ResizeBmp and MakeBmp functions so that you would be able to use them from a seperate unit rather than place them in your actual code as you did. All you need to do is free the variables you pass to these functions after you have finished working with...
  13. liamlaurent

    Visualising images

    Thanks Aaron, I checked out the thread and it makes sense to pass the Dest variable by reference using the var reserved word. That way you can be guaranteed that when the Bmp variable is freed it will free up the momory allocated for the Dest bitmap. I was exploring another variant but I have...
  14. liamlaurent

    Visualising images

    Hello Aaron, I have been monitoring the MustangPeak forum for the past weeks and it seems like they have placed this memory issue on the backburner. I guess we will hahve to revert to using the Listview component that comes with Delphi. Liam
  15. liamlaurent

    How do I pass form parameteres to Queries?

    Hello all, I would like to know if it is possible to pass the contents of a TextBox or the selected value in a ComboBox as a parameter to a query. If it is possible I would appreciate an example of the SQL syntax that does this. Thanks Liam
  16. liamlaurent

    Are there forms in SQL Server 2000/2005?

    Hello All Is there a way I can use forms in SQL Server 2000/2005 like is done is ACCESS? I have several ACCESS DB's that I need to port over to SQL Server and I was wondering if I could retain the use of my forms in SQL Server 2000 or 2005 Liam

Part and Inventory Search

Back
Top