Search results for query: *

  1. jacky.goy

    not able to save data getting error

    Did you change the OleDbType accordingly ?
  2. jacky.goy

    not able to save data getting error

    try changing your code as below Try rs = "INSERT INTO [Duty Slip] VALUES(@ID, @DDate, @VehicleType, @RegNo, @Vehiclebookedfor, @Vehiclebookedby, @VisitPlace, @JourneyDate, @JourneyTime, @StartingReadingKM, @ReturnDate, @ReturnTime, @EndingReadingKM, @ACORNON-AC, @TotalKM, @Useddays...
  3. jacky.goy

    Question Change DD-MM-YYYY to MM-DD-YYYY

    you may try this Imports System.Threading Imports System.Globalization Before the Public Class And at the Form Load Add this line >> Thread.CurrentThread.CurrentCulture = New CultureInfo("en-GB", False)
  4. jacky.goy

    [Free] Mlight Basic Theme [Free]

    just simply PM him as stated.
  5. jacky.goy

    Incorrect syntax near '='.

    try add below 2 line before commandtext cmd.CommandType = CommandType.Text cmd.Connection = con then change your command text as below Cmd.CommandText = "Select Klant.Klantnummer, Klant.Naamvoornaam, Klant.Adres From Klant Where Klant.Klantnummer =' txtKlantnummer.Text "'"
  6. jacky.goy

    Publishing an .exe file

    How to check whether the target computer already had the appropriate version of .Net Framework installed and other dependencies as well? For Example .Net Framework 2 and Crystal Report. TQ.
  7. jacky.goy

    Question Connecting to database

    when you compiling your app using the setup creator then you will be ask to include the component into it.
  8. jacky.goy

    Question Connecting to database

    Nope... you can run the application on any computer without MS Access installed just when you install your app to the computer, make sure you have install all required components.
  9. jacky.goy

    Question Connecting to database

    missing the path for database. example : Dim databaseName As String = "C:\dbfolder\database.mdb"
  10. jacky.goy

    Deployment without installing SQL

    Ya, you can use firebird SQL for that. (the coolest part... this firebird SQL is FREE!!!) Just install firebird SQL Server at the server which the db to be stored then on the app of client's pc you need to set the connection string to point to the server.
  11. jacky.goy

    Deployment without installing SQL

    You may try on Firebird SQL. They have embedded server which no need to install the SQL server on the computer where app is installed but embedded server only support standalone. If your app need multiple concurrency access from other network workstation then you need to install SQL server instead.
  12. jacky.goy

    Visible textbox after a while

    Just use a timer ticker to visible the textbox when the desire time reached.
  13. jacky.goy

    Question crystal reports without database?

    you can save your data to a dataset or XML file then call it on crytal report.
  14. jacky.goy

    Problem getting IP address vb 2008

    I hope this help Dim oAddr As System.Net.IPAddress Dim sAddr As String With System.Net.Dns.GetHostByName(System.Net.Dns.GetHostName()) oAddr = New System.Net.IPAddress(.AddressList(0).Address) sAddr = oAddr.ToString End With Label.Text = sAddr
  15. jacky.goy

    Question Help with buttons

    or you may try rtb.appendtext((Chr(13) & Chr(10)) & "Second Line Value")
  16. jacky.goy

    values from mdi parent to mdi child?

    You may public a string in your mdi parent and you may get the string from any of your mdi child.
  17. jacky.goy

    How can we use the database objects from one form to another?

    Here are sample of codes. if tbxusername.text = "username" if tbxpassword.text = "password" dim FrmForm2 as new FrmForm2 FrmForm2.username = tbxusername.text 'at your form 2 , set a public parameter FrmForm2.password = tbxpassword.text 'at your form 2 , set a public parameter FrmForm2.show()...
  18. jacky.goy

    a network database

    example : Microsoft SQL, Oracle SQL or MYSQL (Open Source), Firebird SQL (Open Source) ???
  19. jacky.goy

    a network database

    What type of SQL database are you planning to use?
  20. jacky.goy

    Question <Newbie Ask> How to make a registration form for an application ?

    Hi, I assume that you are going to install your software only to your parent's pc (Assuming only 1 PC). Instead of using computer ID as said by your friend, you may use Processor S/N. On your application load, validate it and only allow to continue if pass. Means that, this application...
Back
Top