- Upvotes Received
- 4
- Posts with Upvotes
- 3
- Upvoting Members
- 4
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
7 Posted Topics
Your Immediate window says F = Nothing. Line 2 in Function getPFactor(), it appears you're trying to get LBound and Ubound of Nothing.
> Dim invalidcount As Integer = 0 line 25, you are reseting the interger for invalidcount to 0 within the loop, move that line above line 18, outside the loop, and you should be good. On a side note, based on your description, I assume your loop should be up …
my guess would be Office drivers may not be installed. You can download and install the Microsoft Access Database Engine 2010 Redistributable (http://www.microsoft.com/en-us/download/details.aspx?id=13255) [Click Here](http://www.microsoft.com/en-us/download/details.aspx?id=13255) and then retry.
here is a simple script that can be called from command prompt without being a sub or funtion with 2 passed in arguments. This assumes you have Excel installed on the system. First, create a VBS file with the following code: On Error Resume Next Dim fso, folder, files,strPath, strFileName, …
Depends on what you want to do and if you want logging, etc. Would need more details such as what program are you calling? What is your intended outcome? A simple example would be to create VBS file with something like: Call SubToDoSomething() Sub SubToDoSomething() On Error Resume Next 'DO …
$total is reset in your loop to 0 at line 120. try moving line 120 outside of your loop (before line 105). Secondly, you're not adding the $line_cost value to the $total, you're just setting the value of $total to the last value of $line_cost for the last loop. Line …
You state you cleared cookies but may not be cookie but rather a stored active login with bad/corrupted credentials but just a guess based on info provided. Try the following in Firefox to see if bad credentials: Open Firefox and hit CTRL + SHIFT + DEL and add a check …
The End.