Ask Questions & Get Answers at ibibo sawaal
     Powered by Bixee Crawl
Results 1 - 15 of about 2062 sawaal for "console"
Sort by: Recency | Relevancy

How do I determine the difference between two dates?

to retrieve the appropriate value: Dim D1, D2 As Date D1 = Date.Now D2 = 11/9/2004 DateDiff Console.WriteLine"DateDiff" Console.WriteLine Console.WriteLine"0 Days", DateDiffDateInterval.Day, D1, D2 Console.WriteLine"0 Hours", DateDiffDateInterval.Hour, D1, D2 Console.WriteLine"0 Minutes", DateDiffDateInterval.Minute, D1, D2 Console.WriteLine"0 Seconds

Posted in Computers & Technology by Sidd at 12:01 AM on September 13, 2008

What is the name of Microsofts gaming console?

The Xbox is a sixth generation video game console produced by Microsoft Corporation.It was Microsofts first foray into the gaming console market, and competed directly with Sonys PlayStation 2 and the Nintendo GameCube. It was released on November 15, 2001 in North America, February 22, 2002 in Japan, and March 14, 2002 in Europe and Australia. It is the predecessor to Microsofts Xbox 360 console.The Xbox

Posted in Computers & Technology by Aryan Gusain at 1:35 PM on July 02, 2008

HP dv6000 laptop wont start each time i get a message sayin windows could not start beacuse the following file is missing or corruptwindowssystem32con fig

Well Brain , The solution for your problem is :Part oneIn part one, you start the Recovery Console, create a temporary folder, back up the existing registry files to a new location, delete options that are required to start the computer from the CD-ROM drive if you are prompted to do so.2.When the "Welcome to Setup" screen appears, press R to start the Recovery Console.3.If you have

Posted in Computers & Technology by Brian Dsilva at 5:03 AM on July 13, 2008
Tags

how to find the serial no of the hard disk?

hard drives information: // Display available hard drives foreachHardDrive hd in hdCollection Console.WriteLine"Modeltt: " hd.Model; Console.WriteLine"Typett: " hd.Type; Console.WriteLine"Serial No.t: " hd.SerialNo; Console.WriteLine; ConclusionIf a user has more than one hard drive, I suggest you display the available hard drives to the user. Ask him which hard drive hes not planning

Posted in Computers & Technology by swizzsam at 3:01 PM on February 29, 2008
Tags find, serial, hard, disk

I want to repair my window xp as a primary repair anybody knows the command of repair plz send me

computer:To setup Windows XP now, press ENTER.To repair a Windows XP installation using Recovery Console, press R.To quit Setup without installing Windows XP, press F3.3. Press Enter to start the Windows Setup.To setup Windows XP now and Repair Install , press ENTER. do not choose "To repair a Windows XP installation using the Recovery Console, press R", you Do Not want to load Recovery Console

Posted in Computers & Technology by Anil Kumar at 3:34 PM on July 12, 2008

I want to repair my window xp as a primary repair anybody knows the command of repair plz send me

.To repair a Windows XP installation using Recovery Console, press R.To quit Setup without installing Windows XP, press F3.3. Press Enter to start the Windows Setup.To setup Windows XP now and Repair Install , press ENTER. do not choose "To repair a Windows XP installation using the Recovery Console, press R", you Do Not want to load Recovery Console. I repeat, do not choose "To repair a Windows

Posted in Computers & Technology by Anil Kumar at 3:32 PM on July 12, 2008

What is the difference between == and object.Equals?

with. char[...] test = t,e,s,t;string x = "test";string y = new string test;object ox=x;object oy=y;Console.WriteLinex== y;Console .WriteLineox==oy;Console .WriteLinex.Equalsy;Cons ole:int x = 10;int y = 10;Console.WriteLine x == y ;Console.WriteLine x.Equalsy ;will display:TrueTrueHowe ver things are more complex for reference types.Generally speaking, for reference types

Posted in Computers & Technology by Radhe Radhe at 8:02 PM on May 30, 2008

how to boot win xp cd ?

