Search:

Type: Posts; User: Pino

Page 1 of 13 1 2 3 4

Search: Search took 0.47 seconds.

  1. Replies
    2
    Views
    955

    Re: .Net 4 Windows 2008 Server

    Managed to find the problem, all stemming from permissions. Viewing the site locally on the server proved the turning point.
  2. Replies
    2
    Views
    955

    [RESOLVED] .Net 4 Windows 2008 Server

    We are in the prgress of migrating our main webserver from windows 2003 to 2008 and we need to install .Net 4.0 All has been complete and the isntallation has worked fine.

    Whenever we change an...
  3. Re: PHP Exec Not running, but command works ok!

    Yea it was a permissions issue, but not somthing that I can work out how I fixed. I have it working well on the CentOS box but windows is still failing. Not a big issue though as CentOS was the main...
  4. Re: PHP Exec Not running, but command works ok!

    Still cant resolve this, the third param comes back as "1". Is there anything else I can do to Debug this?
  5. Re: PHP Exec Not running, but command works ok!

    Ok I'm not amazing with linux stuff, can you run through how I would go about doing that in CentOs?
  6. [RESOLVED] PHP Exec Not running, but command works ok!

    I have the following script to take an uploaded PDF in PHP and call ImageMagik/Ghostscript to convert to images of specified size.


    $tmp = exec("convert \"{$strPDF}\" -resize 500X500...
  7. Replies
    41
    Views
    3,804

    Re: Visual Basic vs. C#

    Lockbits is unmanaged, unsafe code!
  8. Replies
    41
    Views
    3,804

    Re: Visual Basic vs. C#

    Unmanaged code is not a bad thing, ever done any heavy graphic manipulation? If you didnt use "unsafe" code then it would be painful.
  9. Replies
    41
    Views
    3,804

    Re: Visual Basic vs. C#

    GoSub doesnt exist in VB.net, does it?

    If it does i'm pretty sure you shouldnt be using it :)
  10. Thread: VB 6 - BitBlt

    by Pino
    Replies
    22
    Views
    54,276

    Re: VB 6 - BitBlt

    Have you tried using that for a full game? Lots of bullets on the screen lots of sprites? Using the method you just described your app would come crashing down. So speed is the main thing.

    You...
  11. Replies
    4
    Views
    6,142

    Re: TempData - Good Practice or better to avoid?

    "A typical use for a TempDataDictionary object is to pass data from an action method when it redirects to another action method. For example, an action method might store information about an error...
  12. Replies
    41
    Views
    3,804

    Re: Visual Basic vs. C#

    Also go with what you need. I moved away from VB because idustry did (in my area) and as a contractor (or ex contractor) I had to code in what I was told and that was always C#. Never seen any VB in...
  13. Replies
    10
    Views
    8,805

    Re: VB.net and Winsock

    Why are you using Winsock in .net?
  14. Replies
    4
    Views
    6,142

    Re: TempData - Good Practice or better to avoid?

    I've found another situation where TempData was needed and it involved implementing the follwing patern,

    http://en.wikipedia.org/wiki/Post/Redirect/Get

    I'm not fuly converted to this method yet...
  15. Replies
    5
    Views
    2,928

    Re: Redirect, passing model class

    I'm a bit lost at what the problem is? I thought you solved it?
  16. Replies
    3
    Views
    2,525

    VS 2010 Re: How do you structure your MVC application?

    Interesting, effectivly my Models are my ViewModels, they are the abstraction of the DAL model into a more friendly Model to display data.

    Thanks for the reply.
  17. Replies
    3
    Views
    2,525

    VS 2010 How do you structure your MVC application?

    I've spent a good 8 months working with MVC now on 2 projects. However I'm interested to see how everyone else structures there project and how each layer interacts with the other. Below is a sample...
  18. Replies
    3
    Views
    1,296

    Re: Loading JavaScript files - Best Practices.

    If you are copying and pasting them all the time then sounds like they should be in the master page. However you could need them for say 5-6 pages in that case for future maintainability I'd add them...
  19. Re: Post form to different action results (jQuery, not Ajax)

    Have you tried,




    $("#xxxListForm").attr("action","NewAction");

    //Now Submit
  20. Replies
    19
    Views
    2,859

    Re: Anyone have MVC courseware?

    I hope so, just need to make sure we can make the traffic and post reflect that. So I'm happy for anyone to write guides/intro to MVC and I shall make a sticky FAQ at the top of here. Just PM me if...
  21. VS 2010 Re: OOM - Automapper the way to go for CRUD and 2-way mappings?

    Because AutoMapper uses Reflection perfomance will always be lower than doing it your self. I'm using Subsonic for my DAL and really the DAL has no knowledge of the View. I cretae a Partial class to...
  22. VS 2010 Re: OOM - Automapper the way to go for CRUD and 2-way mappings?

    I've usede the AutoMapper and ended up dropping support for it as it seems way over complicated and I much prefer having control over the mappings. I found exactly what you found in that I ended up...
  23. Replies
    19
    Views
    2,859

    Re: Anyone have MVC courseware?

    Moved to MVC Forum ;)
  24. Replies
    19
    Views
    2,859

    Re: Anyone have MVC courseware?

    I brought this topic up about 6 months ago and at the time there wasnt deemed enough interest. Raise a forum feedback thread and see what happens.

    Pino
  25. Replies
    12
    Views
    2,981

    VS 2008 Re: Asp.Net Cross browser/Platform capability

    I agree, some good points. To be honest IE5.5 is not somthing the companies I work with considor as through there stats its accounts for less than 1%
  26. Replies
    12
    Views
    2,981

    VS 2008 Re: Asp.Net Cross browser/Platform capability

    Also read the text,



    All stats to do with browsers on the web are useless, in all honesty you have to gather your own stats based on your userbase and then decide how to proceed
  27. Replies
    12
    Views
    2,981

    VS 2008 Re: Asp.Net Cross browser/Platform capability

    Thanks for sharing the stats. Yea, I exaggerated a little but the point was that alot of people still use IE6 and 7

    Its all about the user type really. I've just finished working with a local...
  28. Replies
    12
    Views
    2,981

    VS 2008 Re: Asp.Net Cross browser/Platform capability

    Apart from the fact 50% of internet users dont use these modern browsers ;)
  29. Thread: Python to VB.NET

    by Pino
    Replies
    3
    Views
    4,359

    Re: Python to VB.NET

    Yes its possible, although no-one here will do the work for you.
  30. Replies
    12
    Views
    2,981

    VS 2008 Re: Asp.Net Cross browser/Platform capability

    Also the code you write in C# / VB is not browser specific. The browser specific code is the HTML/CSS and as mentioned above, JavaScript.

    Test Test Test, Google IE Tester to run all IE browers on...
  31. Replies
    19
    Views
    2,859

    Re: Anyone have MVC courseware?

    As well as Scotts blog, Phil Haacks is very MVC focused.

    http://haacked.com/
  32. Replies
    3
    Views
    1,262

    Re: 2 datepicker in 1 col of mshflexgrid

    Deleted the other post - Pleas dont double post enigmagirl122. Thanks for the Report.
  33. Thread: String trim

    by Pino
    Replies
    1
    Views
    684

    Re: String trim

    The code looks like VB6 - is this Vb6 or .Net? - I'm assuming this is VB.Net as your profile says VB2008 if not look here -
    http://www.vbforums.com/showpost.php?p=1921143&postcount=12

    If this is...
  34. Replies
    21
    Views
    4,304

    Re: INKEY$ routine

    Extracted from 10 year old post and moved to VBA
  35. Replies
    48
    Views
    3,840

    Re: what programing language makes the smallest code

    I think in the UK we would know, flash-drive (Techy end of the spectrum) Pen-Drive (Every day user), I've also heard it incorrectly called a USB Dongle.

    Pino
  36. Replies
    48
    Views
    3,840

    Re: what programing language makes the smallest code

    Pen-Drive in the UK too ;)
  37. Re: What pay range do .NET Developers make with 5 years experience?

    Location plays a huge factor. Where are you based?
  38. Replies
    48
    Views
    3,840

    Re: what programing language makes the smallest code

    Cant you package the FW with the installer?



    That's unusual, however it's clear that your audience is different to mine and I suppose thats answered my question ;) know your audience.
  39. Replies
    48
    Views
    3,840

    Re: what programing language makes the smallest code

    I agree, however how big becomes a problem? I've just downloaded over 5 gig of MS software from MSDN - no issues.

    Your right, I havent directly had to deal with this, but being a user, I dont see...
  40. Replies
    17
    Views
    1,536

    Re: String metrics performance

    Yea, thats cool. Will leave here for a bit.

    Thanks

    Pino
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width