Search

You searched for the word(s): userid:549196

Matching Posts

  • Hourly Maintenance

    Hello! We are looking to establish a relationship with an individual who can handle maintenance of 4 to 5 existing websites (all nicely programmed in ASP.NET and nothing too complicated). We need someone who can make updates quickly and effectively in both ASP.NET (c#) and minor HTML changes based on customer requests. All websites are programmed in standard ASP.NET however one of the projects is written in MVC. Work can start almost immediately (Thursday 26th November) and is expected to be roughly
    Posted to Jobs (Forum) by Callam.Fletcher on 11/19/2009
    Filed under: mvc asp.net vb.net linq, ASP.NEtT Job, n-tier, provider based
  • Re: PLEASE HELP - Custom Control adding a skin file cause error - BC30002: Type 'WEM.Portal.TestThemeClass' is not defined.

    Hey! Remove the @Register bit from the top of your page and put this in web.config under system.web / pages / controls: < pages > < controls > < add namespace = " WEM.Portal.UI " tagPrefix = " WEMui " assembly = " WEM.Portal " /> </ controls > </ pages > Basically when you register the control in the page it is only available to that page - doing this makes a global registration which should be recognised by the skin file. I think i'm
  • Re: Improve the Quality of Transparent PNG

    Hi Again! Ok i declare you amazing! You've helped me solve it :) You were right i was still saving the bitmap and not the new thumbnail... sorted now ;) Thanks so much! :) Callam
    Posted to System.Drawing/GDI+ (Forum) by Callam.Fletcher on 4/25/2008
  • Re: Improve the Quality of Transparent PNG

    Hey there, Thanks for your reply it looks much better now. Although the more i look at it ( www.releaf.eu ) the more i realise it still isn't perfect. But it's certainly better than it was - so thankyou :) I don't suppose you have any suggestions for line spacing? It seems like a simple issue but i can't find anywhere how to do it ... mmm Thanks again! Callam
    Posted to System.Drawing/GDI+ (Forum) by Callam.Fletcher on 4/25/2008
  • Improve the Quality of Transparent PNG

    Hi everyone! Could anybody suggest how i could improve the quality of the image found at the top of this website (the post-it text): www.releaf.eu Below is the code that creates the image: // create image Bitmap bitmap = new Bitmap (165, 125); Graphics graphics = Graphics .FromImage(bitmap); SolidBrush brush = new SolidBrush ( Color .Black); Font font = new Font ( "j.d." , 12); StringFormat f1 = new StringFormat ( StringFormatFlags .LineLimit); f1.Alignment = StringAlignment .Near; f1.Trimming
    Posted to System.Drawing/GDI+ (Forum) by Callam.Fletcher on 4/24/2008
    Filed under: png, system.drawing, transparent, image quality
  • system.drawing how to set line spacing

    hello! I desperately need to set line spacing on some text that i'm creating as an image. It seems like a simple task but i've looked everywhere (not literallty) on the internet and all to no avail. Below is my code: Bitmap bitmap = new Bitmap (165, 125); Graphics graphics = Graphics .FromImage(bitmap); SolidBrush brush = new SolidBrush ( Color .Black); Font font = new Font ( "j.d." , 11); StringFormat f1 = new StringFormat ( StringFormatFlags .LineLimit); f1.Alignment = StringAlignment
    Posted to System.Drawing/GDI+ (Forum) by Callam.Fletcher on 4/19/2008
  • Re: Reflection - Ambiguous Match Found

    Hi Richard! You've really saved my day - and i don't even owe my friends any beer for helping me!! haha. ok just one little thing: I didn't particulary understand the following line: The object array (object[]) doesn't have a Select method :S [quote user="rjcox"]Type[] paramTypes = _countMethodParams.Select(p => p.GetType()).ToArray();[/quote] Well i was old fasioned and did this: private Type [] GetTypeArrayFromObjectArray( object [] pArray) { Type [] paramTypes = new
    Posted to C# (Forum) by Callam.Fletcher on 3/16/2008
  • Re: Reflection - Ambiguous Match Found

    Hi Richard, Thanks for your reply. You're quite right - it is being thrown on that method line. So how would i go about doing this? I don't know which of the overloads i want to call before i call it... Here are my overloads: public static int CountPosts( int pPostTypeID, string pLang) { return DataProvider .Instance.PostsCount(pPostTypeID, pLang); } public static int CountPosts( int pPostTypeID, string pLang, bool pIsLive) { return DataProvider .Instance.PostsCount(pPostTypeID, pLang, pIsLive
    Posted to C# (Forum) by Callam.Fletcher on 3/16/2008
  • Reflection - Ambiguous Match Found

    Hey! I’m trying to invoke an overload method through reflection in c# like this: MethodInfo method = _typeName.GetMethod(_countMethod); _itemCount = ( int )method.Invoke( this , _countMethodParams); The method specified as “_countMethod” has two overloads: public static int CountPosts( int pPostTypeID, string pLang) { return DataProvider .Instance.PostsCount(pPostTypeID, pLang); } public static int CountPosts( int pPostTypeID, string pLang, bool pIsLive) { return DataProvider .Instance.PostsCount
    Posted to C# (Forum) by Callam.Fletcher on 3/16/2008
  • Re: is GetAllUsers() expensive?

    Hi, Thanks for your reply :) But it doesn't really depend on how many users are online - because it will allways get ALL users - and only afterwards will it iterate through them to determine which are actually online. If it were just returning those online then that would be ok - or perfect infact. Is there any way to do that with the existing membership features?
    Posted to Security (Forum) by Callam.Fletcher on 12/3/2007
Page 1 of 10 (96 items) 1 2 3 4 5 Next > ... Last »