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

    Win32 to .Net Application(asp .net)

    Hi. I am testing Borland Delphi8(octane) now and I just woundering if it is possible to transform an existing win32 application to .net(asp dotnet) application? I know it is difficult with a large win32 project, but what about an easy(small) project f.ex. one unit and a form. Does anyone know...
  2. michaenh

    TSaveDialog and filename

    Hi Delphi Experts. Ok. Here is the question... I want to change the filename in the SaveDialogbox when users choose different.. filter. f.ex. filter as txt, xml, csv etc. and the filename will appears as MyFile.txt, MyFile.xml, etc. I manage to change the filename before SaveDialog is...
  3. michaenh

    ADO+Microsoft.Jet.OLEDB.4.0

    Hi. I use ADO and Microsoft.Jet.OLEDB.4.0 provider to connect to a MSAccess2000 database. Some of our customers have some problem to connect to the database with the program. (Only few computers). I don't why... any clue? Is it because of MDAC? Some needed system files? Some needed driver or...
  4. michaenh

    shGetSpecialFolderPath

    Hi I use shGetSpecialFolderPath in a function that I want to get a special folder path ex. C:\Documents and Settings\mha It work like a charm in Win98, WinXp, Win2000 but in WinNT4.0 it doesn't work. An error message appears: Shell32.dll does not support shGetSpecialFolderPath function. I...
  5. michaenh

    shell32.dll

    Hi. Hi. Can anyone tell me how I can upgrade Shell32.dll version4 to Shell32.dll version 4.72 or shell32.dll version5. Are there any patch from Microsoft? Does not get any responds from Microsoft, so I will try this forum. WinNT4.0 have Shell32.dll version 4.0 Many thanks! Cheers, mha
  6. michaenh

    MDAC

    Hi, Delphi experts. I have just finish a project and it is time for shipping to our customers. In my program I use ADO connection to a MSAccess and it needs MDAC version x.x. The question is do I need MDAC a long with the installation program? Doesn't almost every computer with Microsoft...
  7. michaenh

    dll, freelibrary and sharemem

    Hi Here is a code that I am trying to call a procedure from a x dll. procedure Test; var i: integer; Module: THandle; msg: TPlugProc; begin i:=0; with PlugList do while i<Items.Count do begin Module:=SafeLoadLibrary(PChar(plugInsDir+Items[i])); try...
  8. michaenh

    Dll and plugin

    Hi Well I have created several dll's(few of them are forms) with delphi. I statically call dll's from my main unit. It is heavy and a lot of code when project gets bigger.. I could also call proc/func on the fly(dynamically), but it is also heavy and a lot of coding... I wounder how to create...
  9. michaenh

    Passing string path from installation program to exe application

    Hi Ok. Here is the question: I want to send a path of an old ini file from my installation program to my exe application. How can I do that? One way is to write the path to windows register or to text files that my exe application can pick up. But I do not want to this. Are there other...
  10. michaenh

    Robohelp and delphi

    Hi. I have almost finish my application for shipping. I have created a html helpfile (.chm) using RoboHelp Html and the project are almost done. The question is: can I pull some help text from the help file into my delphi application... no popups. Using trainingcards or TWhatsthis? Are there...
  11. michaenh

    TStringList and data values (algorithme)

    Hi I have a TStringList called sFirm. In the stringList I have for example these values: sFirm[0]:='firm1'; sFirm[1]:='firm2'; sFirm[2]:='firm3'; sFirm[3]:='firm4'; sFirm[4]:='firm2'; sFirm[5]:='firm1'; sFirm[6]:='firm6'; I want to pull out the uniq firm once and put it on another...
  12. michaenh

    OnMouseEnter/OnMouseLeave on a dll form

    Hi. I have an application that docks several dll forms to the mainform. On the mainform there is a menu that opens x dll forms. In one of the dll form I want to highlight some labels when the user puts the mouse over it. The OnMouseEnter/OnMouseLeave seems to work if I open the dll form as...
  13. michaenh

    dll forms that are docked into the application

    Hi experts. I have created a mainform that have several buttons. Each button drag a form from a dll to the mainform... so the mainform is the main GUI which dock other forms into the application at run time. My question is: How to support the keyboard for forms that are stored in a DLL and...
  14. michaenh

    get files from cab

    hi again. Instead of zip files I wounder if anyone knows about delphi and polling out files from cab files. What about vica versa-- Any ideas are great! Thanks. cheers, mha
  15. michaenh

    extract or unzip a zip file

    Hi. Is there anyone out there who have a snippet of a code of how one can unzip a zip file? Any guide or links to give a little friendly fellow some help? Any help are thankfull... :woot: cheers, mha
  16. michaenh

    How to get hours between two Tdatetime

    Hi. Are there any easy functions to get hours between two dates? An example I have been away from work on 07.07.2003 10:00 to 08.07.2003 18:00. I want to get the hours that I have been away... :) Many thanks. cheers, mha
  17. michaenh

    dbGrid

    Hi experts. Well I have a dbGrid which I get some data from my SQL database. The problem is one of the field retrieves DateTime. I only want dbGrid to show the date value in that field, not the whole value. What should I do? I Could make heavy SQL sentence..or is it better ways? ex. how I...
  18. michaenh

    Octane

    Open Letter to the Delphi Community - by Simon Thornhill http://bdn.borland.com/article/0,1410,29951,00.html cheers and sya, mha
  19. michaenh

    MessageDlg and button text

    Hi Is it possible to change the button text in a MessageDialog.. ? To another language? thanks mha
  20. michaenh

    unsupported 16bit resource

    hi I have a resource file.. and I have added in my project: {$R test.rc} when I try to run/build the program an error occur: unsupported 16bit resource It seems that the resource file is 16bit an my project doesn't manage to have that.. What should I do to get it right? Convert the resource...

Part and Inventory Search

Back
Top