This blog will hold favorite gadgets and graphic user interfaces that don't really fit in my main blog @ mmcelhaney.blogspot.com
Tuesday, November 3, 2015
GitHub For Beginners: Don't Get Scared, Get Started - ReadWrite
Here is a good article about what GitHub is and how to use it!
GitHub For Beginners: Don't Get Scared, Get Started - ReadWrite
GitHub For Beginners: Don't Get Scared, Get Started - ReadWrite
Silverlight 4.0 feature #1: Right click Mouse events [Context Menu]
Here is some code for get a right-click mouse event to work in silverlight!
Silverlight 4.0 feature #1: Right click Mouse events [Context Menu]
Silverlight 4.0 feature #1: Right click Mouse events [Context Menu]
A C1 Visual Style aware Message Box - Our ComponentOne
Here ware two artcles about how to use the component one Message Box control for Silverlight. The message box the comes with Silverlight is really limiting. It only allows users to send "OK" and "Cancel" as responses. the Component One version gives a lot more options but the problem is it does not return any values so instead you have to do the following:
A C1 Visual Style aware Message Box - Our ComponentOne
and
http://our.componentone.com/groups/topic/c1messageboxresult/
C1MessageBox.Show("Do you want to delete?", "The question", C1MessageBoxButton.YesNoCancel, C1MessageBoxIcon.Question,
new System.Action<MessageBoxResult>((result) =>
{
switch (result)
{
case MessageBoxResult.Yes:
MessageBox.Show("You Pressed Yes");
break;
case MessageBoxResult.No:
MessageBox.Show("You Pressed No");
break;
case MessageBoxResult.Cancel:
MessageBox.Show("Are you sure you want to cancel");
break;
}
}));
A C1 Visual Style aware Message Box - Our ComponentOne
and
http://our.componentone.com/groups/topic/c1messageboxresult/
Labels:
ComponentOne,
MessagwBox,
Microsoft Silverlight,
Silverlight
WCF Throttling – Part 1 | Anders Lybecker's Weblog!
This is a great article regarding how WCF web services can be better optimized when running on IIS. I have been running into this problem when two or more users are trying to use my web service at the same time. I will conduct a few more tests but I think this will solve the problem
WCF Throttling – Part 1 | Anders Lybecker's Weblog!
WCF Throttling – Part 1 | Anders Lybecker's Weblog!
Labels:
.Programming,
IIS,
WCF,
WCF Throttling,
Web services
Tuesday, October 6, 2015
Open Port Check Tool - Test Port Forwarding on Your Router
This tool will get you information on a port using the computer's IP Address. Super duper useful
Open Port Check Tool - Test Port Forwarding on Your Router
Open Port Check Tool - Test Port Forwarding on Your Router
Hostname to IP address Lookup
You can use this tool to find the matching IP address to a hostname and vice versa
Hostname to IP address Lookup
Hostname to IP address Lookup
Friday, August 21, 2015
PowerShell Scripts to Apply Configuration Transformations for App.Config or Web.Config Files - CodeProject
Handy article for Software developers
PowerShell Scripts to Apply Configuration Transformations for App.Config or Web.Config Files - CodeProject
PowerShell Scripts to Apply Configuration Transformations for App.Config or Web.Config Files - CodeProject
Labels:
Powershell,
Programming,
Web,
Windows PowerShell
Using Cortana to get Foo Due - CodeProject
Here is an article on how to make a universal app leveraging Cortana! in VB.Net
Using Cortana to get Foo Due - CodeProject
Using Cortana to get Foo Due - CodeProject
Remote Desktop Application - CodeProject
Here is an article about how to code a remote desktop program!
Remote Desktop Application - CodeProject
Remote Desktop Application - CodeProject
Monday, August 10, 2015
Install Microsoft Kinect on PC - CodeProject
Some practical steps to run Microsoft Kinect on a Windows PC
Install Microsoft Kinect on PC - CodeProject
Install Microsoft Kinect on PC - CodeProject
Tuesday, August 4, 2015
FrequentlyAskedQuestions - selenium - WebDriver FAQs - Browser automation framework - Google Project Hosting
The following is an excerpt from an article about testing web apps by automating web browsers.
FrequentlyAskedQuestions - selenium - WebDriver FAQs - Browser automation framework - Google Project Hosting
Q: What is WebDriver?
A: WebDriver is a tool for writing
automated tests of websites. It aims to mimic the behaviour of a real
user, and as such interacts with the HTML of the application.
FrequentlyAskedQuestions - selenium - WebDriver FAQs - Browser automation framework - Google Project Hosting
Labels:
App,
Selenium,
Web,
web app,
Web application,
Web Browser,
Web driver,
webdriver
Thursday, May 14, 2015
Tuesday, April 21, 2015
Rudimentary PDF Generation in C# Using iTextSharp - CodeProject
Here is a great article about how to make your code generate PDF files
Rudimentary PDF Generation in C# Using iTextSharp - CodeProject
Rudimentary PDF Generation in C# Using iTextSharp - CodeProject
Saturday, April 11, 2015
Convert doc/docx documents to PDF with Foxit Reader - CodeProject
Here is another slick way to convert a word document into a pdf using
Convert doc/docx documents to PDF with Foxit Reader - CodeProject
Convert doc/docx documents to PDF with Foxit Reader - CodeProject
Tuesday, April 7, 2015
Watching Folder Activity in VB.NET - CodeProject
I just found out that the .Net framework allows you to watch files and folders from code. Here are two articles about how to use this function.
Watching Folder Activity in VB.NET - CodeProject
File System Watcher Class Demo (VB.NET)
Watching Folder Activity in VB.NET - CodeProject
File System Watcher Class Demo (VB.NET)
.net - Strange -1.#IND error in VB.net - Stack Overflow
Ever raised a negative number to a fractional power in a VB.Net program? Don't do it!!! Here is an article on how VB.net handles that!
.net - Strange -1.#IND error in VB.net - Stack Overflow
.net - Strange -1.#IND error in VB.net - Stack Overflow
Thursday, March 26, 2015
Remote Debugging Using Visual Studio 2013
Eureka!!!!
I got the remote debugger to work on a web server ! This site
helped me to connect Visual Studio 2013 to web server.
And here is the link for how to install the tools :
Thursday, March 5, 2015
Converting DataTable Contents into a PDF Report
I came across the need to convert DataTable into a PDF report and I found a couple of articles to show exactly how to do it. I was able to edit it for my use. Both articles use iTextSharp. It worked great!
VB.Net version
C# version
VB.Net version
C# version
Labels:
C#,
DataTable,
iText,
iTextSharp,
PDF,
Programming,
VB.NET
Tuesday, February 17, 2015
Monday, February 16, 2015
Sunday, February 8, 2015
Monday, February 2, 2015
Thursday, January 15, 2015
Loading & Using VisualBasic 6 Legacy Projects on Windows 7 - How To Register Legacy Typelibs on Modern Microsoft OS (Kim Gentes/Worship Tech Blog) - Worship Tech/Web Tools Blog - Kim Gentes - worship leader and writer
Loading & Using VisualBasic 6 Legacy Projects on Windows 7 - How To Register Legacy Typelibs on Modern Microsoft OS (Kim Gentes/Worship Tech Blog) - Worship Tech/Web Tools Blog - Kim Gentes - worship leader and writer
This problem came up for me just a few days ago. This fixed my problem!
This problem came up for me just a few days ago. This fixed my problem!
Convert VB.NET to Python - A free code conversion tool - developer Fusion
Need to convert VB.Net to Python? Try this.
Convert VB.NET to Python - A free code conversion tool - developer Fusion
Convert VB.NET to Python - A free code conversion tool - developer Fusion
Labels:
Converters,
Language Conversion,
Programming,
Python,
VB.NET
Connecting to ODBC Databases from Python with pyodbc
Another article about pyodbc that gives Python a library for accessing ODBC Databases!
Connecting to ODBC Databases from Python with pyodbc
Connecting to ODBC Databases from Python with pyodbc
Subscribe to:
Posts (Atom)