RJB Coding
Tuesday, July 24, 2018
Symbol / Motorola windows embedded won't connect to wifi
In the fusion driver, go to options -> regulatory and turn off 802.11d.
Wednesday, May 17, 2017
Microsoft Word - Fixing find - Making Ctrl+F Work Traditionally
This will make the find box pop out rather than using the navigation tab.
https://wordribbon.tips.net/T011389_Making_Ctrl_F_Work_Traditionally.html
https://wordribbon.tips.net/T011389_Making_Ctrl_F_Work_Traditionally.html
Tuesday, March 28, 2017
Gmail - Send using a domain alias without the "On Behalf Of" message
I recently set up a second domain as an alias in my google apps account. The setup was easy, except that when anyone received an email in outlook it would have the email alias "On Behalf Of" the non-alias account. Most people stated that you just need to pay for the premium subscription, but this is NOT true. The final solution that worked is to set up the alias to send through a "different" smtp server that is really just the original smtp server.
Directions can be found in this post:
http://webapps.stackexchange.com/questions/196/how-do-i-get-rid-of-on-behalf-of-from-my-sent-gmail-messages
Directions can be found in this post:
http://webapps.stackexchange.com/questions/196/how-do-i-get-rid-of-on-behalf-of-from-my-sent-gmail-messages
Wednesday, June 15, 2016
Refresh SSMS Sql Server Intellisense Autocorrect
To refresh the intellisense after adding a new table or columns, is actually pretty easy. I used to end up restarting SSMS, but no more!
There are two ways to refresh the cache:
1) Go to Edit -> IntelliSense -> Refresh Local Cache
2) Hit Ctrl+Shift+R
https://blogs.msdn.microsoft.com/dtjones/2008/09/11/refreshing-the-intellisense-cache/
There are two ways to refresh the cache:
1) Go to Edit -> IntelliSense -> Refresh Local Cache
2) Hit Ctrl+Shift+R
https://blogs.msdn.microsoft.com/dtjones/2008/09/11/refreshing-the-intellisense-cache/
Tuesday, February 16, 2016
SSIS: Method not found: Boolean when trying to debug project
1) Open Visual Studio Developer Command Prompt with as admin.
2) Cd to the path of the visual studio assemblies. For 2012:
cd "C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies"
3) Run gacutil /if Microsoft.SqlServer.Dts.Design.dll
4) Restart Visual Studio
Taken from:
http://stackoverflow.com/questions/24745396/isvisualstudio2012proinstalled-method-not-found-error-when-running-an-ssis-pac
2) Cd to the path of the visual studio assemblies. For 2012:
cd "C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies"
3) Run gacutil /if Microsoft.SqlServer.Dts.Design.dll
4) Restart Visual Studio
Taken from:
http://stackoverflow.com/questions/24745396/isvisualstudio2012proinstalled-method-not-found-error-when-running-an-ssis-pac
SSIS Toolbox Empty
If you see the toolbox is empty when working in SSIS, it is because it uses a seperate SSIS Toolbox. Click on the Control Flow, and in the far right of the window is an icon to display the SSIS Toolbox. More details (including pictures) can be found in the link below:
http://www.jamesserra.com/archive/2013/01/ssis-2012-empty-toolbox/
http://www.jamesserra.com/archive/2013/01/ssis-2012-empty-toolbox/
Tuesday, May 26, 2015
Connect to localhost WCF Webservice in compact framework application( Wince)
1) Add url into hosts file pointing to the customurl you want to use instead of localhost( ie: localdev.mycompany.com)
Update: With visual studio 2015 the IIS config file is moved into your local project folder.
Path is: ProjectFolder\.vs\config
Edit applicationhost.config.
Edit site binding to look like:
<binding protocol="http" bindingInformation="*:59254:mycustomurl" />
( http://stackoverflow.com/questions/4709014/using-custom-domains-with-iis-express).
2) I then had to go into Windows Mobile Device Center and change the device settings -> Connection Settings -> This computer connected to: Work Network.
Update: With visual studio 2015 the IIS config file is moved into your local project folder.
Path is: ProjectFolder\.vs\config
Edit applicationhost.config.
Edit site binding to look like:
<binding protocol="http" bindingInformation="*:59254:mycustomurl" />
( http://stackoverflow.com/questions/4709014/using-custom-domains-with-iis-express).
2) I then had to go into Windows Mobile Device Center and change the device settings -> Connection Settings -> This computer connected to: Work Network.
Subscribe to:
Posts (Atom)