Search:

Type: Posts; User: max_carpenter

Page 1 of 13 1 2 3 4

Search: Search took 0.23 seconds.

  1. Replies
    2
    Views
    573

    VS 2015 Re: Plugin Questions

    Ok maybe it is possible don't know where I got the idea it wasn't from looks like I need to investigate AppDomains but I have a feeling this is going to get complicated.

    Each plugin has a Start()...
  2. Replies
    2
    Views
    573

    VS 2015 Plugin Questions

    Afternoon all,

    I have been thinking about this since I use a Plugin system for one of my bits of software with a interface and loads the plugins dynamically but coming to remaking this software...
  3. Replies
    8
    Views
    2,893

    VS 2015 Re: .Show() Not working .ShowDialog Does

    Ps I can show you more code once I am in the office.
  4. Replies
    8
    Views
    2,893

    VS 2015 Re: .Show() Not working .ShowDialog Does

    The allscreens collection does report the same every time primary screen is always (0) even so the problem isnt the forms showing ontop if each other its the fact their blank. Even if I get rid of...
  5. Replies
    8
    Views
    2,893

    VS 2015 Re: .Show() Not working .ShowDialog Does

    Yeh thats what I followed orginally as you can tell.

    I suppose I could do one form but then I need to try and establish whether to show one picture box centered or two picture boxes side by side...
  6. Replies
    8
    Views
    2,893

    VS 2015 .Show() Not working .ShowDialog Does

    Good Morning,

    Been awhile since I have asked for help here. My boss has asked me to develop a custom screensaver which I have been working on. The screensaver itself works pretty nicely apart from...
  7. VS 2015 Re: Exposing a type through an interface

    The first library has nothing to do with the plugin system itself its a very large library for IRC code but irc event information will be passed through to plugings. I didn't expect it would be...
  8. Replies
    8
    Views
    1,280

    Re: Adjust screen/System Resolution

    Hi jcachado,

    Not 100% sure what you are asking,

    Are you asking how to size the form according to the resolution of the screen?


    Me.Location = New Point(0, 0)
    Me.Height =...
  9. VS 2015 Exposing a type through an interface

    Good Morning,

    I don't even know what I am wanting to do is possible haven't thought about it too much yet (first thing in the morning still asleep) so lets see if I can explain it:

    I have a...
  10. VS 2013 Re: Convert RSA Encrypted bytes to string and back.

    Omg I ahould be shot for not knowing that. I should just give up now!

    Thanks very much.
  11. VS 2013 Re: Convert RSA Encrypted bytes to string and back.

    I have put that on the encrypt routine but what about the decrypt routine to replace the UTF8

    Additional information: The data to be decrypted exceeds the maximum for this modulus of 128 bytes.
  12. VS 2013 Convert RSA Encrypted bytes to string and back.

    Ok so I have been struggling with this for awhile looked up many online tutorials none of them convert the encrypted bytes back to a string so I have tried to adapt many of them but with no luck....
  13. VS 2013 Re: Could not load file or assembly - Plugin System

    So still battling with this one. This is the bit where its going wrong:


    If Not ((objType.Attributes And TypeAttributes.Abstract) = TypeAttributes.Abstract) Then

    ...
  14. VS 2013 Re: Could not load file or assembly - Plugin System

    Ok its because its running from a network location and not trusting it but I have tried to get .net to trust this intranet location but it won't for some reason.... But even so after that the code...
  15. Replies
    10
    Views
    1,440

    VS 2013 Re: Plugins with Forms

    Well stumbling on the first hurdle can't load the plugins even in simple form :( Posted a new post as its technically a different problem:...
  16. VS 2013 Could not load file or assembly - Plugin System

    Following on from my previous post just come to testing a simple setup (new project with just the basic plugin code) and its failing to load the sample plugin... I get this error:

    Could not load...
  17. Replies
    10
    Views
    1,440

    VS 2013 Re: Plugins with Forms

    Wow I cant believe that was so simple and that I guessed it correctly lol I had been searching the net couldn't find the answer. Thanks very much I will try and get that coded today. And rename I had...
  18. Replies
    10
    Views
    1,440

    VS 2013 Re: Plugins with Forms

    Don't support its something simple like this:

    MAIN APPLICATION

    Dim form As Form = plugin.SetupForm
    form.MdiParent = Me
    form.Show()

    PLUGIN
  19. Replies
    10
    Views
    1,440

    VS 2013 Re: Plugins with Forms

    Ok, sorry about the delay school term being back all the pupils back been a bit hetic.

    I have finally loaded this project up and been coding on it. so a bit of a background. When the startup form...
  20. Replies
    10
    Views
    1,440

    VS 2013 Re: Plugins with Forms

    Well it should be fairly simple the plugin forms don't really need to interact with the MDI parent.... At plugin load time the main application just needs to get the name of the plugin and add it to...
  21. Replies
    10
    Views
    1,440

    VS 2013 Plugins with Forms

    Good Morning Everyone,

    I am currently wondering whether its possible and how easy it is to implement a plugin system which has forms in the plugins. I am building a monitoring system for my...
  22. VS 2013 Re: Multithreading passing an unknown value back to the correct thread

    Of course I can split string I could probably do that in my sleep. Thats not the issue at all here. I can maniuplate the messages that come in the issue is not knowing what plugin requested the...
  23. VS 2013 Re: Multithreading passing an unknown value back to the correct thread

    Ok I think I may have come up with a way around this issue like I said it was more of a logitical issue rather than coding but I may have fun coding this up.

    Basically there are two types of...
  24. VS 2013 Re: Multithreading passing an unknown value back to the correct thread

    I think the problem is when the message is arrived I dont know what it is. Here is a sample of what I receive from the network:

    :MaxC!MaxC@hostname NOTICE #wurmtest :hi

    That is a normal user...
  25. VS 2013 Re: Multithreading passing an unknown value back to the correct thread

    Well firstly I cannot have anything that comes back with the response its connected to an IRC network not my own server app.

    But yes I when the message comes back I a) don't know if it is a...
  26. VS 2013 Re: Multithreading passing an unknown value back to the correct thread

    Its not a chat system I am having a problem with it's an IRC bot which I have already programmed this is v2 of the system which is adding new functionality one such feature I am struggling with which...
  27. VS 2013 Re: Multithreading passing an unknown value back to the correct thread

    Thought you woud say that lol but I am tackling the problem before I actually program it.

    Ok so a basic exmaple:

    Private Sub ChannelMessage(Channel as String, Nick As String, Message As String)...
  28. VS 2013 Multithreading passing an unknown value back to the correct thread

    Ok, I am confusing the hell out of myself wondering whether this is possible.

    Basically I have a windows service that connects to an irc network and also has plugins which are unknown at DT. Now...
  29. Replies
    4
    Views
    1,163

    VS 2012 Re: Auto Version Increment Add-In

    I am deffinately wanting increasing build numbers. I am using Major as static for my big release and this is version 2 of my software, Minor will be used for a big feature update, build will be used...
  30. Replies
    4
    Views
    1,163

    VS 2012 Re: Auto Version Increment Add-In

    The * option doesn't implement an incrementing number which is what I want so at the moment im on 2.0.0.31 and at next build it should be 2.0.0.32

    I am using TFS to store the project but building...
  31. Replies
    4
    Views
    1,163

    VS 2012 Auto Version Increment Add-In

    Morning all,

    I was getting very frustrated last night after quite a bit of searching I found an Add-In for Visual Studio that allowed you to customise it to auto increment the version number of...
  32. Replies
    4
    Views
    792

    VS 2012 Re: Custom Data Type?

    Ahh perfect thank you very much. Now you showed me that it feels familiar so I must of come across it before but just had no luck searching for it.

    Thank you very much.
  33. Replies
    4
    Views
    792

    VS 2012 Re: Custom Data Type?

    Unless im being dumb I don't think this is quite what im looking for.

    Sub Main()
    Dim MyType as MessageType

    MyType = Notice
    MyType = Action
    MyType = Normal

    End Sub
  34. Replies
    4
    Views
    792

    VS 2012 [RESOLVED] Custom Data Type?

    Evening all,

    I have been searching around the net for absolutely ages but to no avail. Maybe I am using the wrong term?

    I want to create my own data type, Basicall this is what I want to...
  35. Replies
    5
    Views
    1,260

    VS 2012 Re: Double Filter dataview

    Nope that doesn't work if I use the text box to enter a filter it wipes out all entries or if I untick two categories it also wipes out everything and re-ticking doesn't bring them back.
  36. Replies
    5
    Views
    1,260

    VS 2012 Double Filter dataview

    Good Afternoon again,

    Again probably being thick but I am having difficulty figuring out how to apply two filters to my data. I have pulled the data from the database into a dataset using a...
  37. VS 2012 Re: Missunderstood synclock or not working properly?

    hehe Yeah I know I have years of it yet. we are only at 15 weeks so sleep is still all over the place!
  38. VS 2012 Re: Missunderstood synclock or not working properly?

    Lol thanks Shaggy, Its so shameful that I knew that but drew a blank on it. I put it down to my baby daughter keeping me up!
  39. VS 2012 [RESOLVED] Missunderstood synclock or not working properly?

    Good Morning Folk,

    I am a little confused this morning because I thought Synclock would solve my issue but its not failing with the error "Collection was modified; enumeration operation may not...
  40. Replies
    16
    Views
    2,986

    VS 2012 Re: Plugin Based Application

    Thanks techgnome all working following that advice.
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width