Tuesday, January 23, 2018
Thursday, January 18, 2018
Copy and Past in sharepoint lists
Make sure title is not required data in list settings
Thursday, November 16, 2017
cursors with variables
need to have values set to the variables before declaring the cursor
i had a declaration section with out settings and this failed
i had a declaration section with out settings and this failed
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:
Comments (Atom)