Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...



Code Snippets Interview Questions
Questions Answers Views Company eMail

What are PIDs?

1 2782

How do you write a while loop in shell?

1 2499

How do you remove a file?

1 2621

How do you remove recursively?

1 2837

How do you find out your own username?

1 2920

How do you count words, lines and characters in a file?

1 2575

How do you search for a string inside a given file?

1 2880

How do you search for a string inside a directory?

1 2534

How do you search for a string in a directory with the subdirectories recursed?

1 2462

How do you list currently running process?

1 2520

How do you find out what’s your shell?

1 2755

How do you fire a process in the background?

1 2802

How do you refer to the arguments passed to a shell script?

1 2442

What’s the conditional statement in shell scripting?

1 2999

How do you do number comparison in shell scripts?

1 2683


Un-Answered Questions { Code Snippets }

how to create a Draggable element

2439


snippet to prevent submission of form when certain/any validations got failed

1931


What is the functionality of SendMessage?

746


how to test pierrot divisor

2774


write a java program to create a Frame with three scrolls, change the back ground color of the frame using functions with values of scrolls.

4675


communication between main window and new windows

2181


How to print sum of the numbers starting from 1 to 100?

808


how to copy form data between different pages

2315


How to palindrom string in c language?

11146


Write a program that will convert an integer pointer to an integer and vice-versa.

912


Write a function that takes an unsorted integer array, and returns a three element subset whose sum is zero.

1679


What is XML DOM?

696


What is the meaning of version in XML?

661


Code for Easily Using Hash Table?

3055


How to store the iterations value in some variable/ in excel? Dim objExcel, ObjFolder, objPath, objWorkbook, objSheet, ObjFSo, ObjFolderName, strExcelPath Const xlExcel7 = 39 ObjFolderName = "Testing" & Hour(time()) & Minute(time()) &Second(time()) objPath = "D:\" strExcelPath = objPath & ObjFolderName & "\testing.xls" Set ObjFSo = CreateObject("Scripting.FileSystemObject") Set objFolder = objFSO.CreateFolder(objPath & ObjFolderName) On Error Resume Next Set objExcel = CreateObject("Excel.Application") If (Err.Number <> 0) Then On Error GoTo 0 Wscript.Echo "Excel application not found." Wscript.Quit End If On Error GoTo 0 Set objWorkbook = objExcel.Workbooks.Add() Set objSheet = objExcel.ActiveWorkbook.Worksheets(1) Dim arr1, arr2, arr3 Set outputLines = CreateObject ("System.Collections.ArrayList") arr1 = 123arr2 = 99 arr3 = 10 outputLines.Add arr1 outputLines.Add arr2 outputLines.Add arr3 outputLines.Sort() For Each outputLine in outputLines WScript.Echo outputLine ' how to store this value in excel/ variable? Next objExcel.ActiveWorkbook.SaveAs strExcelPath, xlExcel7 objExcel.ActiveWorkbook.Close objExcel.Application.Quit This above code is working fine but the qs is is there any way to store the sort data in variables / in the excel and how?

2850