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
F

Fedor Hajdu

@Fedor Hajdu
About
Posts
24
Topics
6
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How do I commit myself to side-projects?
    F Fedor Hajdu

    Care to explain why? I'm generally very happy with JetBrains products. I use ReSharper on a daily basis for 8 years now, and I also often use IntelliJ, Data Grip, PHP Storm and PyCharm. In a previous company, we used YouTrack. And with the exception of YouTrack (it still needs to mature a bit), everything else is awesome. I'm very curious to know with which of their product were you so disappointed that you avoid them just by hearing the company name.

    The Lounge question help

  • var tomorrow = ?
    F Fedor Hajdu

    You won't believe it but I found very similar line in our code a few days ago, just the variable name was "yesterday" and it was set to May 22. :-D

    The Weird and The Wonderful question

  • Multithreading done "right"
    F Fedor Hajdu

    It's not a winforms app, but even it were, it still don't make sense. GenerateTimeLineImage is a heavy function but it would still block the UI thread (if that's why you mentioned WinApp) because of the m_thread.Join() there.

    The Weird and The Wonderful performance question

  • Multithreading done "right"
    F Fedor Hajdu

    He's not, I'm his replacement... :)

    The Weird and The Wonderful performance question

  • Programming question removed... can't delete
    F Fedor Hajdu

    Thanks, I've opened a new thread here: http://www.codeproject.com/Feature/HallOfShame.aspx?msg=4258449#xx4258449xx[^]

    The Lounge question com

  • Programming question removed... can't delete
    F Fedor Hajdu

    That's awesome, I've should have left the message. :laugh:

    The Lounge question com

  • Multithreading done "right"
    F Fedor Hajdu

    I recently started working for a new company and found quite a few situations like this:

    Thread m_thread = new Thread(new ThreadStart(GenerateTimeLineImage));
    m_thread.Start();
    m_thread.Join();

    I'm no expert on mulithreading but there are so many different (not just brainless copy-paste) of code like that, that it made me wondering is there some hidden magic behind that code that I'm not aware of. So, what's the difference between that and

    GenerateTimeLineImage();

    besides obvious performance loss due to creating a pointless thread?

    The Weird and The Wonderful performance question

  • Programming question removed... can't delete
    F Fedor Hajdu

    Moved here: http://www.codeproject.com/Feature/HallOfShame.aspx?msg=4258449#xx4258449xx[^]

    The Lounge question com

  • Copy large files
    F Fedor Hajdu

    Anyone?

    Visual Basic question csharp sysadmin tutorial

  • Copy large files
    F Fedor Hajdu

    No, I checked this, and it simply won'g work. The problem I have is that I can't access to share folder on machines. Using robocopy or anyonther command line tool would require some kind of share copy from one location to other, somewhere in the network. In my applications, I have client and server independent app's and I have to send file through .net remoting, like a parameter to method (IO.FileInfo, or byte array). Please help i'm :~ Thanks in advance Fedor

    Visual Basic question csharp sysadmin tutorial

  • Copy large files
    F Fedor Hajdu

    That's great! Thanks

    Visual Basic question csharp sysadmin tutorial

  • Copy large files
    F Fedor Hajdu

    I think that robocopy won't work. As I saw on http://en.wikipedia.org/wiki/Robocopy[^] Robocopy works only with folders. That is not what I need, I need files to be copyed. About FTP classes, can you give me more info, how to do it? Thanks

    Visual Basic question csharp sysadmin tutorial

  • Copy large files
    F Fedor Hajdu

    Thanks for the answer, I'll check that

    Visual Basic question csharp sysadmin tutorial

  • Copy large files
    F Fedor Hajdu

    Hello, I'm creating .NET remoting application. I need to send files thoroug network. Files can be very large, and I would like to be sure files are send succesfully. What I've been thinking, is to split file on smaller ones (eg. 1MB), and send them one by one through net. With textual files this is very easy but what with binary files? How to split them? Also, how can I do CRC check at the end? Thanks in advance, Fedor

    Visual Basic question csharp sysadmin tutorial

  • Monitor size question
    F Fedor Hajdu

    At home same as at work: 19" TFT 1280x1024. Some colleagues use wide-screen monitor, and I find those way better then regular monitors for VS, so I want one too :)

    The Lounge question

  • Formatting DateTime
    F Fedor Hajdu

    I think you are trying to strip time because you think that small date time is only date field (lots of users think that, i don't know why, i guess there is something like that in Access), but that is not true. This data field just shortens range of valid values while keeping the time. Valid dates for a SMALLDATETIME column can range from January 1, 1900 to June 6, 2079. If I'm wrong, and that is not what error is about than you can simply strip time with: cpCreateDate.SelectedDate.Date;

    C# help database tutorial

  • asp .net exe:
    F Fedor Hajdu

    If I've understood you well you want to deploy ASP.NET application by e-mail. You can do it by "publishing" your web site (right click on project in VS and select publish) into a folder on file system (select "only files needed to run web application). Then ZIP all files in this folder and send it via e-mail. web applications does not have singe exe file to deliver...

    ASP.NET csharp asp-net tutorial question

  • Speed comparation VB6 vs. C#
    F Fedor Hajdu

    Thank you for answers. It helped a lot! Regards, Fedor

    .NET (Core and Framework) csharp dotnet visual-studio performance

  • Speed comparation VB6 vs. C#
    F Fedor Hajdu

    Hey everybody. I would like to know speed differences between vb6 and C#. How much C# is slower because of the CLR? Do you know some good web site where this is tested? Thanks in advance, Fedor

    .NET (Core and Framework) csharp dotnet visual-studio performance

  • Absolute positioning on mobile device [modified]
    F Fedor Hajdu

    Nobody :(( OK, does anybody knows where can i BUY a powerful mobile web calendar control (like Mediachase, but to work on mobile IE 5 ?? Please... Thanks in advance, Fedor

    ASP.NET csharp asp-net help 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