User Profile

Collapse

Profile Sidebar

Collapse
Prasadsm
Prasadsm
Last Activity: Mar 4 '10, 02:21 PM
Joined: Nov 5 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Prasadsm
    started a topic How to create cab file for ActiveXControl?

    How to create cab file for ActiveXControl?

    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?
    See more | Go to post

  • Prasadsm
    replied to Why the dll is not updated in vs-2008?
    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.
    See more | Go to post

    Leave a comment:


  • Prasadsm
    replied to Why the dll is not updated in vs-2008?
    Thanks for ur replies..

    I tried ur suggestions but still the dll is not updated.
    See more | Go to post

    Leave a comment:


  • Prasadsm
    started a topic Why the dll is not updated in vs-2008?

    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.
    See more | Go to post

  • Hi Frinny,

    Thanks for ur reply...is there any other method to sort this?
    i tried with the following code on button click.
    Code:
    Dim Myprocess As Process = New System.Diagnostics.Process
            Myprocess.StartInfo.FileName = "c:\\windows\Notepad.exe"
            Myprocess.Start()
            Myprocess.WaitForExit()
    it works fine. but when you access the page from some other system,...
    See more | Go to post
    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.
    See more | Go to post

    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
    See more | Go to post

  • Prasadsm
    replied to String Value in a SQL statement
    Try using this....

    Replace(dstReta ilTenantType.Ta bles(0).Rows(0) .Item (0).Tostring(), " ", "")
    See more | Go to post

    Leave a comment:


  • Prasadsm
    started a topic how to avoid flickering of tooltip?

    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
    See more | Go to post

  • 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...
    See more | Go to post

    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
    See more | Go to post

  • Prasadsm
    started a topic Listview labelwrap?

    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.
    See more | Go to post

  • Prasadsm
    started a topic retain hyperlink color ?

    retain hyperlink color ?

    Hi All,

    How to retain hyperlink color when clicked?
    See more | Go to post

  • Prasadsm
    started a topic How to add new row to datagrid?
    in .NET

    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...
    See more | Go to post
    Last edited by Frinavale; Nov 5 '08, 03:25 PM. Reason: added [code] tags
No activity results to display
Show More
Working...