Pages
Categories
- Did you find some of my content helpful? Consider a donation to help further my work.
Popular Article Tags
.net .net framework ajax android asp.net c# client cms coding configuration configure custom view design development fix framework git html install java javascript json linux microsoft oracle php process raspberry pi regular expressions research ruby on rails scripting site svn thoughts tip tutorials Uncategorized update vb.net wamp web development web programming wordpress xna-
Most Recent Articles
- GPL-ed my text compare software!
- GPL-ed My 2D Tile Based Map Editor
- Made an app to quickly get short ebay affiliate links.
- Historic frequency based random lotto number generator.
- Updating the Raspberry PI GIT server.
- Adjusting Notepad++ to work with an ASP VBScript project.
- Using Raphael the JavaScript graphics library.
- C#: Using WebClient on CSV Formatted Stock Data
- A simple classic VB code counter made in C#
- Android: Using the CountDownTimer class
- C#: Using the Background Worker to thread your application processing.
- Android: Working with Preferences and Settings
- Javascript & HTML: Async Communication Prototype
- Android: Basic game loop with scaled graphics.
- Android: Get the size of a custom view before display.
Archives
Popular Article Tags
.net .net framework ajax android asp.net c# client cms coding configuration configure custom view design development fix framework git html install java javascript json linux microsoft oracle php process raspberry pi regular expressions research ruby on rails scripting site svn thoughts tip tutorials Uncategorized update vb.net wamp web development web programming wordpress xna-
Most Recent Articles
- GPL-ed my text compare software!
- GPL-ed My 2D Tile Based Map Editor
- Made an app to quickly get short ebay affiliate links.
- Historic frequency based random lotto number generator.
- Updating the Raspberry PI GIT server.
- Adjusting Notepad++ to work with an ASP VBScript project.
- Using Raphael the JavaScript graphics library.
- C#: Using WebClient on CSV Formatted Stock Data
- A simple classic VB code counter made in C#
- Android: Using the CountDownTimer class
- C#: Using the Background Worker to thread your application processing.
- Android: Working with Preferences and Settings
- Javascript & HTML: Async Communication Prototype
- Android: Basic game loop with scaled graphics.
- Android: Get the size of a custom view before display.
Tag Archives: c#
Learning About .NET Web Access Classes
I mentioned about wanting to start a business in my previous post. Well it looks like I might have my chance. While it isn’t exactly what I was thinking of in my previous post, I foresee many opportunities to flex my programming muscle in this endeavor. Plus, I will be starting up with a good friend, so there is a good chance our motivation will actually produce some results. A … Continue reading
Posted in General
Tagged .net, c#, learning, testing, web development, WebBrowser Control, webrequest, website
Comments
C# .NET Programming Tip: Oracle Connection Revised
Take not that Microsoft will discontinue support for System.Data.OracleClient in .NET 4.0. This method should still work, but it will be depreciated… Now that I have had more time to work with Oracle, I found a better way to connect then described in my previous post. With this new method you can connect to multiple instances in one program by getting rid of that tnsnames file. *Remember that a project … Continue reading
C# .NET Programming Tip: Types
Figuring out a variable’s type has become more important since now variables can be boxed by their parent class(s) (Where all can be “Object”). It’s nice because it allows for one generalized function to work with many types that perform an action on a common attribute, or first figure out what the object is and then perform the action. That is one of the instances where figuring out a variables … Continue reading