to run on your computer:To setup Windows XP now, press ENTER.To repair a Windows XP installation using Recovery Console, press R.To quit Setup without installing Windows XP, press F3.3. Press Enter to start the Windows Setup.To setup Windows XP now and Repair Install , press ENTER. do not choose "To repair a Windows XP installation using the Recovery Console, press R", you Do Not want to load

Posted in Computers & Technology by Ankit at 3:11 PM on June 14, 2008
Tags boot

Write a Visual Basic Code seatment through wich you have to find out Ammicable numbers

Numbers As Integer = 0Dim numbersmaxNumbers As DoubleDim s As String = "n"Do While numNumbers <= 100 And s <> "q"Console.Write"Enter a number or ""q"" to quit: "s = Console.ReadLineConsole.Wr iteLine"s=" & sIf s <> "q" ThennumbersnumNumbers = Double.ParsesConsole.Write Line"double=" & numbersnumNumbersnumNumbe rs

Posted in Computers & Technology by Rakesh Singh at 5:19 PM on May 31, 2008

Are C references the same as C references?

like a C pointer than a C reference. If you try to use a null reference, a NullReferenceException is thrown.For example, look at the following method:void displayStringLength string s Console Console.WriteLine "String is null" ;elseConsole.WriteLine "String is length 0", s.Length ;...The basic idea is the same, but one significant difference is that C references can be null

Posted in Computers & Technology by Radhe Radhe at 7:59 PM on May 30, 2008

What is Recovery Console?

The Microsoft Windows recovery console was first introduced in Microsoft Windows 2000 and is available in all later versions of Windows including Windows XP. This feature enables users to get to a mode that allows them to recover, change, or fix files or settings that may be causing their computer not to boot properly.Windows XP includes the Recovery Console that was first introduced in Windows

Posted in Computers & Technology by rushi at 4:55 PM on November 18, 2007

What is talkback ?

microphone-and-receiver system installed in a recording/mixing console for communication between people in the control room and performers in the recording studio. Most semi-professional and professional consoles include such a system. The typical setup includes an internal microphone built directly into the console, and a series of switches. The switches allow the recording engineer to route the microphone

Posted in Computers & Technology by Priya Raman at 7:21 PM on September 27, 2008
Tags talkback

How can add Ms-Access Database in VC.Net ?

Console.WriteLine"Error: Failed to create a database connection. n0", ex.Message; return; try OleDbCommand myAccessCommand = new OleDbCommandstrAccessSelect,myAcce ssConn; OleDbDataAdapter myDataAdapter = new OleDbDataAdaptermyAccessCommand; myAccessConn.Open; myDataAdapter.FillmyDataSet,"Categ ories"; catch Exception ex Console.WriteLine"Error: Failed to retrieve the required data

Posted in Computers & Technology by Avadh Kishor at 1:40 PM on July 01, 2008
Tags database

What is reflection in c

Type t = typeof test ;Console.WriteLine "Type of class: " t ;Console.WriteLine "Namespace: " t.Namespace ;ConstructorInfo[...] ci = t.GetConstructors ;Console.WriteLine "Constructors are:" ;foreach ConstructorInfo i in ci Console.WriteLine i ;PropertyInfo[...] pi = t.GetProperties ;Console.WriteLine "Properties are:" ;foreach PropertyInfo i in pi Console.WriteLine i

Posted in Computers & Technology by VAISHNAVI at 10:06 PM on June 13, 2008

What is the difference between == and object.Equals?

For value types, == and Equals usually compare two objects by value. For example:int x = 10;int y = 10;Console.WriteLine x == y ;Console.WriteLine x.Equalsy ;will display:TrueTrueHowever thingsBuilder"fred";String Builder s2 = new StringBuilder"fred";Consol e.WriteLine s1 == s2 ;Console.WriteLine s1.Equalss2 ;will display:FalseTrues1 and s2 are different objects hence == returns false

Posted in Computers & Technology by Nidhi Singh at 2:37 PM on August 13, 2008
Refine By Date
sawaal signature
sawaal free visiting card