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

    Excel in VB.NET problem

    All done! This is a great idea, I wish I was aware of it before... ------------------------------------------------------------------------ Naprawdę nie zorientowałem się o tej możliwości. Byłbym to robił wcześniej po otrzymaniu zbawiennych rad. Dzięki, Andrzej! [smile]
  2. Tomeczek

    Excel in VB.NET problem

    Thank you, jebenson! It worked. Looks like the order of closing/releasing of objects should be: - oSheet - oWorkBook - oExcel I did that, added GC.Collect() and GC.WaitForPendingFinalizers() and finally I got it working! Thanks!
  3. Tomeczek

    Excel in VB.NET problem

    Thank you for your response! I do more or less the same. Don't have GC.Collect() and GC.WaitForPendingFinalizers(), though. I'll add these two and try again. Thanks!
  4. Tomeczek

    Excel in VB.NET problem

    My latest project was a VB.NET program, which gathers information from different machines in the domain and puts collected data into Excel spreadsheet. The problem I have is the Excel part. I was able to open new or existing Excel file, place data on multiple worksheets and save it. I realized...
  5. Tomeczek

    Active Directory structure in TreeView control (VB.Net)

    Thank you jebenson for your response. You gave me an idea, which I used: instead of putting "Dummy" node, I put the first subOU (if one exist) underneath. Then, while expanding, I repeat the same routine. Works as I wanted: I'm adding child nodes "on the fly" when clicking on the "+" sign.
  6. Tomeczek

    Active Directory structure in TreeView control (VB.Net)

    I’m working on a VB.Net project in which I have to use TreeView control filled with the Active Directory structure. The AD is very big, with hundreds of OUs and subOUs. Because of the size of AD I can’t fill the TreeView with the whole AD structure “in one shot” because it would take too long...
  7. Tomeczek

    "DateDiff" problem with different dtae formats

    Thank you all for your responses. The ISO 8601 format implemented made the program work! DateDiff takes the date in this format.
  8. Tomeczek

    "DateDiff" problem with different dtae formats

    When it comes to Time Zones - I'm good. The date/time is calculated in UCT. I called it "data base", but it looks more like a log file: flat text file.
  9. Tomeczek

    "DateDiff" problem with different dtae formats

    I still have a problem calculating DateDiff. Here are more details. 1. Person in Europe picks the date and time of certain process; for example date: “15.6.2013”, time: “13:15” 2. Information is written to the file as two string values: “15.6.2013” and “13:15” (European format) 3. Another...
  10. Tomeczek

    "DateDiff" problem with different dtae formats

    Thank you, guys! This discussion helped me a lot.
  11. Tomeczek

    "DateDiff" problem with different dtae formats

    Thank you, George! I'll try to use CDate, as you suggested.
  12. Tomeczek

    "DateDiff" problem with different dtae formats

    I have a VB6 program distributed to the company’s system admins around the world. Recently I found out, that under certain circumstances, the program fails with “Type mismatch” error 13. The error happens when calculating day difference between the date from some database and actual local date...
  13. Tomeczek

    Exit program in Form_Load() Sub

    Thanks Andrzej! This is some idea! Will try it.
  14. Tomeczek

    Exit program in Form_Load() Sub

    Need haelp. In my Form_load() subroutine I check for certain things and want to start the GUI part (the form) only if the conditions met. If the condition is not met, I issue the MsgBox and try to exit, something like this:If <condition> then MsgBox "..." Unload Me End If This doesn't...
  15. Tomeczek

    WMI in VB.Net

    SOLVED! The code is good. I moved the project on another machine and it works like a champ. Possibly the first machine (XP) had corrupted WMI installed (that's what Google says).
  16. Tomeczek

    WMI in VB.Net

    The command should have two slashes, sorry. myMgmtScope = New System.Management.ManagementScope("\\" & sServer & "\root\cimv2", myConnOpt)
  17. Tomeczek

    WMI in VB.Net

    When running within the Studio, it stops on myMgmtScope = New System.Management.ManagementScope("\" & sServer & "\root\cimv2", myConnOpt) saying "Invalid parameter". You can test it creating in the Studio new "Console application" and putting "Imports" line on top and the rest of the code...
  18. Tomeczek

    WMI in VB.Net

    Sorry, it always fails on myMgmtScope = New ...
  19. Tomeczek

    WMI in VB.Net

    I am trying to write VB.Net program, which would connect to remote computers and retrieve specific system information using WMI. I must admit, that I am not experienced in VB.Net (wrote tons of programs in VB6, though, several of them using WMI). I cannot pass the first phase: connect to remote...
  20. Tomeczek

    How to kill DOS command called from VB6

    After days of testing and trying, I found the solution. Here is the code: Set oWShell = CreateObject("WScript.Shell") sCmd = " ... " Set oExe = oWShell.Exec(sCmd) Do sTmp = oExe.StdOut.ReadLine() While Not sTmp = “” ... sTmp = oExe.StdOut.ReadLine() Wend...

Part and Inventory Search

Back
Top