-
My Latest Tech
I know, I know it's been FOREVER since I have made a blog post on here. Well, there's a very good reason for that. However, I'm not at liberty to tell you so, we can just move right along. :-)I thought I would catch you up to speed on the latest techy gadgets that I am currently using in my life. Let's begin with the oldest tech and move forward from there.The DesktopOh yes, I still use a desktop. I actually use several but two in particular. At home, I use the HP XW8400 Workstation that I purchased way back in 2007. I've had to replace a few parts along the way but ...
Posted Nov 1, 2016, 1:37 PM by Tim Key -
Posted Jul 2, 2013, 10:53 AM by Tim Key
Showing posts 1 - 2 of 25.
View more »
Tutorials
VB.Net
-
Launch and Manage MDI Child Forms
Change the words YourChildFormName to the actual string name of your child form. Change the words YourChildForm to your acutal ChildForm object and the words YourParentForm to your actual MDI ...
Posted Jan 14, 2010, 8:39 PM by Tim Key -
Set Control Focus at Startup
Often times when developing application and using panels, getting a control to receive startup focus can be somewhat of a pain. After much trial and error and a lot of ...
Posted Jan 14, 2010, 8:38 PM by Tim Key -
Get User Screen Resolution
There are a couple of ways to do this but the basic principle is the same. Here are a couple of ways to do this: 1) As a string function ...
Posted Jan 14, 2010, 8:37 PM by Tim Key -
Trap The Enter Key In VB.Net
All you need to do is copy and past the segment of code below into the keypress event of the control. If Asc(e.KeyChar) = Keys.Enter Then 'Do something ...
Posted Jan 14, 2010, 8:36 PM by Tim Key -
Pause or Delay Your Applicaiton
Public Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)Public Sub Pause(ByVal seconds As Single) Call Sleep(Int(seconds * 1000#))End Sub'Add the code snippet above and ...
Posted Jan 14, 2010, 8:33 PM by Tim Key
Showing posts 1 - 5 of 13.
View more »
C-Sharp Tutorials
-
How do I declare an image property in the ORM Data Model Designer
See step by step solution at DevExpress.comFollow this link...
Posted Feb 15, 2016, 9:36 AM by Tim Key -
ObjectClassInfo of XPCollection component does not show available XPO objects from referenced assembly
I have a WinForm on which I drag an XPCollection component. A separate Class Library project contains all my XPO objects. This class library is referenced by the WinForm application ...
Posted Feb 15, 2016, 7:51 AM by Tim Key -
DevExpress XPO Data Model Image Field
I am using the Data Model Xpo Data Model Designer, I need to store images in the Database, what is the field type for this case?SolutionTo accomplish this ...
Posted Feb 15, 2016, 6:46 AM by Tim Key -
Trap Enter Key
private void txtTextbox_KeyPress(object sender, EventArgs e)
{
//Trap the enter key
string info = e.KeyChar.ToString();
if (info == "\r")
{
//Your code here
//This signals the event that you have ...
Posted Mar 28, 2012, 9:00 AM by Tim Key -
Common Mask for DevExpress TextEdit Control
Simple Mask Type: Phone - (999) 000-0000RegEx Mask Type: Email - [a-zA-Z0-9.-]+@[a-zA-Z0-9-]+\.[A-Za-z]{2,}
Posted Nov 30, 2011, 9:38 AM by Tim Key
Showing posts 1 - 5 of 7.
View more »
Copyright notice
All content is the property of TimKey.Net unless noted otherwise in the content directly. All rights reserved