Search results for query: *

  1. kevininstructor

    Question MessageBox - How to get the result of a Yes/No?

    Here is a working solution done in VS2008 Framework 3.5. I use a XML literal data source for data and for the question I extend My.Application. Hope this is of use to you. Place two Listboxes, one checkbox and one label on a form followed by the code below. Public Class Form1 Private...
  2. kevininstructor

    Question Open and fill PDF Form

    Sometime has passed since this has been asked but thought I chime in anyways. One options is to use iTextSharp which is open source found on SourceForge. Fairly easy to use, quick and it's free. If you have ColdFusion 8 cfdpfform tag can be used in a web service which a VS2005 or VS2008 can use
  3. kevininstructor

    Project Events - project path

    I have a solution under VS2005 were there are two projects. One project is physically located under the Solution folder. One project is physically not located under the Solution folder. In the BuildEvents.OnBuildProjConfigBegin event the first parameter is Project which is a string with the...
  4. kevininstructor

    Detect the Font Name

    I have been tinkering this morning looking for the proper method to use the find method of InstalledFontCollection but could not so this was the closest for determining if a font was installed. Public Function IsFontInstalled(ByRef fontName As String) As Boolean Dim installedFonts As...
  5. kevininstructor

    Open a form based on a variable

    Sub ShowForm(ByVal FormName AsString) Dim ProjectName AsString = _ Reflection.Assembly.GetExecutingAssembly.GetName.Name Try Dim tyOfStringVariable As Type = _ Type.GetType(ProjectName & "." & FormName) Dim frmObject AsObject = Activator.CreateInstance(tyOfStringVariable)...
  6. kevininstructor

    need desperate help on vb.net please

    You will not properly learn from having others provide solutions for homework. A better method is to try yourself and if you can not solve the problem then ask "how to" along with showing a small segment of your code so that others can point you in the proper direction.
  7. kevininstructor

    Pass Values between forms

    I attached a simple VB.NET (version 1.1) project which might be of assistance. Also as others have mentioned you should read up on object oriented program concepts. Points of interest in the simple project. Refer to Startup.vb which sets up a variable of type main form which allows you to...
Back
Top