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

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

    Typed datasets and special datatypes?

    I am creating a typed dataset in the designer of VS2005. If I want a column to contain a certain object of a class or for example a bitmap - how do I enter that in the column. The designer always returns an error when I try to change this manually? Is there a limitation in the designer? thanks
  2. haddaway

    regexp help

    I need help on a regexp. I am copying files and would like to have a "exclude"-filter. So, I have a filepath: c:\myfiles\myfile.txt and the filter in a normal file mask filter: *.* or: *.txt or a file: anotherfile.txt I want to now which file paths that are matching this filter with the...
  3. haddaway

    FileSystemWatcher on Network Drives

    I am monitoring a directory from a Windows Service. I had plans to run this Windows Service under the Local SYSTEM account but I am not sure if that works. I have access to usernames and passwords. The problem is that I need to monitor a Network Drive. So, I thought I could combine WinAPI...
  4. haddaway

    Prevent impersonation

    I have impersonated a thread with success. What I would like to do is either keep the impersonation to that thread (the impersonation must not be inherited) or if I can specify somewhere that a certain class can't be impersonated. In my example I am watching a folder with the filesystemwatcher...
  5. haddaway

    Assing byte array directly?

    I would like to perform the following in some way: Dim b(2) as byte = (34,23) How can I do that?
  6. haddaway

    Daylight saving time - when?

    I would like to calculate when the time is adjusted by windows. For example, here in Stockholm we adjusted the time at 02:00 the 26th March to 03:00. I would either want to find a way so I can calculate when and what direction it moves or be notified by an event when Windows automaticly adjusts...
  7. haddaway

    Copy files on network?

    I have a windows services that needs to copy some files between network drives. I have access to username and passwords which have the right to access those drives. Which is the best approach to start copying these files. Any code example? I have heard of impersonation but I don't know if...
  8. haddaway

    WMI - access denied

    I am trying to connect to a remote server and watch __instancecreationevent on processes. When using asynchrous calls - using watcher.Start I get a access denied. When using watcher.waitfornextevent it works. Any idea why? I would really like to use the ansynchrous method. Private Sub...
  9. haddaway

    TcpListener - address in use

    I have an application which listens to a port. I have no problem connecting to it. When I close the application the address is free for use again. In one case the address is in use - it's when I have started a process (system.diagnostics) somewhere in the application and that process is still...
  10. haddaway

    Stranger exception at startup

    One of my clients has a problem when starting up a Windows Service that I have created. Here is the error located in the event log: Service cannot be started. System.IO.DirectoryNotFoundException: Could not find a part of the path 'C:\WINDOWS\TEMP\tidzxg8b.tmp'. at...
  11. haddaway

    Setup does not behave like I want it

    I have a setup with a installer project which installs a service at install and uninstalls a server at uninstall. I have problems handling new versions of my program. When starting a new installation of a new version it always tell me to go to add/remove programs and uninstall it first. I would...
  12. haddaway

    Starting a GUI app in hidden mode?

    I am using the following code: Dim si As New ProcessStartInfo si.CreateNoWindow = True si.UseShellExecute = False si.WindowStyle = ProcessWindowStyle.Hidden si.FileName = "notepad.exe" Process.Start(si) This is just an example, but I would like...
  13. haddaway

    Why can't you redirect in process.start?

    I am using these simple lines to start a defrag, but it fails if I add " > c:\test.txt". Why? Dim ps As New ProcessStartInfo ps.FileName = "C:\WINDOWS\system32\defrag.exe" ps.Arguments = "-afv c: > c:\test.txt" Process.Start(ps)
  14. haddaway

    Custom installer in setup

    I have a Windows service in a setup project. With service installer and process installer I install the service and start it. Now I have bought an obfuscator (.NET Reactor). This prevents me from calling the installer class. I have to set InstallerClass to false. I could however use the same...
  15. haddaway

    Getting the right characters (encoding)

    I am doing a WebRequest on a Swedish page. In this example www.google.se. The problem is that all the swedish characters are taken away from the stream. I would like to save it all later as UTF8. Why are the swedish characters taken away? Here is my code: Dim myRequest As HttpWebRequest =...
  16. haddaway

    Redirect (in content handler) does not work in IE?

    I have written a download/content handler do manage requests for .exe files in a special folder. This handler also updates the database with some statistics when the user is downloading the .exe. The problem is that it works in Firefox and GetRight but not in IE. In IE it just seems to wait for...
  17. haddaway

    How can you prevent your code to be seen in Reflector?

    I just opened my Release exe and could see all code in each function in this program: http://www.aisto.com/roeder/dotnet/ How can I prevent the code to be seen in these types of programs?
  18. haddaway

    Registry Monitor error?

    I am trying to execute this function, any idea what I'm doing wrong (I am getting HRESULT: 0x80042001): public void RegistryWatcher() { WqlEventQuery evQuery = new WqlEventQuery(); evQuery.EventClassName = "RegistryEvent"...
  19. haddaway

    WMI - access denied on LIKE search

    Any idea why I get Access denied when using: TargetInstance.Message LIKE '%anymessage%'" but it works when I use: TargetInstance.Message = 'anymessage'" I am trying to access 'Win32_NTLogEvent'.
  20. haddaway

    one datatable and two comboboxes?

    I have this code: Private DTEntryTypes As New DataTable --- Dim c1 As New DataColumn("OPERATOR", GetType(EventLogEventClass.OperatorT)) DTEventLogOperators.Columns.Add(c1) Dim c2 As New DataColumn("DESC", GetType(String)) DTEventLogOperators.Columns.Add(c2)...

Part and Inventory Search

Back
Top