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 TouchToneTommy 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: *

  • Users: MadJock
  • Content: Threads
  • Order by date
  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

    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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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 =...
  10. 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...
  11. 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...
  12. MadJock

    Remoting Eception on Client

    Hi All, I have an issue which I shall try to describe below. I've also found a solution that I will link to... my main issue is I'm not sure how to implement the solution! I have a windows service running on a server. This service implements a plugin model where there are objects running in...
  13. MadJock

    Add Proxy t HTTP Connection

    Hi folks, We have signed up to a data provider service that shows information on their web page. We can get to the web page with no problems. However, the page hosts a flash application that connects to the 3rd party data server on a non-standard port (e.g. 9123). Our firewall is not...
  14. MadJock

    ToolStripMenuItems.DropDownItems - Indexer not working

    Hi All, I'm sure the answer to this is going to be obvious but I've googled it to no avail!! I want to dynamically build a menu. When doing so, I want to check if an item already exists but struugling! Simplified Example: // this adds an item called 'item1' to the 'Tools' menu...
  15. MadJock

    RegEx query returning too much data

    Hi, I have the following HTML: <tr> <th class="TableCaption" align="center" valign="top" bgcolor="#f2f2f2" width="20%"> Time CET </th> <th class="TableCaption" align="center" valign="bottom" bgcolor="#f2f2f2" width="10%"> CH&gt;AT </th> <th...
  16. MadJock

    Regex Query Failure

    Hi, I am trying to find write a Reqex query to return all characters between <td class="CelluleClairBleuCenter" align="center"> and </tr> I've written the following line, which gives a runtime exception: Regex regex = new Regex("<td class=\"CelluleClairBleuCenter\"...
  17. MadJock

    Web Scraping - Input Ignored

    Hi, I am trying to web scrape some data from a particluar site. From IE, I do the following: browse to site enter date in text box press submit In my c# code (desktop app - not ASP.Net) I do the following: request to site get viewstate add POST variables (including viewstate) to header Send...
  18. MadJock

    Message [De]Serialization: A Design Question

    All, I have a system that is designed to pass messages to / from third parties. I am about to write a plugin that will create messages (files) in a new format. The format (EDINE) is well defined and documented. I will have two basic functions: - format a message, populating values from out...
  19. MadJock

    DateTime Serialization

    Hi All, Hopefully someone can provide some help with this! I am calling a web API (not a asmx web services - I'm ussing the HttpRequest classes) and the response returns some XML. The API belongs to a 3rd party in Holland. I've created classes that 'map' to the XML using an XSD file provided...
  20. MadJock

    List&lt;&gt;.Find() Question

    Hi, I have a list of objects that I would like to search for dupluicates based on several criteria. Simplified example below: List<Person> people = new List<Person>(); Person p1 = new Person("Joe", "Bloggs", 29, "1 Elm Street"); Person p2 = new Person("Mike", "Bloggs", 30, "2 Another...

Part and Inventory Search

Back
Top