Search Results

1
vote

String to time format but how?

In SQL you could use something like convert(varchar(8),dateadd(second,45,nextrundate),114) convert(varchar(8),dateadd(minute,45,nextrundate),114) convert(varchar(8),dateadd(hour,4,nextrunda …
1
vote

How do I use dataReceived event of the SerialPort Port Object in C#?

I was having the very same problem with a modem that had previously worked and then one day just stopped raising the DataReceived event. The solution in my case, very randomly, was to enabl …
1
vote

AddHour / AddMinute store within a ListItem

Sorry, just a hint rather than an answer but it will probably be easier to use TimeSpan to loop through the available times. Use TimeSpan.FromHours and TimeSpan.FromMinutes to get a TimeSpa …
2
votes

a simple Regex question

Using groups with the following regex (for example, you could probably clean this up) Port status: (?<ID>[\d\w\-]+)\s(?<ID2>[\s\S]+) Will give you two …
1
vote

C# Regular Expression Help

The following will give you matches on the group UserName #*(?<UserName>\d+;#[^;]+) It would be simply is you prepended the string with a hash and appended a …
0
votes

Resize PNG in a ASP.Net App

The absolute best way to not lose quality (if you are generating the original images) is to generate the image from scratch again but with the smaller dimensions. Otherwise built in image …