Site Wide Message: (current site time 9/8/2010 8:01:03 AM EDT)
  • We want your input! One of our sponsors wants to know your opinion about development related issues. Click here to tell us what you think.
  • Are you an emerging/young developer (aged 18-30)? If so, would you like the chance to affect future developer tools and products?
    If so, then click here to give your feedback.
 
Other Entries by Timo Boehme.

Search Results: Page 1 of 1 found. Entries 1 - 18 of 18 found
ian!
  Description
Compatibility
Level/
Author
Views/
Date
Submitted
User Rating
 
  Code optimizing - Functions / ByRefCode optimizing - Functions / ByRefC#, VB.NET, ASP.NETBeginner /
Timo Boehme
4969 since
2/16/2008 12:15:20 PM
Unrated
       In some cases you can write some lines different when you're programming. But do you really know what performance comes out if you want to write a fast function? Most things are teached theoretically. I tested some stuff and found out that the reallity co ...(description truncated)Click here to see a screenshot of this code!(ScreenShot)
 
 
  CPU usage tester / benchmarkCPU usage tester / benchmarkVB.NETAdvanced /
Timo Boehme
5186 since
11/16/2009 9:03:11 AM

By 1 Users

       Check you CPUs by calculating values in a loop. The applications shows how simple it could be to work with several threads. And how brilliant the DotNet works with threads and the local form.Click here to see a screenshot of this code!(ScreenShot)
 
 
  Create simple a Xml file in .NetCreate simple a Xml file in .NetC#, VB.NET, ASP.NETBeginner /
Timo Boehme
6429 since
12/19/2008 10:20:40 AM

By 3 Users
2 Excellent Ratings
       Create your XML file by using the included XML classes in Visual Studio. Click here to see a screenshot of this code!(ScreenShot)
 
 
  How to calculate a FramerateHow to calculate a FramerateC#, VB.NETBeginner /
Timo Boehme
1737 since
1/7/2008 5:46:02 PM
Unrated
       Just want to show how to calculate very simple a framerate (FPS).
 
Please support the site by visiting our sponsor:
 
  How to use Application.ProductVersion easyHow to use Application.ProductVersion easyVB.NETBeginner /
Timo Boehme
4875 since
8/6/2007 2:34:39 PM
Unrated
       If you want to use the simple Version info of Visual Studio an the .Net Framework it seems to be a difficult thing. But it is not if you know where to click. Use the project properties, application, assemblyversion, fileversion !! to modify your version. ...(description truncated)Click here to see a screenshot of this code!(ScreenShot)
 
 
  Image Matrix exampleImage Matrix exampleVB.NETIntermediate /
Timo Boehme
3040 since
10/26/2007 10:17:20 AM

By 1 Users

       How you can do alpha blending, RGB color channel changes and how to use the Image Matrix is shown here. Is is an easy to use and very easy to play with example I done for myself. I included my Function to find any control from any form too in this project ...(description truncated)Click here to see a screenshot of this code!(ScreenShot)
 
 
  Inverting correct image - camera interfaceInverting correct image - camera interfaceC#, VB.NETIntermediate /
Timo Boehme
3938 since
5/21/2008 12:44:53 PM

By 1 Users

       This code does two things: First it shows how to fix the problem by inverting images in .Net. Then it shows how simple it is to build a image manipulation class for the free TB-WebCam_Net interface. The interface offers you a lot of functions and you can ...(description truncated)Click here to see a screenshot of this code!(ScreenShot)
 
 
  RichTextBox to BitmapRichTextBox to BitmapC#, VB.NETBeginner /
Timo Boehme
2301 since
3/25/2010 8:33:29 PM
Unrated
       I have not found any DrawToBitmap methode in the Richtextbox. I rewrote it with using Drawing methodes. Imports RichTextBoxToBitmap.TB.Controls Dim i, j As Integer Me.PictureBox1.Image = New Bitmap(Me.PictureBox1.Width, Me.PictureBox1.Height) Rtb.RichText ...(description truncated)Click here to see a screenshot of this code!(ScreenShot)
 
 
  Rotate bitmap with GraphicsRotate bitmap with GraphicsC#, VB.NETBeginner /
Timo Boehme
3139 since
2/21/2008 2:24:42 PM

By 2 Users
2 Excellent Ratings
       If you rotate an image it is no problem using Graphics.RotateAt Methode in .Net. But if you want to rotate it back or calculate some stuff on the picture data you loose the edges. Here I show you my example how to calculate the image without loosing edge ...(description truncated)Click here to see a screenshot of this code!(ScreenShot)
 
 
  Screenshot / Snapshot without using API'sScreenshot / Snapshot without using API'sVB.NETIntermediate /
