Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
 
  HOME    TRACKER    Visual Basic




Excel Sheet On A Form


Hey i'm new to Excel and are creating a program to enter items onto a list. I would like to do it using an excel spreadsheet embedded on my form if i could. Is there any way of doing this. I have looked at macros and don.t think they are what i'm looking for. Is there an Excel Api in VB 6.0? Thanks.




View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread
Loading An Existing Excel To An Excel Sheet On A Form
How can I load Sheet1 of a current Excel program to a sheet object on my VB form? I don't want to load the entire app, just one sheet.

thanx.

Copy Excel Sheet To A Form's Excel Control
I have an Excel workbook. In this workbook I have a VBA form which contains an Excel Spreadsheet control. I want to copy a sheet from the actual workbook to the workbook of this control in my form. I've searched the forums and learned how to copy, but it doesn't seem to cooperate with the control. Any other methods? Thanks.

Excel-sheet Into A VB-form ??
Today I transfer some figures from my VB-application to an excel-sheet,
and then a graph automaticly generated in excel. Is it possible to copy
this graph back into a form in VB, so the user don't need to go into excel and see the graph ??.

Using A Excel Sheet In A Form
Hi.
I want to use an excel sheet in a form and read the edited values in the sheet.
First I inserted an "insertable object" Microsoft Excel Woksheet. However i can't access the values that the custumer puts in my sheet. I want to use something like:

Var1=Sheet.Cells(1,1)

It's that possible?
Anyone have any trick?

Thanks in advance!

VB Form To MS Excel Sheet
How do I take the data from the VB form (textbox) to the MSExcel Sheet TO THE REQUIRED CELL?
Will be helpful if you give the VB code for the same.
Do I have to install any new component for this?

Thanks,
Ram.
gsramkumar@lycos.com

Excel Sheet On VB Form
I am using VB6
I want Excel sheet on the VBform and link values from a particular cell to a text box on the form. How do I do it?

From Form To Excel Sheet
Hi everyone,
This is in Excel.
I've created a simple form where to ask the user for a filename location and ask them to put it in a textbox. When they click on OK, the form closes fine. How do I get the program to switch over to the Sheet's code and start doing that?

Excel Sheet On Vb Form
Is there a way you can have an excel sheet on a vb form.

Calling Excel Sheet To Vb Form
Private Sub CmdOpen_Click()
Dim xlsname
Dim AppExcel As Excel.Application

CmDialog.ShowOpen
xlsname = CmDialog.FileName
Set AppExcel = CreateObject("Excel.Application")
AppExcel.Workbooks.Open FileName:=xlsname
AppExcel.Visible = True
End Sub

Hi Here is a small code which opens an excel application. But this application opens seperately, I want this Excel application to open in Vb Form control such as frame or anything, but must be on a form. Can any one suggest me. Urgent.

Thanks.

Excel Sheet Embedded In Form
I am writing a code in VB6 and I want an excel sheet to be embedded in one of my forms. I tried using the code from other threads but when i say exob.visible = true, it shows the excel sheet in MS Excel, and not inside the form in which i wrote the code.
Now for my 2nd problem. Assuming I have a certain number of rows(variable) when the form opens the excel sheet and I make a new entry(entire row) in the excel sheet. How do I program my form so that I can extract the cell values not knowing(i.e without hard coding) the row number that was last entered.
Thirdly, is there a way to call a VB procedure using some action(tab press or return press) in the excel sheet. I want some cell values extracted as soon as a couple of entries are entered in a row and the rest of the row entries extracted when all entries are made in the row.

I know my question was long and wierd. But hope you can help me out, give me some code as a solution.
Thanks.
jjjhhh

Populating Excel Sheet From A Form
Please can somebody help me. I am new to VBA and need a few pointers / handy bits of code.

I want to populate an excel spreadsheet using a VBA form in the same application. Basically I want to transpose the data from the form into the sheet.

E.G Textbox 1, Textbox 2, Textbox 3 etc to A1, B1, C1 upon enter. I then want the code to look for first available empty row and repeat the
process when enter is pressed again and if workbook is closed / reopened (e.g A2, B2, C2)

Can anybody please help?

(I can work the form and the text boxes out I just can get the code to automate the populating).

Many Thanks!

Printing An Excel Sheet From A VB Form
Hey all,

