FlazTxtr.co.nr –another service provider–sms via web–what’s new? why bother?

FlazTxtr:is not just another free web sms sending service.It is an attempt to provide updates(say latest news headlines,live cricket score…and more) on your handset via sms.

So why FlazTxtr?
Features:
*Instantly receive updates via sms on your handset across India.
*No requirements to send sms to register(like MyTodaySMS or GoogleSMSChannel).

*Twitter updates of your favourite buddy(ies).
*Feature to send updates in regular intervals..after registering just once.

Coming Up:

*Market updates of share(s) of your choice.
*Entertainment Updates.

How it Works?

FlazTxtr--how it works



Some C#.NET nice basic functionalities

C# beginner like me?

Go through basic codes-

  1. http://bit.ly/c9tAV
  2. http://bit.ly/qWMBH (Great collections at one place!)

More nice functionalities:

  • Remove duplicate elements from the array.

eg.

using System.Linq;

string[] sampleArray={“1″,”2″,”3″,”2″,”2″,”3″,”2”};
sampleArray =sampleArray.Distinct().ToArray();

//now sampleArray contains 1,2,3


to be continued..

Find any link in a webpage and click/navigate using WebBrowser Class

First of all, i would like to say I was not able to post from Jan-June…as it was a hectic period.I am back now..:)

P.S.:
codes given below worked for me,u all need to find the code snippets to include from debugging.I have striked the parts that need to be changed.

  • If the link/button to be clicked has id,eg.

<span id=”login”>Log On</span>

Here is the code:

HtmlElement button = webBrowser1.Document.GetElementById(“login“);

button.InvokeMember(“click”);

  • If the link/button to be clicked,do not has an id..

foreach (HtmlElement links in webBrowser1.Document.Links)
{
if (links.InnerHtml.StartsWith(“<IMG title=” , StringComparison.OrdinalIgnoreCase))
{
string tempHref = links.OuterHtml;
string[] tempUrl = Regex.Split(tempHref, (“(\”)”));
webBrowser1.Navigate(address+tempUrl[1]);
}
}

Done!! 🙂

Is it?


Generic Host Process for Win32 Services error?

Note:The soln. given below will disable windows network files and printer sharing.

You connect to internet,after few mins following error comes:
Error message
Generic Host Process for Win32 Services has encountered a problem and needs to close. We are sorry for the inconvenience
and you press Ok or Don’t Send,in either case your internet gets disconnected or worse even your pc hangs.

Solve this problem:
download,extract and run this.
Restart pc.

Done!!
Is it?

Original post here.

Pages

Archives

Current Month

May 2024
S M T W T F S
 1234
567891011
12131415161718
19202122232425
262728293031