Topic: Information

Date 13/03/2012

By Samaale Adan

Subject Re: ♥ free chat www.supondo.com ♥

Reply

and what kind of char room is this.
who meet inside this chat room

Date 04/10/2011

By wala magawa

Subject c# code for system tray Icon

Reply

https://www.dreamincode.net/forums/topic/116283-make-your-application-minimize-to-system-tray-in-c%23/

Date 04/10/2011

By wala magawa

Subject c# code

Reply

/// <summary>
/// Runs the Program on Startup.
/// </summary>
/// <param name="RunOnStartup">True to Run on Startup, False to NOT Run on Startup.</param>
private void RunStartup(Boolean RunOnStartup)
{
Microsoft.Win32.RegistryKey key = Microsoft.Win32.Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true);
if (RunOnStartup == true)
{
key.SetValue("Application Name", Application.ExecutablePath.ToString());
}
else
{
key.DeleteValue("Application Name", false);
}
}

/// <summary>
/// Gets or Sets if the Program will Run on Startup.
/// </summary>
private bool Startup
{
get
{
return Startup;
}
set
{
Startup = value;
Microsoft.Win32.RegistryKey key = Microsoft.Win32.Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true);
if (Startup == true)
{
key.SetValue("Application Name", Application.ExecutablePath.ToString());
}
if (Startup == false)
{
key.DeleteValue("Application Name", false);
}
}
}

Date 04/10/2011

By wala magawa

Subject c# code

Reply

https://www.dreamincode.net/code/snippet2601.htm

Date 04/10/2011

By den

Subject all about webmatrix,as.net

Reply

https://trainingkit.webcamps.ms/WebMatrix.htm

Date 05/09/2011

By den

Subject convert money value in words sites

Reply

https://a1vbcode.com/app-4713.asp

Date 18/08/2011

By den

Subject vbhtml page

Reply

https://www.asp.net/webmatrix/tutorials/asp-net-web-pages-visual-basic

Date 26/08/2011

By the who

Subject Re: vbhtml page

Reply

https://www.digitalcoding.com/Code-Snippets/C-Sharp/C-Code-Snippet-Insert-Update-Image-To-SQL-Server.html

Date 14/03/2011

By den

Subject autofill in vb.net

Reply

https://www.dreamincode.net/forums/topic/187433-autofill-textbox/

Date 10/03/2011

By den

Subject Design Pattern - Singleton

Reply

Public Class Singleton
Private Shared SP As Singleton
Private InnerList as New Collections.ArrayList()

Private Sub New()
End Sub

Public Shared Function Create() As Singleton
If SP is Nothing Then SP = New Singleton()
Return SP
End Function

Public ReadOnly Property List As Collections.ArrayList
Get
Return InnerList
End Get
End Property
End Class

Module SingletonExample
Sub Main
Dim CountValue as Integer
Dim SP As Singleton = Singleton.Create()
Dim SP2 As Singleton = Singleton.Create()

SP.List.Add("First")
SP.List.Add("Second")
SP.List.Add("Third")

For CountValue = 0 To SP2.List.Count - 1
Console.WriteLine(SP2.List.Item(CountValue).ToString())
Next
End Sub
End Module

Poll

What is you favorite Programming Languages?

Total votes: 611

Make a website for free Webnode