I recently discovered this forum, and I've been refering to it from time to time for help with a project I'm working on.

My question is does anybody know how to print an Excel sheet from a VB program? My program, in a nutshell, takes various data from the user, and then performs a lot of math on that data and then puts all the results onto a form for the user to see. I have also added a 'save results' button, which saves (using a common dialog save box) all the data to an excel sheet for easy viewing, but mainly for easy printing. So as it is now, I can run the VB program, get my results, click the 'save results' button, close the VB program, open the Excel file I just saved, and then print it through Excel's print menu. What I want to be able to do is never have to open Excel. I just want to populate the sheet using VB (which I have gotten to work), and then print that same sheet using VB (which I have not gotten to work).

Any ideas or suggestions? Thanks in advance for your help.

-dwm

Display Excel Sheet Within A Form
Hi all

i hope this thread in the right place.
Simple enough question.

Whats the best way to display an excel spread sheet on a vb form that would make it readonly.

At the moment i am using the web browser.
if i use this the user can edit the cells(although the cant save it)

Any thoughts?

Thanx in advance
Shane

Vb.net Form To Excel Sheet Loop
Greetings and thank you in advance,

I am working on a small project to log daily trades for a small futures trading firm. I have stumbled my way through it and figured out how to create a spreadsheet and write an entry into the first row. However, from here I am stuck. I cannot figure out how to write a loop that will allow me to put in multiple entries. Please let me know if this is possible and how I should go about it. I have attached the portion of my code for the first entry. Thanks.

Dim xlApp As Excel.Application
Dim xlBook As Excel.Workbook
Dim xlSheet As Excel.Worksheet
Dim Row, Col, CountRow, CountCol As Int32


xlApp = CType(CreateObject("Excel.Application"), Excel.Application)
xlBook = CType(xlApp.Workbooks.Add, Excel.Workbook)
xlSheet = CType(xlBook.Worksheets(1), Excel.Worksheet)
Part I would Like to loop
xlSheet.Cells(Row, Col) = AccountBox.Text
Col = Col + 1

If BuyCheck.Checked = True Then
xlSheet.Cells(Row, Col) = LotField.Text
Col = Col + 2
ElseIf SellCheck.Checked Then
Col = Col + 1
xlSheet.Cells(Row, Col) = ("-" & LotField.Text)
Col = Col + 1
Else
Col = Col + 2
End If

xlSheet.Cells(Row, Col) = CommBox.Text
Col = Col + 1

xlSheet.Cells(Row, Col) = PriceField.Text
Col = Col + 1

xlSheet.Cells(Row, Col) = TicketField.Text
Col = Col + 1

xlSheet.Cells(Row, Col) = TraderBox.Text
Col = Col + 1

If FloorCheck.Checked = True Then
Col = Col + 1
Else
xlSheet.Cells(Row, Col) = " X "
Col = Col + 1
End If

xlSheet.Cells(Row, Col) = ExBox.Text
Col = Col + 1

If FloorCheck.Checked = True Then
xlSheet.Cells(Row, Col) = " X "
Col = Col + 1
Else
Col = Col + 1
End If

xlSheet.Cells(Row, Col) = "BROKER"
Col = Col + 2

DateBox.SetSelected(0, True)
xlSheet.Cells(Row, Col) = DateBox.SelectedItem

Row = Row + 1
Col = 1

End Loop

How To Open An Excel-Sheet In A Form
Hi,
can anyone of you tell me how i can open and display a Excel-Sheet in a programm i wrote without opening Excel in a seperate Window?

Thanks

akademos

Importing Data From One Closed Excel Sheet Into Another Open Excel Sheet
Dear all,
   I am VBA newbie ... I need your help in importing the data froma closed excel document into another excel document.

Please help.
Cheers
Vivek

Excel Sheet On Visual Basic Form
Hello,
I working on a project where I want to open a excel sheet whitin a visual basic form.
then i want to use my visual basic program to modify data on that sheet
can someone please help me with this?

thanks
Andre

Populating Combobox In Excel Form From Sheet
Let's say I have a list of ten names in cells A2-A11 (and title "Names", in A1).

I would like a form to appear when running a macro (I know how to do this), but would like the 10 names to be in a dropdown box in the form, and when a button is clicked this assigns a variable with the value in the box. (Lets say the variable is "centre").