Timo Boehme
5404 since
12/11/2007 11:55:02 AM

By 1 Users

       *Update* Neu painting options *Update* Bugfix of the Click/Doubleclick Systray Icon (delay needed). *Update* +Autostart +QuickSave +Explorer function +Tooltip ! *Update* +Systray + Sound + Delayed Screenshot + Painting +Zoom +Colorinfo! I just wondered ...(description truncated)Click here to see a screenshot of this code!(ScreenShot)
 
 
  Serial CommPort  simple demoSerial CommPort simple demoC#, VB.NETAdvanced /
Timo Boehme
3162 since
3/8/2010 8:24:20 AM
Unrated
       This project will demonstrate how to use the SerialCommport and invoke the data to the local form. This project simply can send and receive data from devices with serial communication. Also USB devices with UART bridge controler like from silicon ...(description truncated)Click here to see a screenshot of this code!(ScreenShot)
 
 
  Simple to use graphical ProgressBarSimple to use graphical ProgressBarVB.NETIntermediate /
Timo Boehme
7588 since
2/27/2008 5:57:22 PM

By 9 Users
6 Excellent Ratings
       Shows an progressbar for any application. Uses graphical elements like 1000 times seen. But by using the color matrix system it will be very nice to change effects by using less code. With smoothing mode and an option to write the process value in the bar ...(description truncated)Click here to see a screenshot of this code!(ScreenShot)
 
 
  TB IP PingTB IP PingVB.NETIntermediate /
Timo Boehme
2339 since
1/17/2008 10:48:48 AM
Unrated
       This project shows how to work with the graphics object. Also there is no usercontrol used. All controls are painted as image symbols and recognized by mouse position. To start/stop you can click on the circle on the top right. To make the form unvisi ...(description truncated)Click here to see a screenshot of this code!(ScreenShot)
 
 
  TB WebCam .NetTB WebCam .NetVB.NETIntermediate /
Timo Boehme
7748 since
2/16/2008 12:15:36 PM

By 4 Users
4 Excellent Ratings
       TB-WebCam_Net shows the liveimage of any WebCam using the the TB-WebCam_Net.dll. With good performance because no clipboard is used. And it will work with the ImageCallback not with any timer. In this project you can do some smart things with the image: ...(description truncated)Click here to see a screenshot of this code!(ScreenShot)
 
 
  TB-StickFigureTB-StickFigureC#, VB.NETAdvanced /
Timo Boehme
1742 since
10/2/2009 7:47:06 AM
Unrated
       TB-Stickfigure was made to make an animated figure. Driven by music, external joypad or other software. It was prepared to lock angles and points and let the figure move later in a timeline-manager. Included all images and a demo human object. Please vote ...(description truncated)Click here to see a screenshot of this code!(ScreenShot)
 
 
  Testimage gerator / Screen saverTestimage gerator / Screen saverC#, VB.NETIntermediate /
Timo Boehme
1496 since
3/4/2010 9:06:49 AM
Unrated
       This module was used for an larger project. It uses an very small interface to share the test image generator as plugin. Because it looks pritty I make it public here. Perhaps you have more ideas how to speed up the calculation.Click here to see a screenshot of this code!(ScreenShot)
 
 
  WebCam in .NetWebCam in .NetC#, VB.NETBeginner /
Timo Boehme
7750 since
6/20/2008 10:29:12 AM

By 3 Users

       ''' *** TB-WebCam_Net Description *** ''' TB-WebCam_Net is an interfaces software for image processing. ''' Inputs, outputs and effects can be used from any third party. ''' The current software allows programmers to intervene ont the image itself. ...(description truncated)Click here to see a screenshot of this code!(ScreenShot)
 
 
  WPF Clock - with stopwatchWPF Clock - with stopwatchC#, VB.NETBeginner /
Timo Boehme
2875 since
3/12/2010 9:03:25 AM
Unrated
       WPF Demo with VB.Net. How to make simple images by using the WPF brush. It also can stop time when clicking on the form. This is my first WPF application. Because there are some DotNet & WPF basics included. I will share it with people who are startin ...(description truncated)Click here to see a screenshot of this code!(ScreenShot)
 


Search Results: Page 1 of 1 found. Entries 1 - 18 of 18 found

xxx
Compatibility Filter Profile:

C#
VB.NET
ASP.NET
C++.NET