Search results for query: *

  1. W

    Is it possible to call code in application from DLL?

    Morning ( ;)) all, I'm busy with an application and while coding I can see that it can be useful to convert part (one class) of that application at a later stage to a DLL (no experience with creating DLLs, but that is not part of the question). Below code is part of the class that I consider...
  2. W

    Network byte order

    Not sure where to post this; if in the wrong section, please move. I'm writing a server that receives data from a client. The client spec states that integers are transmitted in "network byte order". The first 4 bytes in my received data represent an (unsigned) 32 bit integer and are show...
  3. W

    Design question

    I'm designing / writing a windows service to check at a certain time of the day if certain files exist in a certain directories. At 10:00 it will e.g. check directory dir001 for the existence of file001 and directory dir002 for the existence of file002, at 16:00 it will check directory003 for...
  4. W

    Code inside xcode tag is parsed

    I tried to post the below in xcode tag PayRoll pr = new Payroll(empRate, monHr1, monHr2, tueHr1, tueHr2, wedHr1, wedHr2, thuHr1, thuHr2, friHr1, friHr2); pr translates to <acronym title="Google Page Ranking">pr</acronym> as shown below PayRoll pr = new Payroll(empRate, monHr1, monHr2, tueHr1...
  5. W

    [Resolved]How do I mark a thread as 'resolved'?

    I saw a thread prepended with 'Resolved'; I like to know how I can mark my thread as such (could not find it in the menus, but I might have overlooked it). Thanks in advance.
  6. W

    Building an application

    When building an application in VS2012 ultimate, there is the option in the properties to choose between debug and release or both. However changing this option does not have any effect. The only way I can switch between debug or release is via the build menu -> configuration manager. So what...
  7. W

    PHP warnings when viewing likes received

    Clicked on my notifications to view a like; took me to http://www.csharpforums.net/members/wim-sturkenboom.html?tab=likes_received#likes_received Warning: Declaration of vB_ProfileBlock_vBSEOLikes::block_is_enabled() should be compatible with vB_ProfileBlock::block_is_enabled($id) in...
  8. W

    I'm scared of 'static'

    I have the below class for sending emails asynchronously. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Net.Mail; using System.ComponentModel; namespace disney2sch { class Mailer { public...
Back
Top Bottom