Archive for October, 2006

Notepad trick

Take notepad.
Type .LOG … on the Desktop or anywhere..
Save and Exit.
Now goes the magic….
double click … you can see current date and time ‘logged’
Each time you use file, the actual time and date will be inserted automatically.

VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Microsoft Robotics Studio

Wanna start coding for Robots? start - http://msdn.microsoft.com/robotics/
Tutorials is located at http://msdn.microsoft.com/robotics/learn/default.aspx
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Build DateTime from values

If you want to build a DateTime from values… suppose you have columns in your table, say fyear and fmonth and you want to make a DateTime value for doing some checkings….
convert(datetime,cast([fmonth] as varchar(2))+’-01-’+cast([fyear] as varchar(4)))
Eg:

select *
from pamodea
where convert(datetime,cast([fmonth] as varchar(2))+’-01-’+cast([fyear] as varchar(4))) between @startdate and @enddate

VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Microsoft Internet Explorer 7 Released

IE7 is no more a beta. You can download it from : http://www.microsoft.com/windows/ie/default.mspx?mg_ID=10010

VN:F [1.1.6_502]Rating: 5.0/5 (1 vote cast)

Leave a Comment

Check my testimonials pleassssss

http://ninethsense.com/blog/?page_id=16
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

My first JSP program

I installed Apache Tomcat and put a file with the following code in its root foler

< %
int a = 10;
int b = 10;
int c = a + b;
out.println("Sum = " + c);
%>

Got result “Sum = 20 ” without any error …

So my FIRST JSP PROGRAM worked fine!!!
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Webservice tutorial with C#

Anyway hope this will be help ful for Webservice starting people
Creating a webservice application with dotnet is simple as A B C….
Just select “Web Service” from create a new window. All the necessary code will be premade by windows itself
Which will look like this:

using System;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class Service [...]

Leave a Comment

JavaScript Trick

I got this trick from www.dotnetindia.com - a post by Anand M. I tried this with IE & Mozilla Firefox and seems interesting.
Open the browser and launch a website (Say google.com or microsoft.com). Then type the following on the Address bar:

javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200;x5=300; y5=200; DI=document.images; DIL=DI.length; function A(){for(i=0; [...]

Leave a Comment

PraVeeN is MVP now!!!

heyyyyyyyy…

One of my dream came true today

I got a mail with subject “[MVP] Congratulations! You have received the Microsoft MVP Award”.

Special thanks to all T-MUG friends

Check my MVP Profile at https://mvp.support.microsoft.com/profile=86754754-889E-4201-BBCA-6E52476AF936
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment