Search results for query: *

  1. C

    BEGIN/COMMIT with software crash

    Yeah I suspected this was happening, so in your opinion if the crash happened where indicated above - 1 & 2 would already be committed and not rolled back by any such statements in a try/catch containing the rollback, even if ex is thrown from the inner commands? I can see why it's been done...
  2. C

    BEGIN/COMMIT with software crash

    Thanks for the clarification, it MUST be the clumsyness of the VB code then. Rewrite time :nevreness:
  3. C

    BEGIN/COMMIT with software crash

    Hi all, If multiple statements are surrounded by BEGIN and COMMIT transaction commands - are all transactions only committed once the outer COMMIT command is reached? There are nested SQL transactions in my process which also have BEGIN and COMMIT transaction surrounds, I believe that these...
  4. C

    Accessing Windows Mobile Device Center?

    Hi there, I'm working on a batch update system using mobile devices which use WMDC to synchronise files. Because mobile devices do not deploy as a drive on the computer I have found this is the only way. What I would like to do is determine the device name and the synchronisation process and...
  5. C

    Wierd issue...

    I put a message box at the end of the problematic If statement and tried again, this time it jumped to that, seemingly not executing the statement just highlighting the last executable in the function... I'd still like to know why using F10 step over it goes anywhere near that update though...
  6. C

    Wierd issue...

    OK, this is not the first time something similar to this has happened... I think we might need Mulder and Scully to answer the question really, or... am I been especially blond here? 1 question... HOW:
  7. C

    Question Lock Mouse and Keyboard

    It depends on what you are wanting to accomplish / why you are wanting to block input (I'm guessing for some kind of remote administration purpose?). If it is for remote admin purposes can't you just send a form with no controls that is maximised with a message or whatever you want on it? You...
  8. C

    Remove only TRAILING Whitespace?

    Ignore me, RTRIM(string) is what I needed. ! I'll put it down to been monday morning...
  9. C

    Remove only TRAILING Whitespace?

    Hi all, I'm having difficulty with some strings of varying 'meaningful' length from a different database (not under my control) that I am trying to trim in my vb.net code. I only want to remove TRAILING whitespace... therefore, I can't really use .trim method. The reasoning behind this being...
Back
Top