Result = GetPhysLong(Val("&H" + get_reg.Text()), PhysVal) is the line that is throwing the error. I'll try stepping through the code and making sure of that but I know get_reg.Text() is not null so i'll check out the other variables. Any other information I can provide that will help with this I...
The following code produces the error in the subject line. Am I missing something simple?
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim Result As Boolean
Result = InitializeWinIo()
If (Result = False) Then...
Seems to be the fault of user error and that's what we are trying to fix. All except the .pst file thing. A recent back-up was missing the .pst file which is very important to most users. My guess is that the file was in use during the back-up.
The half of the tech dept's. usual procedure is...
I forgot to mention, we are already using Tivoli. JUst finding that it is still inneffective and refuses to backup some important data such as outlook .pst files. We need something company wide that takes the work out of it for the end-user and doesn't require them to have a internet connection...
Thanks for the suggestion gwichman. I'm also looking for things that are outside the box. This is a global company with 36,000 users so I'm assuming the budget isn't limited very much. All the servers here are backed up nightly so that wouldn't be a problem.
Thanks for any suggestions.
My manager here at work has asked for some help on a project she is working on. The project is to improve the current data back-up process which has proved to be pretty much useless. Current back-ups rely on the user and can sometimes miss important files or be horribly out of date.
The new...
I fixed that problem, it turned out to be and order of operations mistake but this one still isn't working right. It will work if there is only one selected but not if there are 2 or 3:
If curhs <> "anyschool" then
strSQL1 = "SELECT * FROM dbo.PCGA WHERE dbo.PCGa.curhs...
Sorry for the quick updates but here's the code that almost works. It works except for the second code block. It appeasr to me to be the same as the first and third but it wont work.
If curhs <> "anyschool" then
strSQL1 = "SELECT * FROM dbo.PCGA WHERE dbo.PCGa.curhs ="...
Updated a Bit:
If curhs <> "anyschool" then
strSQL1 = "SELECT * FROM dbo.PCGA WHERE dbo.PCGa.curhs = " & curhs
ElseIf curhs = "anyschool" then
strSQL1 = "SELECT * FROM dbo.PCGa"
End If
If appfine <> "Any" and curhs =...
I have 3 things being passed from a form. All need to be checked. The code works if all are left alone, basically set to none. If they aren't it whines. I know it's something simple to do with the syntax but I can't see it.
curhs = Request.Form("schoolis")
appfine =...
From what I read you want them to be able to go back and re-submit, you just don't want 2 records. If this is correct, onpnts suggestion wont work for you. I'd suggest storing a session variable and basing the sql string upon. If the session varaible is blank, then Insert * into dbo.blah.blah...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.