How would I go about this?

The only bit I'm stuck with is bringing the ten names from the sheet into the dropdown.

Thanks for any help.

Loading EXCEL Sheet's Values In The VB Form
Hi gurus,

I have an EXCEL file with many sheets in that. From one of the sheets (let's call it XYZ), I have to open a VB form whose fields will be populated by the values from some of XYZ sheet's columns.
I have the form (and its executable), the button on the XLS sheet. When I click the button, the form is opened but I don't know how to populate FORM's fields by the values in the sheet.

Can someone pls help me in that.
Thanx in anticipation,
Regards

Form Variables To A Excel Spreed Sheet
Sorry if this has been answered. Can't seem to find it.

I created a VB form. Has Combo and text boxes. Once the data is inputed into the form I would like to transfer that data from the inputed variables to a cell within the spread sheet. How is that done?

Thanks

Excel Sheet In Visual Basic Form
Can someone tell me how to open and edit a excel file whitin a visual basic form
Thanks
Andre

Passing A Excel Sheet Object From One Form To Another
Hi,

I have 2 forms lets assume its A and B. I want to pass a excel sheet object from form A to B so i can run a macro in the excel sheet from the form B.

How can i pass a object from one form to another.

thanks

Moving Form Data Into Excel Sheet
I have an Excel spreadsheet with some colum headers and VB form with some text boxes for a user to enter in data. How do I format the data they enter to fit into my spreadsheet? And then how do I actually move the data from the form to the spreadsheet?

Thanks
-Zoeith

Insert Into A New Excel Sheet Data From A VB6 Form
Hi,
I am trying to put the data from a table into an Excel spreadsheet. People I work with said that they have done something like the following, but are not quite sure of the systex. THey said this should create the spreadsheet and insert the data. However, no matteres how I do this it comes back with either "incomplete query cluase" Or " Syntex error. I think I can do this with loops, but if I can get this statement to work it would be better.

Here is the code I have:

SQLStr = "SELECT * INTO '[Excel 8.0; Database = G:APPOMerlsS2.XLS].[Sheet1]' FROM tblFinalOut"
CN.Execute SQLStr

Any ideas would be greatly appreciated.
Thank You




Edited by - itmasterw on 2/18/2005 10:08:02 AM

Importing Excel Data Form One Sheet To Another One
hello friends!!! I hope someone can help me.... I have two worksheets in excel. In the first one I have all of my data. In the second one I want to create a report from the data of the first worksheet. How can I import that data to the second one, where I want to create my report?



Edited by - despianj on 3/5/2003 9:12:48 AM

Open Excel Sheet From Vb And Display It In The Vb Form
Hi
I am trying to open an excel sheet on click event of button and display it then on the same form.Later once the sheet is openend I need to manipulate with the cells.
Thanks in advance
Pali

Excel Sheet As Data Entry Grid On Form
Is it possible to put (and manipulate) an Excel sheet on form to use as an user entry grid for data? If so, how?

I want to limit the columns that are viewable (6), resize columns, & put labels in row 1, hide the column & row headers, etc. In effect, I'd like to visually have a plan grid to allow the user to enter information for as many rows as necessary.

Initially, I tried using a DBGrid (with no data source) but I could not find a way to allow me to activate the 'New Record' row even with AllowAddNew = True.

So, I've put an OLE container control with an Excel sheet on my form. However, I can't figure out how to get to the sheet to do the above things in code.

Can anyone give me some ideas (either on the Excel method, the DBGrid method, or some other method of grid input? Please!!!
Thanks,
Nate

Excel: Writing From Macro Form To Text Box On Sheet
There are two boxes that seem like they would work for me. I just need to automatically fill in a text box from a form. There is a label command available on the Forms toolbar and a Text Box command on the Drawing toolbar. From my limited experience with VB, it seems like I somehow need a label for these boxes. I need to have a label so I can send a value to the right place. Can someone help me out? I couldn't find any help by searching this forum.

There's also an Edit Box command that's not enabled on my toolbar.

Increase Colums With Ole(1) With Excel Sheet Loaded On The Form
Anyone

How to increase Columns when Ole(1).object is loaded with Excel Worksheet
it displays maximum 10 columns when Form is Loaded
Would like to display atleast 14 to 15

Any place in Properties Box where i can increase the colums?


OLE(1).Object.Sheets...................->
How to increase columns ?

Regards
Sam F

Using #s From Excel Spreed Sheet To Fill In Online Form.
I have a column in Excel with tracking numbers for packages. Most major shipping companies i.e. USPS, FEDEX, and UPS let you track your package online. However you can only do this one at a time. Is there a way to put these numbers (one at a time) into the text box and press the enter button on the web site? I need to keep track of the time it takes to get to a customers house. There are thousands of numbers. This could really save a lot of time for me. Any help is greatly appreciated.

Edit Excel Sheet OLE Object On MS Access Form
Hello,
I need some guidance on how to be able to access and edit the content of unbound OLE exel object on an Access form via VBA.
i cant find anything on the internet.. please anyone ?
thanks in advance,
Mimi

Linking Combox In Excel Form To Range On Another Sheet
Excel 2007

I have two sheets, on the first I have a form that I call up and in this form I have two radio buttons that when clicked I want to populate the values of a drop-down combox box. Basicall I have the following code written. I think it's real clsoe but the data I want to fill the combo box with is on the second sheet. How do I call out the range on the second sheet to populate the box in a form on the first sheet?


Private Sub StateMNRadio_Click()
    If Me.StateMNRadio = True Then
        Me.ComboBoxSignCompany.RowSource = Worksheets("DataSheet").Range("A2:A100").Value
    Else:
        Me.ComboBoxSignCompany.RowSource = Worksheets("DataSheet").Range("B2:B100").Value
    End If
End Sub

VB Code To Fill Textboxes From Excel Sheet To VB Form Needed
G'day All,

I am in need of help with this one. I can populate an excel sheet from data supplied on a VB Form (then placed in a database etc.).

The excel sheet then does its thing with some calculations. I now need to fill in textboxes on the form with the results of the calculations but, for the life of me, I am unable to work out the code to to fill in the required textboxes.

Any help would be greatly appreciated with this one.

Thanks.


HTML Code:
Set AppExcel = CreateObject("Excel.Application")
Set wBook = AppExcel.Workbooks.Open("S:Margins Form.xls")
Set wSheet = AppExcel.ActiveWorkbook.Worksheets("Sheet1")
'do not show excel workbook
AppExcel.Visible = False
AppExcel.DisplayAlerts = False

Call GetSummaryInfo
' xxxxxxxxxxxxxx send data to excel/ print etcxxxxxxxxxxxxxxxxx

AppExcel.Quit
Set AppExcel = Nothing
Exit Sub

End Sub

Export Values From Visual Basic Form To Excel Sheet
hi to all

i want export values from Visual Basic Form to Excel sheet

pls send me solutions

from

ankush

Building A Word/Excel Like Data Sheet In A Visual Basic Form
I want to build a form in Visual Basic 6 which looks and acts like a Word table or an Excel data sheet, and enables the user to retrieve data from an Access mdb database, update it, insert new rows in the middle or the end of the sheet, delete rows etc.
What is the best way to do this ? Is there an existing control I can use or should I program everything myself ?
(I don’t want to use an actual Word document or Excel sheet inside my application with OLE, but to build a form which acts like it).

Concating Data Of More Than One Excel Sheet To One Sheet In The Same Work Book
Dear

I want to concate data of sheets in to another sheet in the same work book through VB.Please help me

VB In Excel - Trying To Display Cells From Sheet To Sheet.
I'm going to go ahead and appologize for asking this, but I have no idea where to even start to search.

What I am trying to do is run and excel macro that will look for an specific enrty in column A. The entry it is searching for can happen multiple times. I want it to then display the information in columns B-F, respective to the the criteria in column A. (If the search is met in column A, that row I want displayed on a new sheet within the workbook)

I'm pretty sure that I can get info to display from one sheet to another. But my problem is how to run the loop so that it will search column A, and dipslay all respective information in columns B-F, if their column A meets the criteria. And stop when it gets to the bottom of the data, obviously.

Any help is so much appreciated. Also if you could just refer me to another section/topic, that will work too. Thanks in advance.

-g2

One Excel Sheet Monitoring Another Sheet's Events
I've written some macros that open an excel workbook and when an account number is typed into a user defined cell or cells the name associated with that account number is plugged into another user defined cell from the workbook the macros opened. I think my co-workers would find these macros very useful, the problem is none of them are very computer literate, and I don't want to have to go around and set these macros up on their excel workbooks. I would like to have these macros stored in a single sheet, but be triggered by the events of the sheets created by my co-workers without them having to insert any code into the sheets they create... just insert the sheet with the macros. Does anybody know if this is possible?? I appreciate any of the help I can get!!! I'm getting frustrated!!!

Need VB Code To Insert A Row For A Subscripted Line In Excel & Code To Search For Amounts On One Sheet And Apply Them To Certain Area On Another Sheet
I am in the process of developing an Excel spreadsheet and need assistance
in adding visual basic code to automate it.

The first thing I am trying to do is to create a macro where a user can
click on a certain button, and the program will insert a row at a specific
row and will copy all formulas associated with the row above it. For
instance, if you have a spreadsheet that has 10 rows and 3 columns in it,
you can insert a subscript line below row 5 and call it 5.1. When the
subscripted row "5.1" is added, it will include the same formulas as in row
5, which would add columns 1 and 2 in column 3.

The second thing I am trying to do is have some code that if a user enters
information on Sheet B that needs to also be included on Sheet A, the code
will search Sheet B to see it an entry made on Sheet B should be carried to
a particular row in Sheet A.

I would greatly appreciate any feedback anyone can give me regarding this.
Thanks in advance.

Is't Possible To Put "Data" In Excel Sheet Or Value In DBGrid On Excel Sheet
I would like to Export Table .mdb connect with Data1 to an Excel Sheet. Is't possible with VB code?

Second option I have the same data in DBGrid is't possible to put Data in DBGrid on Excel Sheet.

Thanks
Redg

Excel Sheet Question {excel Has Encountered A Problem And Must Shut Down}
I have a question on a form that transfers information to an excel sheet. What I have is a button that when you click it, it sends 4 pieces of information to an spread sheet. My problem is that it works just fine on my machine, but when I install it on a user system if I click it is said that "excel has encountered a problem and must shut down". It shuts down the excel program and my app. Can anyone give me a clue as to why this is happening?
Code use for this is:

Private Sub Excel_Transfer()
Dim sValue As String
Dim sValue2 As String

sValue = txtReqForm(2).Text ' assignes value in text box to string value
sValue2 = txtReqForm(5).Text

Dim oExcel As Excel.Application ' Sets up the excel transfer
Dim oWB As Excel.Workbook
Dim oWS As Excel.Worksheet

Set oExcel = New Excel.Application
oExcel.Visible = True ' Sets up excel sheet to be seen

' Dim oRng1 As Excel.Range

Set oWB = oExcel.Workbooks.Open(modMain.ExcelPath) ' Sets path for the excel document to open
Set oWS = oWB.Worksheets("Sheet1")

Set oRng1 = oWS.Range("A28") ' Sets range in excel cells to modify
Set oRng2 = oWS.Range("B28")
Set oRng3 = oWS.Range("F28")
Set oRng4 = oWS.Range("M28")

oRng1.Value = "1" ' Sets values for the cells to be passed.
oRng2.Value = "ea."
oRng3.Value = sValue
oRng4.Value = sValue2
End Sub

How To Call Excel From Vb And Save The Contents Of Excel Sheet In To Database
Hi folks

I want to retrive the details from Database to excel sheets.After displaying the data in excel sheets from Dataabse, let the user update the record the record and now the updated record should be saved in database

Sorting Rows In An Excel Sheet: VB6 And Excel 2000
OK, I was able to create a function that sorted the tabs in a workbook to the correct order, heres the code:

VB Code:
ublic Function ArrangeTabs(Workbook As Excel.Workbook, ExcelSheets() As String) As Boolean    Dim objWorksheet As Excel.WorkSheet    Dim i As Integer    'on error goto HandleError    i = (UBound(ExcelSheets) - 1)    Do        Set objWorksheet = Workbook.Worksheets(ExcelSheets(i))        objWorksheet.Move Workbook.Worksheets(ExcelSheets(i + 1))        i = i - 1    Loop Until i = 0        ArrangeTabs = True    Set objWorksheet = Nothing    Exit Function HandleError:    ArrangeTabs = False        End Function


BUT, I want to do the same thing with the rows on a particular sheet...and I am having a he!! of a time putting the functiion together...here is what i have so far:

VB Code:
Public Function ArrangeRows(Workbook As Excel.Workbook, Sheet As String, Column As String, startRow As Long, endRow As Long, Rows() As String) As Boolean    Dim objWorksheet As Excel.WorkSheet    Dim objSelection1 As Excel.Range    Dim objSelection2 As Excel.Range    lngRow As Long    Dim i As Integer    Dim ii As Integer        Set objWorksheet = ExcelWorkbook.Worksheets(Sheet)    objWorksheet.Activate    'on error goto HandleError    i = UBound(Rows) - 1    Do        lngRow = findRelativeRow(Workbook, Sheet, Rows(i), Column)        objWorksheet.Range(Column & lngRow).Activate        objSelection1 = ActiveCell.EntireRow.Select        lngRow = findRelativeRow(Workbook, Sheet, Rows(i - 1), Column)        objWorksheet.Range(Column & lngRow).Activate        objSelection2 = ActiveCell.EntireRow.Select                                i = i - 1    Loop Until i = 0                ArrangeRows = True    Set objWorksheet = Nothing    Exit Function HandleError:    ArrangeRows = False        End Function

Once Form Opened, How To Shift Back Focus On Sheet While Form Is Still Open?
Hi,

Once I run my macro and my form is opened, the focus is entirely on the form and I cant select my excel workbook( or any workbook for that matter).

Is there any way that my macro is still runnin, i.e. form is still open (maybe a minimize option..) while i can select and change some values in my workbook..

I tried the myworksheet.activate but it doesnt solve the problem. Any help?

Thanks...

How To Get Sheet Name From Excel Using VB6
ok.. i have code that imports an excel spreadsheet.. right now.. i have hardcoded the following line which works unless the spreadsheet page name is something else..

Set ws = wb.Sheets("Sheet1")

how can i set this using a variable so the sheet name doesnt have to be "Sheet1" in order to get this to work...

code
=========================================================
'Imports the new Data from data managment into temp table
Dim Y As String
Dim xl As Excel.Application
Dim wb As Excel.Workbook
Dim ws As Excel.Worksheet

Dim cn As ADODB.Connection
Dim rs As ADODB.Recordset

Dim r As Long
Dim rmax As Long

Set xl = New Excel.Application
Set wb = xl.Workbooks.Open(Y)
Set ws = wb.Sheets("Sheet1") ----- Problem line here...

thanks for the advice

Get The Name Of An Excel Sheet
hello,
i have a program that automates excel from vb. i'm trying to get the name of the active worksheet then assign the name to a variable in vb. does anyone have any ideas on how to do this. i've been trying things like


Code:
txtGraphTitle.Text = ActiveWorkbook.Sheets(Name)

but had no success

thanks a lot

Excel Last Sheet
How do you determine the name of the last sheet in a workbook. Once this has been done how do you add a sheet after the last one, every time I add one it inserts it before

Excel Sheet Name
Hi All,

I am writing an app (in VB6 using ADO2.5) that lets the user select an Excel file for retrieving 2 columns. They have to know the column numbers they want and the Worksheet name for what I have written so far.
What I would like to do is retreive the worksheet name(at least the first one, preferable all so I can put in dropdown) so they dont have to look it up, or maybe there is a way to just use numbers? I currently use

SQL1 = "SELECT * FROM [Sheet1$];"

I was hopeing when I first saw this code it was object Sheet1 rather than name sheet1.

Also if there is 20 columns I am currently selecting all as I couldnt work out how to select just the 2 columns, which is why I using column numbers(by referenceing RS) instead of Alphabet, this slows it down
I tried below, didnt work!

SQL1 = "SELECT B,F FROM [Sheet1$];"
SQL1 = "SELECT 2,6 FROM [Sheet1$];"

Any help Appreciated!
I prefer to use Alphabet Columns if possible

David

Excel Sheet Name
i m getting a run time error of giving type mismatch when i m throwing the sheets name in a combo box, i dunno why its giving this error although its working correct with another excel workbook.

this is the code

For Each shtcon In xlbook.Sheets
Form1.Combo1.AddItem shtcon.Name
Next

when i right move mouse on shtcon.name while in the debug mode it says "object variable or with block variable not set"

any help would be appreciated

waqas

Copyright © 2005-08 www.BigResource.com, All rights reserved