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 SkipVought 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. 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

    I figured this out... it was the right combination of the propagation flags and inheritance to make files and subfolders work as desired!!
  3. 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...
  4. Becks25Not

    InstallAllUsers doesn't

    Thanks Sorwen for responding!! more info ... I install from my account (Admin) for all users I log in as a regular user I can see the application and I can launch it but I cannot write to the app's directory. I am giong to look at moving the data that gets written to.
  5. Becks25Not

    InstallAllUsers doesn't

    I was playing around a little more. I uninstalled it and re-installed it as myself (I am an admin on this box). I logged in as my test account (regular user) and they got an access denied to the config file.
  6. 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...
  7. Becks25Not

    Cutsom Balloon Tips w/ Notify Icon

    Hi All, Thanks for responding!! Borvik, that is exactly what I was looking for!! Sorwen, I am sorry -- I should have been more clear. I am using the NotifyIcon but as is, you only get a boring yellow tool tip that you click on the whole theng then have to launch something else. Thanks again...
  8. 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
  9. Becks25Not

    Unhandled Exception

    Its C:\WINDOWS\assembly on my machine -- then just look for the name
  10. Becks25Not

    Unhandled Exception

    I have found this is caused by 2 things: 1) Missing assembly (or wrong version) 2) Network app but the CAS was not set
  11. Becks25Not

    Administrative Powers

    You could also right a Windows Service installed as a Local Service to interact with your application. Local Service apps have heightened local privileges but no network.
  12. Becks25Not

    Deployment issues

    I believe this error is actually that the dll's on the macchine do not match the dll's in the application. Try changing your Crystall Dll's to Copy Local = True.
  13. Becks25Not

    RowState Problem

    I actually dumped the values before and after and they are the same!! Null to Null, space to space I wrote a routine to check and cancel the Modified if there really wasn't any changes but its just extra processing.
  14. Becks25Not

    RowState Problem

    I am not getting an error -- the rows says that they are modified when nothing in the row has changed. It happens after the row has been displayed in the bound controls.
  15. 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...
  16. Becks25Not

    Dock and Anchor problem

    Never mind -- apparently the Max Size got set on these panels somehow and that overrides the dock so the controls weren't stretching / moving because the panel wasn't moving.
  17. 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...
  18. Becks25Not

    Catch exceptions in databound forms

    You can catch it in the parse. when you set up your binding: ''' <summary> ''' Sets up a data binding between specified column and specified control ''' </summary> ''' <param name="Column"></param> ''' <param name="Ctrl"></param> ''' <remarks></remarks>...
  19. Becks25Not

    Find sql server on a network

    You can use SQL DMO ''' <summary> ''' Gets a list of servers ''' </summary> ''' <returns></returns> ''' <remarks></remarks> <Description("Gets a list of servers")> _ Public Function GetServers() As String() Dim ServerNameList As Global.SQLDMO.NameList...
  20. Becks25Not

    Programatically determine if a table field has been used in a report

    I found that if you use the Crystal Decision dll's version 9.1.5000.0 (the ones w/ VS 2003), the UseCount still works. While the SQL statement is not extact, it can sort of be built: Start:\ rptdoc = New ReportDocument rptdoc.Load(ReportFileAndPath) _Database = rptdoc.Database...

Part and Inventory Search

Back
Top