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.
| 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. |
 |
|
|
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? |
 |
|
|
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 StringTry'Code where you fill variables, perform loops or connect to external data ''lblMessage.Text = ""Catch ex As ExceptionstrMsg = Left(ex.ToString, 1000) & " " & strVar1 & " " & strVar2 'etc lblMessage.Text = strMsg.ToStringEnd Try |
 |
|
|
|
|
|