Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 Please help me

Author  Topic 

sharma.iitm
Starting Member

2 Posts

Posted - 2009-01-13 : 07:02:20
Hello all I am after a bit of help please.

Not sure if this is software or hardware related so here goes.

My application is front end VB and backend sql ( MSDE).

I am having this problem were randomly i will get a message displaying and are all listed in the event viewer Application.

Hanging application POS.exe, version 1.0.0.0, hang module hungapp, version 0.0.0.0, hang address 0x00000000.

These errors we are getting on the client systems not on the server.
Hanging application rundll32.exe, version 1.0.0.0, hang module hungapp, version 0.0.0.0, hang address 0x00000000.

My System has got very good configuration.

Please help….
Regards,
Sharma

darkdusky
Aged Yak Warrior

591 Posts

Posted - 2009-01-13 : 07:38:27
A hanging application can have many causes.
I would add more feedback into the VB application especially variable values etc. Show values in cases of error e.g in Try Catch blocks.
Go to Top of Page

sharma.iitm
Starting Member

2 Posts

Posted - 2009-01-13 : 07:50:28
Thanks for the reply. Can you please suggest what could be the solution? Is that any network issue or any other?
Go to Top of Page

darkdusky
Aged Yak Warrior

591 Posts

Posted - 2009-01-13 : 09:40:27
It is impossible to give solution until we know more about the problem. Output variables etc when error occurs and you will know more about cause of problem.

E.g.
Dim strMsg As String
Try
'Code where you fill variables, perform loops or connect to external data
'
'
lblMessage.Text = ""
Catch ex As Exception
strMsg = Left(ex.ToString, 1000) & " " & strVar1 & " " & strVar2 'etc
lblMessage.Text = strMsg.ToString
End Try
Go to Top of Page
   

- Advertisement -