DotNetKick.com is an open-source project. Please report any bugs and let us know your great suggestions. Currently running svn revision 620 (rss)

Kick Spy!, Kick Zeitgeist and Kick Widgets

29
kicks
published 2 months, 29 days ago, submitted by alashcraft 3 months ago

alvinashcraft.com — I thought I would share this list of reference cards / cheat sheets that I have compiled over the last year or so. If I am missing any good ones, please post them in the comments.

Add a comment 7 comments | category: | Views: 620 | Get KickIt image code
tags: , | tag it

new Add a live kick counter to your blog >> liveImage

You can even customize the image by choosing your own colors, and then clicking the button below to update the preview and the html code:

  • "Kick It" text
  • "Kick It" background
  • kick count text
  • kick count background
  • border

Simply copy and paste this HTML into your blog post.


Users who kicked this story:

Comments:
can anyone solve my problem how to remove _ from string or remove all the character after _
i m using this coding now
int i, j;
i = 0;
j = 2;

// string s = textBox1.Text;

string s = "03_08";

while (i < s.Length )
{

if (s[i] == '_')
{
while (s[i] == '_')
{
s = s.Remove(2, i);





}

}
else
{
i = i + 1;

}
textBox2.Text = s.ToString();
posted by sukhjinder82 2 months, 29 days ago
Sorry Alvin, i couldn't see your Reference Card. :(

@sukhjinder82
I'm not sure this is an appropriate place for this kind of question but in the interest of helping out a fellow programmer here is one of the many ways you could solve this problem.

public static string SplitTheString(string theString)
{

// Argument Check
if (string.IsNullOrEmpty(theString))
{
return theString;
}

// Define the token to split the string on.
string splitToken = "_";

// Split the string using the "_" token
string[] splits = theString.Split(new string[] {splitToken}, StringSplitOptions.None);

// if splits have been found then return the first split together with the original token.
if (splits != null && splits.Length > 0)
{
return splits[0] + splitToken;
}

// no split was found, just return the original string.
return theString;

}
posted by adammal 2 months, 29 days ago
Does anybody else get a browser crash with Firefox 3 when opening the page? In IE6 page loads fine but my FF always crashes :( I am not sure if it is the browser itself or some of the extensions
posted by drugarce drugarce 2 months, 29 days ago
FF3 is fine for me on both OSX and XP.
posted by gavinjoyce gavinjoyce 2 months, 29 days ago
Actually, FF3 just crashed after I posted the comment.
posted by gavinjoyce gavinjoyce 2 months, 29 days ago
(on XP)
posted by gavinjoyce gavinjoyce 2 months, 29 days ago
XP here as well
posted by drugarce drugarce 2 months, 29 days ago



information Login or create an account to comment on this story
 

Sponsored Link: www.carlist.ie

Search:

Ads via The Lounge