Sign Up | Sign In
Ask Questions & Get Answers at ibibo sawaal
Refine By Date
Refine By Categories
Sort by: Recency | Relevancy

Results 1 - 15 of about 36163 sawaal for "ends"

Create a menu driven program under main menu Ari oper, submenu add,subtract ,multiply , division & exit. Here the two integer numbers will be taken as input

Display.Text & Command1Index.CaptionEnd IfEnd SubPrivate Sub Command2ClickIndex As Integerfirst = txtDisplay.TexttxtDisplay.Te xt = ""sign = Command2Index.CaptionEnd SubPrivate Sub FormLoadtxtDisplay.Enable d = FalsetxtDisplay.MaxLength = 10End SubPrivate Sub cmdEqClicksecond = txtDisplay.TextIf sign = "-" ThentxtDisplay.Text= first - secondElseIf sign = "" ThentxtDisplay.Text= first

Posted in Computers & Technology by Rakes at 9:41 PM on June 14, 2008

how can calculate sum of total amount when we select particular column in gridview

-BEHINDPartial Class GridViewAddRunningTotalInhe rits System.Web.UI.PagePrivate total As IntegerProtected Property Total As IntegerGetReturn totalEnd GetSetByVal value As Integertotal = valueEnd SetEnd PropertyProtected Function AddNumberToTotalByVal obj As Object As IntegerDim number As Integer = Convert.ToInt32objMe.Total = numberReturn numberEnd FunctionProtected Sub PageLoadByVal sender As Object, ByVal e As System

Posted in Computers & Technology by Amitabh at 10:03 PM on May 27, 2008

Write a Visual Basic Code seatment to find out any text and replace that text with another text?

hi therethe code is Dim txtClient As TextBox This method is the public interface to SnR functionality.Public Sub FindnReplaceByRef Tb As TextBoxSet txtClient = TbMe.Show , txtClient.ParentEnd SubCaseSense = 0ElseCaseSense = 1End If One contains the original text and another contains replaced updated one. Used to check whether a replacement was done or not.SourceText = txt

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

What is the best and hopefully cheapest way I can use two computers on one RJ45 outlet? The RJ45 outlet goes to a router.

at one end of a cable and split them apart at the other end.I asked ATS for a couple of their T-splitters for testing. They arrived the other day. Of course, I had to take one apart to see what makes of the eight wires in a CAT5 cable. T Splitter Adapters also known as Modular Y adapters combine two RJ45 8-wire Ethernet jacks ports into one 8-wire jack at one end of a cable and split them apart at the other

Posted in Computers & Technology by Radhe Radhe at 4:25 PM on May 30, 2008

What is Front end?

Simply, a Front end comprises of a desktop computer and the programs that run on it. Alternatively, a frontend is a websites visible side, or user interface. The user interface that appears on a Web page and allows a visitor to the site to interact with dynamic features, including databases, shopping cart programs, and online purchase processing software....Front endThe head, starting point or input

Posted in Computers & Technology by enviornment at 12:10 AM on November 17, 2007
Tags front, end

Happy with the way Deathly Hallows ends? Or do you have an alternative ending?

no i am not happy because harry potter dies at last and the story ended with a sad thing . Whenever anyone does anyrhing it goes nicely but atlast something happens. Harry saves his friends life but he puts his life in danger ....Yes, i am happy in which the way Deathly Hallows have had ended.But J.K.Rowlling should end it in a better way, as killing Harry. Because many writers can continue it

Posted in Books & Authors by the goddess at 5:51 PM on July 20, 2007

What is Back end?

Back endThe support components of a computer system. It typically refers to the database management system DBMS, which is the storehouse for the data....1 For software applications, front end is the same as user interface.2 In client/server applications, the client part of the program is often called the front end and the server part is called the back end.3 Compilers, the programs that translate

Posted in Computers & Technology by enviornment at 12:10 AM on November 17, 2007
Tags end

linked listin cfor insertion,deletion,display,tra versal

