Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. MadJock

    AspNetSqlMembershipProvider and Password Reset

    Hi all, I am currently developing an ASP.Net webforms application (C# 4.0) and making use of the AspNetSqlMembershipProvider functionality for my security (this URL demostrates what I am doing: http://msdn.microsoft.com/en-GB/library/879kf95c(v=vs.100).aspx). This provides an easy way to...
  2. MadJock

    Alternative to ILDASM

    Hi dean125, If you can do this in Visual Studio you are half way there. Why not just write to a text file (CSV) instead of the screen. Shout back if you need a help with this. Graeme "Just beacuse you're paranoid, don't mean they're not after you
  3. MadJock

    Popout Window from MDI Parent

    Hi All, I have a WinForms application where I have a very simple MDI parent window into which users can load other windows (gadgets as I call them). Ideally, I would like for the user to be able to pop the gadget out from the container, for example to fullscreen it on another monitor. Can...
  4. MadJock

    Add-In Versioning

    Hi all, I've written an Add-In for Excel using c#. All works rather well and is installed when the user rubns the setup file. However, I'm not sure how I can distribute it so that the same user could have the UAT and Production versions installed alongside each other. Ideally, I don't want...
  5. MadJock

    VS2010 Checkbox: A bug?

    Strange one here, wandering if anyone else has came across it? Create a winform Add a checkbox Set 'RightToLeft' to 'Yes' Now, if I set the text property to 'Seasonal?', it displays in the designer as '?Seasonal'. If I put the question mark in any other place it displays as entered. If I set...
  6. MadJock

    Excel Add-In using VS2010

    Hi all, This was originally posted in the MS Office forum, but moved to a programming one as per suggesting there. I want to develop an add-in for Excel, using Visual Studio. This add-in should have it's own ribbon tab and it's own action pane. All the examples I've found cover customising...
  7. MadJock

    Custom Ribbon Tab and Action Pane

    Hi all, Fairly new to what I'm trying to achieve, but hope this is the correct forum. I want to develop an add-in for Excel, using Visual Studio. This add-in should have it's own ribbon tab and it's own action pane. All the examples I've found cover customising the AddIn ribbon that is built...
  8. MadJock

    Spring.Net: Property PlaceHolder

    Solved the issue. i will post answer here for anyone else encountering this. App.Config remains unchanged from sample above. The Spring config should only have one PropertyPlaceholderConfigurer. See the example below where the two config sections are comma seperated rather than seperate...
  9. MadJock

    Spring.Net: Property PlaceHolder

    Hi all, I'm using Spring.Net and PropertyPlaceHolderConfigurers. This is used for two purposes: database connection (which works) and message bus connection (which doesn't work). The error I get is that it cannot resolve 'jms.url' which is the first of the properties 'served' via the...
  10. MadJock

    looking for advanced find for source code

    Statey, I find Agent Ransack extremely valuable. Supports simple search for strings in files through to regex. The preview pane shows the lines where your search was found. It's a freebie if you google for the download. Hth, MadJock "Just beacuse you're paranoid, don't mean they're not...
  11. MadJock

    Reflection and Indexers

    Hi all, I'm trying to access all public properties, along with their values, of an object using reflection. So far so good. My problem comes when I want to get the values of a collection that is exposed through an indexer. I have found the following code online (source...
  12. MadJock

    Calling SSL Web Service

    Hi All, I need to call a web service where the server requires us to authenticate with a certificate. The following code works as long as the certificate is installed in the Windows certificate store: MyTestService service = new MyTestService(); service.Url =...
  13. MadJock

    Consuming Web Service w/ SOAP Header

    Hi, With WSE installed, this is the relevant code: System.Net.ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(ValidateServerCertificate); DamasServiceWse svc = new DamasServiceWse(); svc.Url = this["URL"]...
  14. MadJock

    Inconcictent Accessibility - Don't know why

    I'd mistakenly assumed (that word!) that protected internal meant protected AND internal... Thanks for your explanation. "Just beacuse you're paranoid, don't mean they're not after you
  15. MadJock

    Inconcictent Accessibility - Don't know why

    Thanks Jason, If the class Foo is private and not contained within any other class, why is it visible at all? I can create a local variable within MyClass.VirtualMethod of type Foo. Thanks, Graeme "Just beacuse you're paranoid, don't mean they're not after you
  16. MadJock

    Remove Excel application

    Hi, I've had this issue before with Excel Interop. The only solution (yes - not strictly best practice) is to do a GC.Collect(). Hope this helps, Graeme "Just beacuse you're paranoid, don't mean they're not after you
  17. MadJock

    Consuming Web Service w/ SOAP Header

    Hi RJTLLC, Yes I did find the solution. In a nutshell, you need to install WSE 3.0 on the machine that will be making the web service calls. It also changes your calling code ever so slightly. Post back if you need more information. Thanks, Graeme "Just beacuse you're paranoid, don't...
  18. MadJock

    Inconcictent Accessibility - Don't know why

    Hi all, I have three classes, all within the same assembly and namespace. When I compile I get: "Inconsistent accessibility: parameter type 'Foo' is less accessible than method MyClass.VirtualMethod(Foo)" "Inconsistent accessibility: parameter type 'Foo' is less accessible than method...
  19. MadJock

    Consuming Web Service w/ SOAP Header

    Hi, I am trying to utilise a web service that expects some additional info in the SOAP header. I can discover and and add a reference to the web service but the Proxy class created does not deal with the extra header detail. An example of the SOAP message expected is below: <?xml...
  20. MadJock

    fileSystemWatcher problem

    Hi Nejibg, I experienced the same issue and spent a lot of time googling and trying to find a solution to no avail. In the end I had to implement a horrible solution and poll the share. I hope you have better luck in solving this - if you do, please post back the resolution! Thanks, MadJock...

Part and Inventory Search

Back
Top