Click here to Skip to main content
15,899,313 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionMove project resources to separate file Pin
satc12-Jun-15 22:31
satc12-Jun-15 22:31 
AnswerRe: Move project resources to separate file Pin
Eddy Vluggen13-Jun-15 11:39
professionalEddy Vluggen13-Jun-15 11:39 
GeneralRe: Move project resources to separate file Pin
satc13-Jun-15 13:27
satc13-Jun-15 13:27 
GeneralRe: Move project resources to separate file Pin
Eddy Vluggen13-Jun-15 13:36
professionalEddy Vluggen13-Jun-15 13:36 
GeneralRe: Move project resources to separate file Pin
satc13-Jun-15 13:49
satc13-Jun-15 13:49 
GeneralRe: Move project resources to separate file Pin
Eddy Vluggen14-Jun-15 1:49
professionalEddy Vluggen14-Jun-15 1:49 
QuestionMimic the Recycle Bin on a vb.net+SQl server database Pin
satc12-Jun-15 15:45
satc12-Jun-15 15:45 
AnswerRe: Mimic the Recycle Bin on a vb.net+SQl server database Pin
Sascha Lefèvre12-Jun-15 16:48
professionalSascha Lefèvre12-Jun-15 16:48 
That's relatively easy: You would have to have a field like "Deleted" in every entity which gets set to true when the user deletes an entity first. In all your queries you add a condition "where Deleted=false" unless the user explicitly wants to see the deleted entities. And eventually a user can "empty the recycle bin" where you actually delete the entities which have Deleted=true with the EF method ObjectContext.DeleteObject(entity) (or with direct SQL). Alternatively to "Deleted" being a boolean field you could make it a nullable DateTime field like "DeletedDate" where null means that it's not deleted and otherwise the date of deletion.
If the brain were so simple we could understand it, we would be so simple we couldn't. — Lyall Watson

GeneralRe: Mimic the Recycle Bin on a vb.net+SQl server database Pin
satc12-Jun-15 17:41
satc12-Jun-15 17:41 
GeneralRe: Mimic the Recycle Bin on a vb.net+SQl server database Pin
Sascha Lefèvre12-Jun-15 23:56
professionalSascha Lefèvre12-Jun-15 23:56 
GeneralRe: Mimic the Recycle Bin on a vb.net+SQl server database Pin
Eddy Vluggen13-Jun-15 11:55
professionalEddy Vluggen13-Jun-15 11:55 
GeneralRe: Mimic the Recycle Bin on a vb.net+SQl server database Pin
satc15-Jun-15 23:22
satc15-Jun-15 23:22 
GeneralRe: Mimic the Recycle Bin on a vb.net+SQl server database Pin
Eddy Vluggen16-Jun-15 0:29
professionalEddy Vluggen16-Jun-15 0:29 
GeneralRe: Mimic the Recycle Bin on a vb.net+SQl server database Pin
satc16-Jun-15 0:50
satc16-Jun-15 0:50 
GeneralRe: Mimic the Recycle Bin on a vb.net+SQl server database Pin
Eddy Vluggen16-Jun-15 1:02
professionalEddy Vluggen16-Jun-15 1:02 
GeneralRe: Mimic the Recycle Bin on a vb.net+SQl server database Pin
satc16-Jun-15 9:17
satc16-Jun-15 9:17 
GeneralRe: Mimic the Recycle Bin on a vb.net+SQl server database Pin
Eddy Vluggen16-Jun-15 11:08
professionalEddy Vluggen16-Jun-15 11:08 
QuestionConsole Application: read xml from unc-path with passed credentials Pin
Member 1170954712-Jun-15 9:44
Member 1170954712-Jun-15 9:44 
AnswerRe: Console Application: read xml from unc-path with passed credentials Pin
Eddy Vluggen13-Jun-15 11:42
professionalEddy Vluggen13-Jun-15 11:42 
QuestionGreat Confusing Problem with VB.NET Pin
Robot Sun10-Jun-15 23:22
Robot Sun10-Jun-15 23:22 
AnswerRe: Great Confusing Problem with VB.NET Pin
Richard MacCutchan11-Jun-15 1:06
mveRichard MacCutchan11-Jun-15 1:06 
AnswerMessage Closed Pin
15-Jun-15 12:32
professionalSimewu15-Jun-15 12:32 
GeneralRe: Great Confusing Problem with VB.NET Pin
Robot Sun17-Jul-15 23:26
Robot Sun17-Jul-15 23:26 
QuestionIf internet connection is present , get the real date and time Pin
satc10-Jun-15 17:38
satc10-Jun-15 17:38 
AnswerRe: If internet connection is present , get the real date and time Pin
Richard MacCutchan10-Jun-15 21:36
mveRichard MacCutchan10-Jun-15 21:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.