CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: shethashish_a

Page 1 of 4 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    0
    Views
    644

    how to Enable-Disable IE window

    Hi all,

    I am trying to enable or disable a particular IE window using EnableWindow win32 API using P/Invoke in my C# code.. This API requires to pass the handle of the window to be disabled or...
  2. how to convert window user control to ActiveX

    have a windows user control in .NET. How can I convert it to an ActiveX control?
    I want to use this control in JSP pages using Javascript. so how can I use this control on JSP pages?

    One more...
  3. converting .NET control into activex

    I have a windows user control in .NET. How can I convert it to an ActiveX control?
    I want to use this control in JSP pages using Javascript. so how can I use this control on JSP pages?

    One more...
  4. Replies
    1
    Views
    632

    How to get keyboard characters

    Hi all,
    How to know which key is being pressed in a key press event of a textbox??
    I want the user can only enter alphbets not any other caracters in my textbox. How i can do this in javascript?
  5. Replies
    1
    Views
    617

    Hi, you can define properties like this:...

    Hi,
    you can define properties like this:
    private ArrayList myArr ;

    public MyArrayList
    {
    get
    {
    return myArr ;
    }
  6. Replies
    2
    Views
    879

    Hi, U can use ...

    Hi,
    U can use
    DataGrid1.Items[selectedItem].Cells[1].Text to get the text of a particular cell in the selected row.

    regards,
  7. Replies
    12
    Views
    1,812

    hi, A difference between executing a Windows...

    hi,
    A difference between executing a Windows service and other Visual Studio .NET applications is that the dialog boxes raised from a Windows service are not visible to the user. In addition, the...
  8. file open dialog box in client side script

    Hi all,
    How can I display the file open dialog box at client side using javascript or vbscript.
    I have used


    dim obj
    set obj = CreateObject("MSComDlg.CommonDialog.1")
    obj.ShowOpen()

    but...
  9. Replies
    4
    Views
    3,380

    I don't know why it is not working. in my case it...

    I don't know why it is not working. in my case it worked.
    try using visual studio "Add reference" dialog box. Visual studio will automatically create AxShDocvw.dll and Shdocvw.dll and put it in your...
  10. Replies
    4
    Views
    3,380

    Hi, simply type AxImp at your command prompt it...

    Hi,
    simply type AxImp at your command prompt it will show all the options u can use with AxImp.
    you should use AxImp ShDocvw.dll /out:NewFile.dll so AxImp will not override original ShDocVw.dll....
  11. Replies
    7
    Views
    1,746

    that's fine but what if you don't even know that...

    that's fine
    but what if you don't even know that u r creating a textbox control or any other control.
    here is the solution which I found and it is working. Here I am sure that i will be creating...
  12. decalarative and implerative security

    Hi all,
    Which method for security is more fast : Declarative or Imperative?

    regards,
  13. thanks poochi, this is really very useful. Now...

    thanks poochi,
    this is really very useful.
    Now another issue is there,
    we can have a private .net assembly or a shared .net assembly. if we are going to interop these assembly with COM we have to...
  14. Replies
    7
    Views
    1,746

    thanks, but how can I create the TextBox control...

    thanks,
    but how can I create the TextBox control and place it on the form with the Type object I am having?

    Here I will not know the type of the control to be created until runtime.

    regards,
  15. Replies
    7
    Views
    1,746

    No, My user will give the type name and based on...

    No,
    My user will give the type name and based on the type name I have to show the Members of that type. So until runtime I will not know the type. That's why this solution will not work.
  16. Replies
    7
    Views
    1,746

    Type.GetType doesn't work

    Hi all,

    I want to display property of the controls in the listbox.
    But the following code which I got from an example in MSDN doesn't work properly.
    On line 1 if I use "System.String" it is...
  17. Thank's poochi, That's what I wanted to know!!!...

    Thank's poochi,
    That's what I wanted to know!!!
    can you send me the link of the MSDN article?


    now tell me what happens when an unmanaged code or COM components calls a .NET component? as again...
  18. COM Interoperability Life time Management

    Hi all gurus,
    How .NET manages the life time of a COM object that is called from a
    .NET assembly using COM interoperability? My doubt is, COM uses
    reference counting for life time management while...
  19. Good Idea!! But couple of issues.. First issue...

    Good Idea!!
    But couple of issues..
    First issue is that to have this kind of solution to be worked you should have some server control like check box control with AutoPostBack property set to true,...
  20. Replies
    1
    Views
    633

    Enterprise Template

    Hi all,
    Don't know where to put this query, I could't find any suitable category for this question. This is regarding Enterprise Template in Visual Studio.NET
    I have gone through the walkthroughs...
  21. Replies
    2
    Views
    868

    about config files

    Hi all,
    Can we have a custom config file other than web.config in asp.net application and app.config in windows application?
    Is .NET framework provides any way to access such config file...
  22. Replies
    22
    Views
    6,925

    Hi Neildw, Can it be done without the use of...

    Hi Neildw,
    Can it be done without the use of crystal reports?
    Or, suppose we don't want to send it to client, but we want to save it on the server?
  23. Replies
    22
    Views
    6,925

    Still I couldn't get you? can you provide sample...

    Still I couldn't get you?
    can you provide sample example for what you are saying?
  24. Replies
    22
    Views
    6,925

    Sorry Neildw, I couldn't get you. If on my...

    Sorry Neildw,
    I couldn't get you.
    If on my aspx page no HTML will be there then what it will convert ?
    I need to convert HTML to PDF file not to display existing PDF file?
    I think your solution...
  25. Replies
    22
    Views
    6,925

    Thanks Neildw, I have tried your code but it...

    Thanks Neildw,
    I have tried your code but it didn't work.
    I have on my page just to labels with some text. I put your code in my page_load event, but it shows the text of the label as such not the...
Results 1 to 25 of 76
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured