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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ZeeNer

  1. ZeeNer

    Getting size (ko) of an image in memory

    Response.AppendHeader("Content-Length", size.ToString()); This is what i was missing, and it makes the image send to the client at the right size.
  2. ZeeNer

    Getting size (ko) of an image in memory

    With some tests i found that the size i was getting from my stream was actually good. So the problem was in fact in my .ASPX , it seems that when you send a file from a stream or a byte of array and you DONT specify the size you want to send , it's sending a file larger than the one in the...
  3. ZeeNer

    Getting size (ko) of an image in memory

    Hum sorry i didnt paste the right "Save" override for my exemple void Save(Stream stream, ImageFormat format) { scaledBitmap.Save(stream, format); } scaledBitmap is a private member in my ThumbManager class that i use to resize images.
  4. ZeeNer

    Getting size (ko) of an image in memory

    My code use many classes so its hard for me to put every information you could want... For the resize you may want to know what my Manager is doing... Here are the 2 main functions you may want to look at. /// <param name="xSize">Largeur</param> /// <param...
  5. ZeeNer

    Getting size (ko) of an image in memory

    Hello there, Im doing a windows application that basicaly read a .xls wich contains a lot of FILENAME, those filenames are all JPG files and i need to resize them to create 2 sizes of thumbnails (120x? and 260x?). This is done and work well. But i also need to estimate the size that the file...
  6. ZeeNer

    Issue with Response.Redirect when target is FTP (ie only)

    Hum, since its not working with ca8msm i will look foward for some clue on the IE feature/option that can cause this.
  7. ZeeNer

    Issue with Response.Redirect when target is FTP (ie only)

    The problem is just linked to the fact that IE wont ask me for a username/password <-- I mean with an application using Response.Redirect ;) If i use only IE and try to reach a private ftp server i recieve the popup and everything is working fine
  8. ZeeNer

    Issue with Response.Redirect when target is FTP (ie only)

    The problem is just linked to the fact that IE wont ask me for a username/password when i try to reach a private ftp server... But why ? hehe That's the big question
  9. ZeeNer

    Issue with Response.Redirect when target is FTP (ie only)

    Oh crap , seems like the ftp i linked to you was only accessible from our intranet (local network) Well try that ftp://ftp.membres.lycos.fr Its global and its not working when i try my application with IE, but i recieve the popup and its working with FireFox. Maybe it's just an option to...
  10. ZeeNer

    Issue with Response.Redirect when target is FTP (ie only)

    In case it was not clear in my previous post : public ftp works well with my application, problem comes with private ftp server.
  11. ZeeNer

    Issue with Response.Redirect when target is FTP (ie only)

    For your test ca8msm, you make me realize something... In our test, our ftp server is not a public ftp server, there's a pop that must ask you our username/login and then we can enter it... In firefox, i see the popup and i can enter into the ftp... In IE, no popup, "The page cannot be...
  12. ZeeNer

    Issue with Response.Redirect when target is FTP (ie only)

    Hi i am actually working in a big project in ASPX (c#) and i've got a very weird issue and maybe one of you will put me in the right direction because i've try almost everything before posting here =/ Here's my problem : In the application the user can manager almost everything, they can add...
  13. ZeeNer

    Give or change &quot;folder permission&quot; to a user

    Hi again! I have another little problem in finding &quot;how to change permission&quot; (in my exemple, to a folder). All of my users have their own personnal folder. They must have all permission on that folder. I have to write e *.Vbs script file to give all the access to a user. I also...
  14. ZeeNer

    Create a new partition

    Thx a lot PHV, i've found what i need :)
  15. ZeeNer

    Create a new partition

    Sorry for the mistake... Yes i mean mapping drive. Im french so sometimes it's hard for me to describe something in english like i can describe it in french ;)

Part and Inventory Search

Back
Top