Search results for query: *

  • Users: 00shoe
  • Content: Threads
  • Order by date
  1. 00shoe

    Question Application Will Not Close

    Hi, I search through this forum but I couldn't find a solution to this problem. My problem is that Application.Exit doesn't work, and the program just continues along as normal. The General Overview of My Code Follows: Private Sub Run() 'Some Code If problem found...
  2. 00shoe

    Question External Program Inside a VB.Net Program

    Hopefully I've posted this question in the correct area. I was wondering if it is possible to create a vb.net program to have an external program running inside it. What I would like to have is MS Word running inside my VB.Net program. And it would look like this: Is this possible? If so...
  3. 00shoe

    MyBase.New()

    Hey, I have created a vb.net application that works on some computers and does not work on other computers. When running on the troubled computer it produces the following error message before the form is loaded: Application has generated an exception that could not be handled. Process...
  4. 00shoe

    Allow Data Access in Certain Programs

    Hey All :), I was wondering if someone could help me in regards to this problem. I have set up a System DSN for users to access data on a VB.net Application that I have developed. However, do not want users to access this DSN file for other programs like MS Excel (i.e. using the Import...
  5. 00shoe

    "Global" ODBC Data Source

    Hey, Hopefully I'm positing this in the correct forum (my apologies if it isn't). I have a vb.net application that can be accessed by multiple people via a network. I'm trying to set up an ODBC Driver for the program using Windows ODBC Data Source. Is it possible to set up a DSN that can...
  6. 00shoe

    ReadOnly CheckedListBox

    Hey All, Hopefully I'm posting this in the right thread (my apologies if it isn't). I would like to know if it is possible to create a ReadOnly CheckedListBox? So the user can still select any items on the list, but cannot check and uncheck any items. Thanks.
  7. 00shoe

    Date Time Picker Question

    Hey, I want to make a dtp that only allow users to select dates that are weekdays. I have written the following bit of code: Private Sub dtpPH_ValueChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles dtpPH.ValueChangedDim strDOW AsString = dtpPH.Value.DayOfWeekIf...
  8. 00shoe

    Ordering the Index of Controls on a Form

    Hey, I’m using a form with 3 tabs. All 3 tabs have identical controls and properties on each tab. And when I want to call a control for any tab I use the following bit of code. Me.tabcontrol.selectedtab.Controls(0) However this does not work as for example when I use this code on the...
  9. 00shoe

    The object invoked has disconnected from its clients.

    Hey, I searched this forum and could not find any post/s similar to my problem. I have an application runinng in a remote desktop session, and it produces the following error: Problem in StaffOff(): System.Runtime.InteropServices.COMException (0x80010108): The object invoked has...
  10. 00shoe

    DateTimePicker Change the Color of Days

    Hey, I am sorry if this question was asked before (I did search the forum and couldn’t find anything). I am trying to find if it was possible to create a dtp that changes the color of the text of the dates that are between the dtp's min and max dates? For example 29 30 31 1 2 3 4 5 6 7 8...
Back
Top