Hi, I've to call a dll from my classic asp page. In VB6 application, it has been loaded like that Declare Sub functionName Lib "dllName.dll" (ByVal k As String, ByVal i As String) If I would like to use that dll in classic asp, how can it be done? Thanks in advance, Mann Khine
Mann Khine
Posts
-
calling dll from classic asp -
storing and reteriving unicode char in SQL databaseYes Bob, I used nvarchar columns.
-
storing and reteriving unicode char in SQL databaseI'm trying to show japanese character on the page and to sent mail. To show on the screen, I've to save as the following format in SQL Server. "**
ƒtƒBƒŠƒbƒvØŒ”ƒIƒ“ƒ‰ƒCƒ“ŒûÀ\‚µ
**" and use encoding "shift-jis". It is showing correctly at browser. But if I send mail that message, it can't be shown on some mail. eg. gmail and hotmail can show but yahoo can't show correctly. If I store as the following format in SQL Server, it can show correctly on most of the web mail. " & #12458 ; & #12531 ; & #12521 ; & #12452 ; & # 12531 ; & #21475 ; & #24231 ;" Can anybody explain about these formats? Can anybody advice me for the best practise dealing with unicode character? I would like to use same format to show and to send for unicode character. I'm using classic ASP for server side script. Thanks in advance, Mann Khine
-
browse highly rated articles in codeprojectDear All, How can I browse or search only highly rated articles in codeproject regardless of technologies and tools? Thanks in advance Mann Khine
-
how to return a string from COM DLLI 've one function that 's written with COM DLL. I want to return a string from that function. function declaration is like that STDMETHODIMP CMyClass::Command() from that function how can I return a string. thanks in advance.
-
FTP Upload from C# windows formI want the source code with C#. that link contain only executable file. So can u advice me something else ? thanks in advance Mann Khine.
-
FTP Upload from C# windows formHi Can anyone tell me how to upload an image file to FTP from windows form. thanks in advance. Mann Khine.
-
To Get Data from ClipboardI set an object to clipboard then when I get from Clipboard I get null value. my code is here. Class1 cls = new Class1(); cls.str = "Test string"; Clipboard.SetDataObject(cls); IDataObject a; a = Clipboard.GetDataObject(); Class1 aa=new Class1(); aa = (Class1) a.GetData(cls.GetType()); anyone help me!!!! thanks in advance.