Search results for query: *

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

    Generic Procedure to open a file in default application using WPF

    Open default Browser in WPF Application I am creating a WPF application in VB.NET. I have a text box that contains a URL of a local HTML file such as C:\a\MyFile.html I would like to open this file in the default browser when the use clicks a button on my WPF.... Here is what I have for my...
  2. jaksel

    Question Open file in dafault brower

    This code I know: System.Diagnostics.Process.Start("http://www.google.com") My situation is a little different. In my VB.NET project, I have imported (or created) a website that is contained in a folder named SAHelp. The idea is to have a local website installed to the user's computer so...
  3. jaksel

    Question Logic for IF() statment

    I have a program that involves two dates. Date1, Date2 as follows: Dim Date1 as Date Dim Date2 as Date as it turns out, it is also possible that Date1 could equal "NA" (I read the date from MS Project). So, the following two sets of statements should produce the same result: IF ((Date1 <>...
  4. jaksel

    Question Preclude User from Changing Text in a ComboBox

    At coding time, I developed several combo boxes and added items to them in a collection. I want to preclude the user from changing the contents of the text when they select an item. That is, I want to limit them to the items on the list and preclude them from changing the item name. I have...
  5. jaksel

    Question Using Date Difference Function for MSProject Addin

    I am creating a Microsoft Project 2007 Add-In using VS2008 and VB.NET. So far, so good. I am trying to access the Member Function DateDifference The function returns the number of Business Days within the specific MS Project file between two given days. It respects the calendar assigned to...
  6. jaksel

    Question Opening MS Project 2007

    I am developing a Windows Forms application in VB.NET using Visual Studio 2008. I am attempting to open an MSProject.mpp file and iterate through the tasks. Here is my code from Form1 so far: Dim mFileName As String 'When looking at the project Window drop down, determine the index number of...
Back
Top