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 TouchToneTommy 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. eelisdotnet

    Log reports

    Normally there is one report per day, but occasionally it could be several per day. The limit is set by the user with a default of 30 (approx. one month). Size of each report varies to a maximum of 2-3 KB.
  2. eelisdotnet

    Log reports

    Thanks Christiaan! I thought about this class implementation and actually started to work on it already. I was just wondering whether there is a better way, such as using XML file to list and manage the reports..
  3. eelisdotnet

    Log reports

    Hi I'm trying to figure out the best practice to manage log reports generated by my application. The application generates a log file for each process, and those files are all saved under a specific directory. The log file name is combined of the process name and the date-time of the creation...
  4. eelisdotnet

    Application Updater

    Hello We have a standard windows forms application developed with VS2003 and .NET 1.1. The application is deployed with msi package created with the VS setup and deployment project. Could you please help me focus on the best method how to update the application files on the client machine...
  5. eelisdotnet

    Security permission of file

    Hi I'm trying to check a file for its security permissions to determine if it is writeable or not. The code looks like that: Function IsFileWritePermission(ByVal sFileName As String) As Boolean Try Dim fp As FileIOPermission fp = New...
  6. eelisdotnet

    Installation package modification

    Hi Im having an installation package created with VS.NET. currently it has only the standard user interface dialogs. I would like to have another dialog during the installation (on the Start section) where the client can type the product license number. Then the installation should call a...
  7. eelisdotnet

    Language switching

    Thanks a lot chiph!
  8. eelisdotnet

    Language switching

    Hi I'm trying to find the better way how to change between languages on windows forms UI. Currently we have 2 languages (more in the future). There's a simple language selector which upon selection, rewrite all the UI text to the selected language. Dynamic text and messages are also to be...
  9. eelisdotnet

    Loop through all treeview nodes

    Hi I have a treeview with checkbox=true and I'm trying to loop through all nodes, and get only the checked ones (treenode.checked = true) to an ArrayList. The code goes like: Friend Sub SetCheckedList(Optional ByVal bolUpdate As Boolean = True, Optional ByRef tn As Object = Nothing)...
  10. eelisdotnet

    Build error - Type cannot be used as an expression

    Hi I tried to convert the following C# code to vb.net. code in C# ____________________________________________________________ using System; using System.Reflection; using System.Resources; namespace LivingObjects.Resources { /// <summary> /// This Class is used to create the...

Part and Inventory Search

Back
Top