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 wOOdy-Soft 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: *

  • Users: Becks25Not
  • Content: Threads
  • Order by date
  1. Becks25Not

    Clicking on an ErrorProvider

    Hi All, I am using an error provider. I am having the problem that when you click on it, it no longer shows the tooltip. There is not an on click event to prevent this from happening. I tried resetting the error provider in the form's click event but that did not work. Any ideas? Thanks...
  2. Becks25Not

    Setting Dir Permissions programmatically doesn't work

    Hi All, I have this code here Dim dir As String = "D:\test\" Dim Account As String = "BUILTIN\Users" Dim act As Security.AccessControl.AccessControlType = Security.AccessControl.AccessControlType.Allow Dim fsar As Security.AccessControl.FileSystemAccessRule = New...
  3. Becks25Not

    InstallAllUsers doesn't

    Hi All, I have a set up project that I have the InstallAllUsers to True. I have also turned the option off on the interface. I actually run the install via command line with progress bar only interface. I log in to my test account and run the installation (everything is fine) but then when I...
  4. Becks25Not

    Cutsom Balloon Tips w/ Notify Icon

    Hello All, Does anyone know how to recreate something similar as Outlook when new mail comes in where the Balloon tip in the system tray gives you a preview, lets you delete ot flag it or open it right from the balloon? Any help, direction, ideas etc would be most appreciated!! Thank you, Becca
  5. Becks25Not

    RowState Problem

    Hi All, I have a form with a grid and some controls. I have a data table bound to the grid and the controls are bound to the current row in the grid. My problem is, the row always says its modified after its been active (meaning had the focus in the grid) even though none of the column values...
  6. Becks25Not

    Dock and Anchor problem

    Hi All, I have a form with several panels docked (top, bottom and fill). On each of the panels, I have several different controls. My problem is: When I rezize the form the anchored controls do not behave the way anchored controls are suppose to behave. (the panels that are docked adjust...
  7. Becks25Not

    Win Service CPU Usage

    Hello All, I have a windows service that works as it should. My server admin has a concern because when it runs, it will use up to 95% of the CPU. It frees up all the resources and memory usage when it was done but he is concerned about the spikes. I tried setting the thread to BelowNormal...
  8. Becks25Not

    Users on a Machine

    Hi All, Is there a way to get a list of all the users who have logged onto a machine? I tried System.Management.SelectQuery("Win32_UserAccount") but it gave me a list of all users in all of AD, not just the local machine. I also need to determine the last time they logged in. Any ideas...
  9. Becks25Not

    App won't run on server

    I have an application that when I remote into the server, I get an unhandled exception has been generated. If I launch the app from my computer browsing to it, it opens just fun. The framework is installed on the server and the app use to work. I also have a Windows Service on the same...
  10. Becks25Not

    Severe SQL Exception from .NET

    Hello, I hava trigger on a table (settings table) that creates a text file after any data changes are made to the table. (The table is not updated requently but several things need to happen when it is). The trigger and everything works if I mahe changes in SQL Manager. But when I execute...
  11. Becks25Not

    Windows Service - Account Selection Help

    Hi All, I have a Windows Service that needs to interact with the local machine as well as various network directories. I also need it to run whether a user is logged on or not. I have done a lot of searching and am going in circles!! I tried LocalSystem but it doesn't see the network...
  12. Becks25Not

    Shared assembly version question

    Hi All, I have an Application that references a Shared Assembly as well as another assembly that references the same shared assembly. I added a function to the shared assembly. When I try to run, I get an error that the version the shared assembly other assembly is looking for cannot be...
  13. Becks25Not

    Self Updating App question

    Hi All, I read on here a while ago about a developer that wrote an app that check against a newtork copy, and if there is a newer version, copies the new version down and restarts itself ... Does anyone know how this is done? Thanks, Becca
  14. Becks25Not

    Documenting Dependencies

    Hi All, I have been searching and found nothing. My company is looking for a tool to store details about our application library such as required directories, databases, custom DLLs that the application uses. The purpose being that we can run a report on an application that will say users...
  15. Becks25Not

    To implement Finalize or not

    Hi All, I have been reading up on performance tuning and have found conflicting information on implementing a Finalize sub. One source says don't do it, another says to. What are you thoughts? Thanks, Becca
  16. Becks25Not

    Sporadic errors w/ CR inside VB.NET

    Hi All, I have an application that creates several reports using Crystal Reports inside of VS.Net (2003). My users get errors but they are very sporadic. If they rerun, everything works fine. There does not seem to be any rhyme or reason to them. Any insight anyone has would be most...
  17. Becks25Not

    App Config updated from network question

    Hi All, I use an app config file for an application I have. I have code to check the local copy against a server copy and update the local if it's change. This works except that the new settings don't take affect until the next time the application is opened. Is there a way to reload the...
  18. Becks25Not

    Using AppDomain.UnhandledException w/ Created Domain

    Hi All, I have been working on a "no touch deployment" project. I have a launcher that creates a domain for the exe to run in. I noticed that my generic error handler stopped working after this was all set up. I found out that the AppDomain.UnhandledException only works in the default domain...
  19. Becks25Not

    Command Window problem while stepping

    Hi All, In my project, I have a break point set. I am trying to see the values that the current sub is working with. It is running through the code just fine, comparing, etc. But, if I type something into the command window, it gives me "Expression cannot be evaluated at this time." Any...
  20. Becks25Not

    Updating Multiple Tables in Same DataSet

    Hello All, I get an error in the follwing code. I have several tables in the dataset. I am trying to update them to the database using the data adapter's update method. I am using command's I created because there are protected columns and I read the command builder is not good for when...

Part and Inventory Search

Back
Top