need to have values set to the variables before declaring the cursor
i had a declaration section with out settings and this failed
Thursday, November 16, 2017
Tuesday, November 14, 2017
installing msi - insufficient privileges to start system services
Friday, November 10, 2017
example to delay change in status bar
//only bother setting OK if it isnt set yet
_textbox.Dispatcher.BeginInvoke((Action)(() =>
{
if (!_textbox.Content.ToString().Equals("System Messages:OK"))
{
//seperate thread for OK message with delay
var t = Task.Run(async delegate
{
await Task.Delay(TIME_TO_WAIT_TO_CHANGE_MSG_TO_OK_IN_MS);
DisplayData(DisplayMessageType.Normal, "OK");
});
}
}
));
_textbox.Dispatcher.BeginInvoke((Action)(() =>
{
if (!_textbox.Content.ToString().Equals("System Messages:OK"))
{
//seperate thread for OK message with delay
var t = Task.Run(async delegate
{
await Task.Delay(TIME_TO_WAIT_TO_CHANGE_MSG_TO_OK_IN_MS);
DisplayData(DisplayMessageType.Normal, "OK");
});
}
}
));
schema issues
someone hardcoded in an old program the wrong schema in an update statement
I went ahead and creates a matching schema and put the tables in a s views (select * )
I went ahead and creates a matching schema and put the tables in a s views (select * )
Friday, November 3, 2017
Fiddler Https Certificate issues
Subscribe to:
Posts (Atom)