Search:

Type: Posts; User: Chubby

Page 1 of 8 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    1,107

    Error Lines in c#

    Hi,

    Trying to get Error Lines working with c# I understand that I need to ship the PDB but in my case the Error shown on the stack trace is 0.

    Does anyone have any sure-fire method of...
  2. Re: ActiveX OCX in browser, bit of urgent help please?

    Agree entirely with your points on why nobody does this, however I'm not 100% sure putting everything in a CAB will resolve the issue. The dependencies I have to manage are C DLL's written for...
  3. Re: ActiveX OCX in browser, bit of urgent help please?

    Hi

    Thanks very much for the reply

    Yes, ActiveX OCX embedded in an ASP page which is accessed via internet explorer.

    The issue is not the OCX but some new dependencies that in order to...
  4. ActiveX OCX in browser, bit of urgent help please?

    Hi,

    As title suggests, I've a vb6 ocx in a browser. This ocx has dependencies that should be in the same folder as the calling program. App.Path is not it (gives ocx location), any idea where I...
  5. Replies
    0
    Views
    526

    ActiveX EXE Run AS ?

    Hi,

    Strange question but maybe...

    I have an ActiveX EXE that I want to create in memory but I want that EXE to run as a specific user that the calling program can dictate?

    Reason for this is...
  6. Replies
    0
    Views
    1,488

    SMS from PC using Dongle/GPRS Modem / ??

    Hi All, simple Q, I've trolled and trolled and cannot seem to find what I really need to know on this.

    I need to build an app (in whatever language) to send and receive SMS's from a PC using a...
  7. Re: How to Iterate Column Headers in Listview.

    Hi,

    Firstly, thank you for your help.
    I am indeed aware that I am able to set the text of the column header using the Text property. I am also aware of "why" they are not in the Controls...
  8. [RESOLVED] How to Iterate Column Headers in Listview.

    Hi

    I am missing something stupid and would appreciate some help ?

    I have a Listview control on my form. I can seethe ColumnHeaders using this.CH1 kind of syntax.

    I want to iterate the...
  9. Re: WCF Accessing the class created at the Endpoint?

    Hi Chris128,

    Thanks. Regardless, I need an "IN" to the object created by the addserviceendpoint.. so would need to configure a Client Channel on the server to do this whether I use Static method...
  10. Re: WCF Accessing the class created at the Endpoint?

    :thumb:

    The reason for this architecture is that the application is designed to function across a wide area network and have different WCF interfaces (some heavy on network & CPU), I wanted a...
  11. Re: WCF Accessing the class created at the Endpoint?

    Hi Chris128

    Thankyou very much for posting, I really appreciate your help. My issue isn't with the actual clients receiving the data, it is that I want to call the function that iterates the list...
  12. Re: WCF Accessing the class created at the Endpoint?

    Hi,

    Thanks for your replies. I think I need a little more explanation.

    These two pieces of code create a callback Serviceendpoint:

    svh = new ServiceHost(typeof(EventCallbackPipe));
    ...
  13. WCF Accessing the class created at the Endpoint?

    Hi, Please be gentle, I'm new to WCF.. :)

    I have a class that I create as an EndPoint for a Callback Interface. I create the object (called svh below) and it does what it needs to do. I have a...
  14. Replies
    1
    Views
    591

    FillRectangle Stupid Question?

    Hi all, Any method to remove the Filled Rectangle I put on a form / control using FillRectangle method? Or do I have to over-paint it with the same colour as the form ?

    Thanks and sorry if this is...
  15. Replies
    3
    Views
    523

    Reliability of .Net Webservices

    Hi, Just a general question, .Net 3.5 has lots of enhancements on secure and transacted webservices ? Does anyone here have experience of this ? does it add overhead ? Can these webservices (in a LAN...
  16. Replies
    0
    Views
    445

    extreme newbie Q

    Hi all, first off thanks for your indulgence.
    I have a .net dll that I need to wrap in a win32 dll. I tried to import the typelibrary as a starting point but i got a load of errors. Am I approaching...
  17. Replies
    18
    Views
    2,029

    Re: Short Variable Declarations.

    Hi again, thanks for the comments, I agree entirely, this is a sticky situation. I am not hopeful of much more business from this particular customer, especially in light of the contractural issues...
  18. Replies
    18
    Views
    2,029

    Re: Short Variable Declarations.

    Hi,

    Thanks for all the replies. I appreciate them. I am aware of obfuscation in .Net and often use it, but this product is VB6. Also, I think I need to assure people that I'm not out to subvert or...
  19. Replies
    18
    Views
    2,029

    Re: Short Variable Declarations.

    Thanks,can't do the former (has to be stand alone, no web interfaces) but may run for the debug exe.... would call their bluff allright (ie they only want it for Vendor locking :eek: oo yeah..)........
  20. Replies
    18
    Views
    2,029

    Re: Short Variable Declarations.

    Hi, First off, thanks for all the replies, I appreciate your time.

    In reply as to 'why', I am writing an application for a company that wants the source code when it is finished to 'prevent vendor...
  21. Replies
    18
    Views
    2,029

    Short Variable Declarations.

    Hi,

    Wondering if any kind person is able to help me with this..

    I've a project that I want to convert to using Short Variable Declarations:

    i.e. instead of


    Dim strX as String
  22. Replies
    4
    Views
    5,526

    Re: Using SendMessage to click a button.

    Thanks for the replies.

    I have to write an application with a panel of lots of buttons. The text on the buttons need to be of differing sizes and left justified, therefore I 'was' planning to put...
  23. Replies
    4
    Views
    5,526

    Using SendMessage to click a button.

    Can anyone help with the sendmessage WM_ message to click a button ?
    I'm nearly there using the WM_LBUTTONDOWN to the commandbutton but it doesnt look the same as clicking the button...

    Thanks
    ...
  24. Replies
    6
    Views
    711

    Re: Using a Form in a .Net DLL.

    I am sorry. I am thick, I thought I may be able to see how the WebClient Class is constructed (ie how it does the async ??), There is a way to do this I'm sure but I'm new to VS 2005 and do not have...
  25. Replies
    6
    Views
    711

    Re: Using a Form in a .Net DLL.

    Thankyou for all your help. I will look into the DownloadFileAsync etc and report back (resolving the thread as soon as I can).

    Thanks again

    Chub.
  26. Replies
    6
    Views
    711

    Using a Form in a .Net DLL.

    Hi,

    This is a possibly a mad question / design but any help much appreciated (and please excuse my ignorance)..

    I have .Net DLL that I want to use in a WebService. The WebService says:
    ...
  27. Replies
    4
    Views
    2,008

    Re: Flash / SWF creation tools?

    thanks,

    New to the web stuff, just need a few images strung together, will look at swish tho, 70$ wont' break the bank...

    Thanks again...

    Chub
  28. Replies
    4
    Views
    2,008

    Flash / SWF creation tools?

    Hi

    does anyone have any links to applications that allow me to create a SWF / Flash animations ? I can't afford to buy Flash and only want a series of images linked together..

    Thanks

    Chub.
  29. Replies
    1
    Views
    581

    activex EXE Help?

    Hi,

    Got a quick Question if anyone can help?

    I have a HUB type Exe that spawns 10 ActiveX EXE's (thread per object) with events.

    For example:
    I have a routine that calls Print and it...
  30. Replies
    7
    Views
    2,024

    GridView Databound column show as hyperlink?

    Very immature question here, wonder if people would be kind enough to indulge me ?

    I have a very simple gridview with databound columns, I would like to make one of those bound columns a hyperlink...
  31. Replies
    3
    Views
    769

    Know when another application is quitting?

    Hi,
    My application needs to know when another application is closing / gets closed.
    It is an Internet explorer window.

    Can anyone help me with this quest ? I've got the hwnd to the instance of...
  32. Replies
    0
    Views
    533

    ActiveX EXE Help?

    Hi,

    I have an ActiveX Exe running under IIS (singelton), hooks to the running instance of the EXE are created every time somebody logs in. If the EXE is not running, the first request creates the...
  33. aspx button pick up value from javascript in page?

    Hi,

    Sure this is easy, just a wee bit confussed.

    Can anyone help with how to get the value of a javascript variable when I click an aspx (VB) button please ?

    I could code a html button but...
  34. Re: [RESOLVED] Shelling internet Explorer and then moving the window.

    :thumb: :thumb: :thumb:

    exactly wot I needed.

    Thanks

    Chub.
  35. Re: Shelling internet Explorer and then moving the window.

    Thanks :thumb:

    I'm using the task id to find the handle using the code in the article: http://support.microsoft.com/kb/q242308/ this gives a valid windows handle, but not quite sure its the right...
  36. [RESOLVED] Shelling internet Explorer and then moving the window.

    Hey Guys,

    I managed to shell internet explorer to a specific URL but:

    a) it only shells to the taskbar, regardless of me trying to open it vbmaximised
    b) I can't seem to move the window (I am...
  37. Singleton ActiveX Exe access from application and WEB?

    Hi,

    simple question if you would be so kind?

    I've singleton ActiveX exe whose primary class is instatiated by another ActiveX exe:



    Dim objX as MyHubb.cApp
    Set objX = new MyHubb.cApp
  38. [RESOLVED] ActiveX Exe Registration problem.

    Hi,

    I've an ActiveX Exe (singleton) that I compiled on my PC. My issue is that checking dcomcnfg there is only one of four classes registered here (all classes are the same type and...
  39. Replies
    1
    Views
    866

    Empty Request.Form object

    Hi,

    Thanks for reading

    i have put together simple Login.ASP and VerifyLogin.asp. USing a Form and Method=POST I'm sending across a password. IT goes from Login.ASP fine but the Form Object is...
  40. Thread: XMLHTTP issue.

    by Chubby
    Replies
    0
    Views
    902

    XMLHTTP issue.

    Hi,

    Any help appreciated.

    I'm pulling an XML using xmlhttp but the XML pulled does not populate the ResponseXML structure. It does however populate the ResponseText structure and with some...
Results 1 to 40 of 320
Page 1 of 8 1 2 3 4



Click Here to Expand Forum to Full Width