California (cbaumgart)

Results 29 comments of California (cbaumgart)

Nice. Certainly would make using alternate RDP implementations much less cumbersome. The VNC hack was really limited and eventually I gave up trying to implement it as hardcoding too many...

It doesn't work if a user/pass to a server is different.. as the pass has to be hardcoded.

/p:%PRM_PASSWORD% didn't work for me

I am not certain how the tagging is being applied via code... but I would imagine that simply stripping the path to the last path and then using the current...

I would agree it is important to find the underlying cause of the issue, however, adding this check does stop a fatal exception that takes down an application. I, too,...

You can drastically speed it up by doing bulk inserts as well. Break those into groups of 1,000, or 10,000 record inserts. //Where bulkRecords is a List bulkRecords col.InsertBulk(bulkRecords);

If space is an issue, perhaps you might try using SharpZipLib or something ahead of putting a data record in the db (compress the data and then add the compressed...

Don't use mixed mode in code. If you intend to access the db from multiple processes.. use shared mode only. If you intend to have a single process access the...

If EndedOn is a DateTime as you mention.. then this should work: `repository.Find(t => t.EndedOn.Date >= somedate.Date).ToList();` or `repository.Find(Query.GTE("EndedOnFieldName", EndedOn.Date, somedate.Date)).ToList();` * make sure the field "EndedOnFieldName" or whatever it...

As a workaround.. perhaps adding a queuing mechanism/function to the DB writes is possible. I know I do something similar and then write the queued records in bulk add commands...