Search results for query: *

  1. Snosky

    ComboBox binding doesn't work!

    hi I have a design layer, a business layer and a data layer. I want to fill in a the name of the customers with the same familyname in a combobox from en SQL server database. but I get an error! This I do in the design layer Dim k2 As New Klant k2.zoek_klant_naam(Me.txtKlantNaam.Text)...
  2. Snosky

    Can write local but not global

    Hi I have created a application and in this application you create a temporary file. At first it gave an error like set impersonate="true" but I have supressed it by doing this temporary in the vb code This works at the local server Now I have released it on another server and tested it on a...
  3. Snosky

    Icon taskswitcher

    Is it possible to give your program an icon, so that when you push the Alt+Tab, it appears in the taskswitchermenu? I already gave the program an icon, but in the taskswitcher a default windows icon is shown. thanx in advance
  4. Snosky

    From vb.net code to asp.net code

    thanxs i will try that
  5. Snosky

    From vb.net code to asp.net code

    I have a vb.net program..is it possible to generate that code to asp.net (or php but I doubt it (= non-microsoft))code? thanx in advance!
  6. Snosky

    SaveFileDialog don't save when file is open

    Hi When I click on a button a savefiledialog will appear. As long as the file isn't open the saving will be done correctly but when I save i.e. "example.xls" and that file already exists in that directory and is already open I will get an error. How can i suppress that error IN the...
  7. Snosky

    How to make radiobutton in Formcode?

    Thanx but i have also another question :s Is it possible to give each radiobutton made in code a condition? like onClick --> label1.text = "Text" Sorry for all these questions.. I am a noob you know ;)
  8. Snosky

    How to make radiobutton in Formcode?

    I know but how can i add this to radiobuttons that are created in de Formcode (not in the designcode) each radiobutton is created in a for loop with the same name and each radiobutton must have a different tooltip
  9. Snosky

    How to make radiobutton in Formcode?

    and can i give every radiobutton a tooltip (The name of the radiobutton)? This should be necessary... :confused:
  10. Snosky

    How to make radiobutton in Formcode?

    It works! thank you very much
  11. Snosky

    How to make radiobutton in Formcode?

    Ok i will try thanx
  12. Snosky

    How to make radiobutton in Formcode?

    Hi, I have an array..and this array must create a radiobutton for each row. How can I make a radiobutton in vb.net en make it also visible? of course each radiobutton' location must be different Thanks in advance
  13. Snosky

    Solve your visual style issues in VS.NET

    Ok in the form that starts (called Beginscherm) i placed the following: Public Shared Sub main() Skybound.VisualStyles.VisualStyleProvider.EnableVisualStyles() Application.DoEvents() 'Add any other code required here. Application.Run(New Beginscherm) 'where...
  14. Snosky

    Solve your visual style issues in VS.NET

    It works well now I had forgotten wan sub main() in a form...and that form without a main i always opened as second form... thanks! But I have a next question :) when I run this application on another computer..does iet gives the xp look immediately?
  15. Snosky

    Solve your visual style issues in VS.NET

    I have done al you said above... this is what happends... my first form that loads has the XP looks, but when i push a button to open another form that other form is in the old look..ik close that subform and then the looks of the first form are also changed to the old look... what is the...
  16. Snosky

    Insert Date (vb.net) in SQL database error

    jup i found it out myself
  17. Snosky

    Insert Date (vb.net) in SQL database error

    I have 2 DateTimePickers on a form in the form code the following happens Private Sub btnReservation_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnReserveer.Click Dim ReservationAs New ReservationClass Dim From_date As Date Dim To_date As...
Back
Top