Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. chronics

    Connection Terminated Locally by the client

    VPN Client Version 5.0.07.0290
  2. chronics

    Connection Terminated Locally by the client

    Hi I keep getting a Connection Terminated Locally by the Client error when attempting to connect to my work VPN. This seems to happen after I have switched to another windows user account, then logged off that account and logged back into my main account. If i reboot then it works fine again. I...
  3. chronics

    DateTime Problem

    Hi I have a Windows Forms single threaded application in which i have set the CurrentCulture and CurrentCultureUI to en-GB. UK dates are input dd/mm/yy but for some reason my datatable that takes a datetime only accepts the us format of mm/dd/yy. I have even tried specifically setting the...
  4. chronics

    Saving Messages in Outlook

    Thanks JM. I didnt even realise you could edit the subject in received mail.
  5. chronics

    Saving Messages in Outlook

    thanks JM for the quick reply. If its saving it in the message store is that the ost file, isnt it already saved there anyway making the save button pointless. I would have thought this would be the same if imap/pop as well, once the message is open and downloaded its saved locally.
  6. chronics

    Saving Messages in Outlook

    Hi all Client = Outlook 2003 with Exchange When i open a message in inbox and click file save 1 - Where does it save the message 2 - What extension is it saved with. I have searched and cant find any html or eml files that it would have saved as and it doesnt make sense to me to save it in...
  7. chronics

    MiniDump Analysis

    Youre best option is to tell the customer that you are 95% sure the problem is the HDD. Let her know the only way you would be able to confirm this problem is through more testing which is a reasonable argument anyway. What manufacturer is the HDD, have you tried running the manufacturers...
  8. chronics

    Null Datacolumns

    Thanks for the quick reply JMeckley. Having done a quick test I can confirm the behaviour above. It appears as though the compiler at some point converts null values to DBNull values when a new row is being added but expects an explicit DBNull value when a value within a row is being changed...
  9. chronics

    Null Datacolumns

    Thanks for the quick reply JMeckley but could you help me explain the following code int? myint; if(condition is true) { myint = 5; } else { myint = null; } myDataTable.Rows.Add(2, myint); No Exception is raised when the above code is run even when myint has a null value. However an...
  10. chronics

    Null Datacolumns

    Hi Can anyone help explain to me why I get an exception when i run the following code. I have a datatable that has a number of columns of type int. When I add in a new row I can pass in a value of null to these rows and no exception is generated. When I proceed to iterate through the rows if...
  11. chronics

    100% CPU usage

    You could try sysinternals process explorer. This shows hardware interrupts and dpc's which could give you a much better idea as to whether this is a software issue or some dodgy hardware working with dodgy drivers.
  12. chronics

    Compaq laptop intermitettently freezes, thaws

    Sounds like a HDD with dodgy sectors. I would run the HDD manufacturers diagnostic tools on your system. Strange that it runs in safe mode though, makes it to hard to tell if this hardware or software
  13. chronics

    linq or rowfilter?

    I have since decided to use the rowfilter property as I cant figure out how to do the above with linq. I have also read Rowfilter has better performance anyway.
  14. chronics

    PC locks up after 10 min of inactivity

    I would use msconfig and start by disabling all items from the startup tab that you identify as not being essential. You can probably disable most items as they actually just slow down startup. User a process of elimination to see which item causes the pc to reboot. As an alternative to...
  15. chronics

    PC locks up after 10 min of inactivity

    Does it lockup in safe mode.
  16. chronics

    linq or rowfilter?

    I am attempting to write a query against a datatable in linq. There are 5 comboboxes, each of which have a number of values that can be used to filter the datatable. One of the options for each of the five comboboxes is to not filter the datatable based upon any of the values in that particular...
  17. chronics

    XP boot error -Sytem file missing or corrupt

    I would back up your data and then perform a fresh install. More than likely this error will reoccur again in a few months if you attempt a repair.
  18. chronics

    datarow filter

    The queries arent very complex,there be a maximum of a few thousand rows. Both methods will work and are maintainable but the result of the linq query would then have to use the AsDataView() method anyway which is why im wondering if that may cause a performance drop.
  19. chronics

    datarow filter

    Hi I just have a simple question. is it better to use a dataview with a rowfilter or to use linq as a datasource for a datagridview. When i say better i mean performance wise as im not bothered about syntax. Thanks
  20. chronics

    updates failure after SP3 Installation

    I have sinced installed on a Dell Inspiron 8600 directly after a fresh install. During the backup portion it gave me an error of not being able to copy xpsp2res.dll eventhough this was in the directory windows was looking in. Apart from this no other probs. I also installed on a gigabyte...

Part and Inventory Search

Back
Top