;;scanf"d",#delnu m;break;case 3:inorderroot;break;ca se 4:preorderroot;break;c ase 5:postorderroot;break; case 6:displayroot,1;break; case 7:exit;default:printf "Wron g choicen";/End of switch //End of while //End of main/findint item,struct node par,struct node locstruct node ptr,ptrsave;ifroot==NUL L /tree empty/loc=NULL;par=N ULL;return;ifitem==roo t->info /item is at root/loc=root;par=NU LL

Posted in Computers & Technology by Antony at 12:00 AM on May 30, 2008
Tags linked, versal

How does one wire an RJ-45 jack for a PC connection to a broadband router, switch, or hub?

Hi therePCs connect to broadband routers, switches, and hubs with a straight-thru cables. Both ends of the cable, be they plugs, jacks, or a combination are wired identically for either the EIA/TIA 568A or 568B color standards. Its advisable for consistency, to use the same standard for all connectors from the router to the PC; however, straight-thru patch cables the ends are identicle going from

Posted in Computers & Technology by Radhe Radhe at 4:25 PM on May 30, 2008

What is Front end?

In their most general meanings, the terms front end and back end refer to the initial and the end stages of a process flow. These terms acquire more special meanings in particular areas. The general idea is that the front end is responsible for collecting input from the user, which can be in a variety of forms, and processing it in such a way that it conforms to a specification that the back end can

Posted in Computers & Technology by at 12:10 AM on November 17, 2007

What is TDM ?

data stream is reassembled at the receiving end based on the timing.The circuit that combines signals at the source transmitting end of a communications link is known as a multiplexer. It accepts the input from each individual end user, breaks each signal into segments, and assigns the segments to the composite signal in a rotating, repeating sequence.The composite signal thus contains data from

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

Can I add scrollbars in visual basic form?????????

ScrollBars 3. During the FormLoad event, initialise the scroll bars: Private Sub FormLoad Set up scroll bars: Set mcScroll = New cScrollBars mcScroll.Create Me.hwnd End Sub 4. Now your scroll bars are set up steps: .LargeChangeefsVertical = 64 .SmallChangeefsVertical = 8 .MaxefsVertical = 1024 .VisibleefsVertical = True Hide horizontal scroll bar: .VisibleefsHorizontal = False End With End Sub 5. Finally

Posted in Computers & Technology by himanshu at 6:52 AM on June 15, 2008

Write a Visual Basic code segment which will check if a given number is a odd number or not, if yes then add up all the odd numbers upto 50 using function

Sub PageLoadByVal Sender as Object, ByVal E as EventArgslblTitle.Text = "Odd or Even Page"End SubSub SubmitBtnClickSender As Object, E As EventArgslblMessage2.Text = "number entered: " & OddOrEventxtNumber.TextEnd SubFunction OddOrEvenTheNumber as Long as StringIf TheNumber Mod 2 = 0 ThenOddOrEven = "even."ElseOddOrEven = "odd."End IfEnd Function

Posted in Computers & Technology by Rakesh Singh at 9:32 PM on June 14, 2008

what is active directory?

information on objects, helps organize these objects for easy retrieval and access, allows access by end users and administrators and allows the administrator to set security up for the directory.An active directory can be defined as a hierarchical structure and this structure is usually broken up into three main categories, the resources which might include hardware such as printers, services for end users

Posted in Computers & Technology by Devjit .. at 6:11 AM on June 27, 2008

Can Any1 Provide me with the code for displaying amount in words.eg if amt is Rs10,000 then it should display Rupees one thousand only.I m using Visual basic

"" Handle the hundreds digit.Dim digit As IntegerDim result As String = ""If num > 99 Thendigit = num 100num = num Mod 100result = onetonineteendigit & " hundred"EndElse Handle the tens digit.digit = num 10num = num Mod 10result &= " " & multiplesoftendigit - 2 Handle the final digit.If num > 0 Thenresult &= " " & onetonineteennumEnd

Posted in Computers & Technology by Himanshu at 7:32 PM on June 21, 2008
Section targeting
© 2006 - 2013 ibibo Web Pvt Ltd. All rights reserved.