| | |
need help.. VBA in access and excel..
![]() |
•
•
Join Date: Jun 2006
Posts: 29
Reputation:
Solved Threads: 0
greetings
i am doing a database system in access and has certain function of creating and modifying an excel worksheet. i keep getting this "Run-time error '462' : Remote server machine doesn't exist or is unavailable" or sometimes "Run-time error '1004' : Method 'Range' of object '_Global' failed"..
it points to this line
when i click on one of my command button
as well as
in a different command button.
here's the code for the function that is called when some1 clicks the command button
OpenExcel function has the declarations for xlApp etc2..
the pointed error "Range(checker1).Select" exists in the functions "WaferSortAddProduct" and "AssemblyAddProduct", which i stored in a module, which btw, this function also exists in the same module... i use the range and select thing to modify the property of the cells, some merging, fonts, formula, borders and default values. i copy and modify it from excel recorded macros.
weird thing is, it works on the first run, then on the second run it gives the run time error, which then it works again on the third run and fails on the fourth run.. it goes on and on in that sequence..
also i can't seem to end the excel process.. i tried using all the codes that i could get my hands on but none of them actually ends the process.. after each try i have to manually end the process in task manager..
i'm getting really frustrated over this part.. i'd really appreciate any form of help/feedback.. thanks in advance
-osman-
i am doing a database system in access and has certain function of creating and modifying an excel worksheet. i keep getting this "Run-time error '462' : Remote server machine doesn't exist or is unavailable" or sometimes "Run-time error '1004' : Method 'Range' of object '_Global' failed"..
it points to this line
Visual Basic 4 / 5 / 6 Syntax (Toggle Plain Text)
Range(checker1).Select
as well as
Visual Basic 4 / 5 / 6 Syntax (Toggle Plain Text)
ActiveWorkbook.Close True
here's the code for the function that is called when some1 clicks the command button
Visual Basic 4 / 5 / 6 Syntax (Toggle Plain Text)
Dim checker(5) As String Dim insertion As Integer OpenExcel Set xlApp = CreateObject("Excel.Application") Set xlBook = xlApp.Workbooks.Open("C:\Osman\ABP-FET Reference.xls") insertion = 0 Do MsgBox (insertion) 'i added this for trial runs only, to check if it ' follows the correct sequence Set xlSht = xlBook.Worksheets("Wafer Sort") Set xlRng = xlSht.Cells((insertion * 4) + 7, 3) checker(1) = xlRng.Value Set xlRng = xlSht.Cells((insertion * 4) + 7, 4) checker(2) = xlRng.Value Set xlSht = xlBook.Worksheets("Assembly") Set xlRng = xlSht.Cells((insertion * 4) + 7, 3) checker(3) = xlRng.Value Set xlRng = xlSht.Cells((insertion * 4) + 7, 4) checker(4) = xlRng.Value insertion = insertion + 1 Loop Until checker(1) = "" And checker(2) = "" And checker(3) = "" And checker(4) = "" ' checking for empty cells insertion = ((insertion - 1) * 4) + 7 MsgBox (insertion) 'trial run purposes, to check on which row product 'will be added DC = InputBox("Please insert D/C", "Add") PN = InputBox("Please insert P/N", "Add") Set xlSht = xlBook.Worksheets("Wafer Sort") xlSht.Activate dummy = WaferSortAddProduct(insertion, DC, PN) Set xlSht = xlBook.Worksheets("Assembly") xlSht.Activate dummy = AssemblyAddProduct(insertion, DC, PN) xlApp.Application.UserControl = True xlApp.Application.Visible = True ActiveWorkbook.Close True xlApp.Application.Visible = False xlApp.Quit Set xlRng = Nothing Set xlSht = Nothing Set xlBook = Nothing Set xlApp = Nothing
OpenExcel function has the declarations for xlApp etc2..
the pointed error "Range(checker1).Select" exists in the functions "WaferSortAddProduct" and "AssemblyAddProduct", which i stored in a module, which btw, this function also exists in the same module... i use the range and select thing to modify the property of the cells, some merging, fonts, formula, borders and default values. i copy and modify it from excel recorded macros.
weird thing is, it works on the first run, then on the second run it gives the run time error, which then it works again on the third run and fails on the fourth run.. it goes on and on in that sequence..
also i can't seem to end the excel process.. i tried using all the codes that i could get my hands on but none of them actually ends the process.. after each try i have to manually end the process in task manager..
Visual Basic 4 / 5 / 6 Syntax (Toggle Plain Text)
xlApp.Quit Set xlRng = Nothing Set xlSht = Nothing Set xlBook = Nothing Set xlApp = Nothing
i'm getting really frustrated over this part.. i'd really appreciate any form of help/feedback.. thanks in advance
-osman-
Last edited by BombAppetit; Jul 4th, 2006 at 11:45 pm.
Hmn, I don't seem to get that error when I run your code on my box... I wasn't sure how your ABP-FET Reference.xls file looks, so I kind of guessed, and maybe that's the issue (probably, if it's a problem with a text range), but umn..... it seems to work for me....maybe you could attach both the .xls file and the .vbs file in a .zip file.
![]() |
Similar Threads
- VB: Connect to Access database via ODBC datasource name (Visual Basic 4 / 5 / 6)
- Writing to an Access Database (Visual Basic 4 / 5 / 6)
- Date fields imported from access file to excel spreadsheet is converting to number (Visual Basic 4 / 5 / 6)
- Using VBA with Access (was: Please Help!!!) (Visual Basic 4 / 5 / 6)
- How to read from serial port into excel (Visual Basic 4 / 5 / 6)
- Good Luck w/This one: Excel Question VBA/Macro/other (MS Access and FileMaker Pro)
Other Threads in the Visual Basic 4 / 5 / 6 Forum
- Previous Thread: Change icon of an Exe file created in VB
- Next Thread: Sound manuplating in vb 6
| Thread Tools | Search this Thread |
* 6 429 2007 access activex add age application basic beginner birth bmp calculator cd cells.find click client code college component connection connectionproblemusingvb6usingoledb copy creat ctrl+f data database datareport date delete dissertations dissertationthesis dissertationtopic edit error excel excelmacro file filename form hardware header iamthwee image inboxinvb internetfiledownload keypress label listbox listview liveperson login looping machine microsoft movingranges number objectinsert open oracle password prime program prompt range-objects readfile reading record refresh remotesqlserverdatabase report save search sendbyte sites sort sql sql2008 sqlserver subroutine tags textbox time urldownloadtofile vb vb6 vb6.0 vba visual visualbasic visualbasic6 web window windows





