I am working on ActiveX Control.I need to use Cab file in the "Codebase" attribute.I came across a code like
<OBJECT id="OurActiveX " name="OurActive X" classid="clsid: 121C3E0E-DC6E-45dc-952B-A6617F0FAA32" VIEWASTEXT codebase="OurAc tiveX.cab"></OBJECT>
How to Create .ini , cab files and how to include the .ini file into cab files?
User Profile
Collapse
-
How to create cab file for ActiveXControl?
-
thanks friends for ur replies.
But here in vs-2008... once the web application which was created in vs-2003 is converted to vs-2008 becomes website.[Initially its a Project , After Conversion if you commit this project and checkout it becomes website] . Bcoz of this, the newly updated dll is created in App_code folder (in some other Location) instead of bin folder and also the dll name will be different. -
Thanks for ur replies..
I tried ur suggestions but still the dll is not updated.Leave a comment:
-
Why the dll is not updated in vs-2008?
Hi Friends,
I am using a web application which is recently Converted from vs-2003 to vs-2008.Here whenever i build this application, the related dll in bin folder is not updated. what may be the reason? how can i overcome this? I need this recently modified dll to be used in main project.Can you please guide?
Thanks in Advance
Prasad. -
Hi Frinny,
Thanks for ur reply...is there any other method to sort this?
i tried with the following code on button click.
it works fine. but when you access the page from some other system,...Code:Dim Myprocess As Process = New System.Diagnostics.Process Myprocess.StartInfo.FileName = "c:\\windows\Notepad.exe" Myprocess.Start() Myprocess.WaitForExit()Last edited by Frinavale; Dec 9 '09, 02:08 PM. Reason: Please post code in [code] ... [/code] tags. Added code tags.Leave a comment:
-
Thanks for ur reply ssnaik.
can you elaborate how can i use ActiveX Object. If any code,,it helps me.Leave a comment:
-
how to launch an application in the client system ?
Hi All,
how to launch an application [say notepad] installed in the client system on button click,..using asp.net?
please respond soon.
Thanks -
Try using this....
Replace(dstReta ilTenantType.Ta bles(0).Rows(0) .Item (0).Tostring(), " ", "")Leave a comment:
-
how to avoid flickering of tooltip?
Hi all ,
how to avoid flickering of tooltip? This application was done using vs-2003 and is working fine.But after converting it to vs-2008,flickering problem has arised.Please guide me in sorting out this issue.
Thanks,
Prasad -
Hi Dormilich,
Thaks for your reply,,,How can it be done ? can u please give some idea..or if u have script please share it.
Thanks,
Prasad...Leave a comment:
-
How to create a download link to download wav file?
Hi friends,
When a link is clicked, i should be able to download the wav file...I know it can be done by right click, save target...and also by zipping wav file...but that is not my aim..How can this be done? Is there any scripts?....Ple ase guide
Thanks in advance...
Prasad -
Listview labelwrap?
Hi All,
i need to wrap the listview item. That is the part of label text of listview item should appear in next line.
I have set the listview property to smallicon.even i have tried by setting listview.labelw rap = true. But i coudn't get,Please guide me to sort out to this problem.
Thanks in advance. -
-
How to add new row to datagrid?
Hi All,
Check this....
[code=vbnet]
Public Sub CreateNewRow()
Dim index As Integer
index = StatusGrid.Item s.Count
Dim da As New SqlDataAdapter
conn.Open()
da = New SqlDataAdapter( "select * from Status", conn)
'New Row Creation
da.Fill(dt)
dt.Rows.Add(dt. NewRow)
'dt.Rows.Insert At(dt.NewRow(), index)
StatusGrid.Edit ItemIndex...
No activity results to display
Show More
Leave a comment: