Facebook Twitter Gplus LinkedIn YouTube Google Maps RSS
Home Articles posted by IR0N0RR
formats

File Operations – Read, Write, Copy, Delete, Etc.

Published on November 11, 2010 by in Technical

C#
string fileLoc = @”c:\sample1.txt”;
VB.NET
Dim fileLoc As String = “c:\sample1.txt”
You would also need to reference the System.IO namespace in your project.

Create a Text File

C#
// Create a Text File
private void btnCreate_Click(object sender, EventArgs e)
{
FileStream fs = null;
if (!File.Exists(fileLoc))
{
using (fs = File.Create(fileLoc))
{

}
}
}
VB.NET
‘ Create a Text File
Private Sub btnCreate_Click(ByVal sender As Object, ByVal e As EventArgs)
Dim fs As FileStream = Nothing
If (Not File.Exists(fileLoc)) Then
fs = File.Create(fileLoc)
Using fs

End Using
End If
End Sub

Write to a Text File

 
 Share on Facebook Share on Twitter Share on Reddit Share on LinkedIn
No Comments  comments 
formats

Microsoft LightSwitch

Published on November 4, 2010 by in Technical

Microsoft Visual Studio LightSwitch gives you a simpler and faster way to create professional-quality Silverlight business applications for the desktop, the Web, and the cloud.

It offers little customization, but has a good template to create and modify SQL data.

 
 Share on Facebook Share on Twitter Share on Reddit Share on LinkedIn
No Comments  comments 
formats

Silverlight Text Animations

Published on July 5, 2010 by in Technical

This is a super cool addon for silverlight that does a lot of cool animations.

Link to Page

 
Tags:
 Share on Facebook Share on Twitter Share on Reddit Share on LinkedIn
1 Comment  comments 
formats

Hello Ravi

Published on June 9, 2010 by in Technical

 
 Share on Facebook Share on Twitter Share on Reddit Share on LinkedIn
No Comments  comments 
formats

Share with Facebook, myspace, Twitter, etc.

Published on February 23, 2010 by in Technical

AddThis automatically optimizes itself for each person who visits your site. Every person shares differently, so AddThis custom fits each menu with the services they’ll normally use. For example, if a user shares to Facebook and Amazon Wishlist, they will be presented with those first.






The different things it can link too…
Name Category Description
100zakladok Bookmarking Site Using the service 100zakladok.ru you can remember all the links to interesting web pages that are found in the network.
 
 Share on Facebook Share on Twitter Share on Reddit Share on LinkedIn
No Comments  comments 
© All rights reserved to Cyberbrutus. 2012
credit

Switch to our mobile site