Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

Shane5555

@Shane5555
About
Posts
11
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • SOAP request/response messages in WCF
    S Shane5555

    The WCF service could not understand any messages sent by SOAP-UI. I guessed that there is some redundant attribute or property which WCF requires in a SOAP message but SOAP-UI does not include. I didn't go any further with it.

    WCF and WF csharp wcf question xml

  • WPF Rotate transform issue
    S Shane5555

    Sorted... thanks Dave

    WPF help csharp css wpf question

  • SOAP request/response messages in WCF
    S Shane5555

    I don't SOAP UI is compatible with WCF. In my experience it does not send a strong enough SOAP message, although I could be wrong

    WCF and WF csharp wcf question xml

  • SOAP request/response messages in WCF
    S Shane5555

    Great article here: http://keithelder.net/blog/archive/2008/01/15/How-to-Get-Around-WCFs-Lack-of-a-Preview-Web.aspx[^] Shane

    WCF and WF csharp wcf question xml

  • WPF Rotate transform issue
    S Shane5555

    Hi, I have a problem with rotating a WPF UIElement and placing it within a small space. Consider the following problem:

    <Grid HorizontalAlignment="Center" VerticalAlignment="Center" Width="30" Height="100">
    <Button Content="This is my button"
    HorizontalAlignment="Center"
    VerticalAlignment="Center"
    Width="100"
    Height="30"
    RenderTransformOrigin="0.5,0.5">
    <Button.RenderTransform>
    <RotateTransform Angle="90" />
    </Button.RenderTransform>
    </Button>

    WPF seems to draw the grid, draw the button (with the sides cut off) and then rotate the button (without sides). Has anyone encountered this problem before? Shane

    WPF help csharp css wpf question

  • Make game Missionaries and Cannibals by WPF
    S Shane5555

    Don't just dive in, some of WPF is very different from previous technologies. I would suggest this excellent range of tutorials (which includes events) WPF: A Beginner's Guide - Part 1 of n[^] shane

    WPF help csharp wpf game-dev tutorial

  • Installing .NET4.0 WCF application on IIS 6
    S Shane5555

    Sorted it :). Rather than install the .Net 4.0 framework client recommended by the .msi installer I installed the full .NET 4 framework which included the required ASP.NET registry key. Shane

    WCF and WF csharp windows-admin asp-net wcf help

  • Installing .NET4.0 WCF application on IIS 6
    S Shane5555

    Hi, I am having problems with a web setup file installing a .NET 4.0 WCF application to IIS 6. I am getting the message: "could not open key Software\Microsoft\ASP.NET\4.0.30319.0" before the installation cancels. On further investigation I have found that the registry key "4.0.30319.0" doesn't exist. Should this have been created with the .NET 4.0 upgrade? Has anyone come across this problem before? thanks in advance Shane

    WCF and WF csharp windows-admin asp-net wcf help

  • C# interface inheritance
    S Shane5555

    Thanks guys, however the problem goes a bit deeper than my string example (and btw, I didn't realise a string was sealed so I suppose that turned my oversimplification on its head) What I need is an interface to use within a function (like in the list above) A wrapper class would work fine (and at the moment I am using a wrapper interface) but inheriting from a class to an interface would be a LOT cleaner.

    C# csharp oop help tutorial question

  • How to search for a specific string in a file?
    S Shane5555

    Similar to StarBP: use 2 rolling buffers which are the size of the search terms. initialize by loading data into buffer 1 repeat the following steps: clear buffer 2 dump buffer 1 into buffer 2 load fresh data into buffer 1 combine the buffers search the combination If the buffers are the correct size your search terms will always be in one combination. The overhead is that you will be searching each buffer twice though. hope it helps Shane

    C# help tutorial question data-structures json

  • C# interface inheritance
    S Shane5555

    Hi, I have a basic enough problem with implementing inheritance in an interface. Here is an example of what I would LIKE to do:

        static void Main(string\[\] args)
        {
            List<ISuperString> myStrings = new List<ISuperString>();
            myStrings.Add(...SOMETHING...);
    
            Console.WriteLine(myStrings\[0\].containsCapitalLetters());
            Console.WriteLine(myStrings\[0\].ToLower());
        }
    
        public interface ISuperString : string
        {
            bool containsCapitalLetters();
        }
    

    I have seen (and implemented) some workarounds for this, however they are a bit messy for my taste. Basically, is it possible to either have an interface inherit from a class or to derive an interface from a class (i.e. an IString interface)? thanks

    C# csharp oop help tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups