Search results for query: *

  1. R

    IIS configuration

    hi, you are right, from the local path select your physical folder location and from properties-> documents tab add your default page and set it as first. Now if you type your virtual directory name it automatically loads the first file from your documents
  2. R

    IIS configuration

    hi from the properties of default website, select Home Directory from local path text box you can enter your default asp file name
  3. R

    VB.Net Remoting Technology

    hi, try with XML Web Services in vb.net
  4. R

    Dynamic Web Reference

    How to change the web reference dynamically??
  5. R

    How to access Microsoft's Create DataBase

    check whether the same database is opened exclusively by other users or check the folder with same database name with .ldb extension, if found just remove it
  6. R

    question.

    yes you can get information from two different table
  7. R

    integrating database to the window application

    to view the record Dim conn As New OleDb.OleDbConnection(strConnect) dim SelectSQL as String SelectSQL = "select * from customer" Dim oAdaptor As New OleDb.OleDbDataAdapter(SelectSQL, conn) Dim ds As New DataSet() oAdaptor.Fill(ds) conn.Close() ''''''' now you can navigate the Dataset
  8. R

    integrating database to the window application

    try this Dim strConn AsString = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=C:\Documents and Settings\assignment\My Documents\Assignmenttwo.mdb" Dim MySQL AsString = "INSERT INTO Customer(CustomerName,CustomerAddress,CustomerPost Code,CustomerGender,CustomerContactNo,CustomerDOB...
  9. R

    Reporting systems other than Crystal report

    for report customization try with printdialog class and Printdocument class
  10. R

    reset button

    use combobox.items.clear method
  11. R

    Counting the no. of Subdirectories

    Hi try this Imports System.IO Dim di As New DirectoryInfo("c:\") Dim diArr As DirectoryInfo() = di.GetDirectories() Dim dri As DirectoryInfo Dim i As Integer For Each dri In diArr i += 1 Next dri MessageBox.Show(i)
  12. R

    System Date and Time

    Hi use TimeofDay function to get the current system time
  13. R

    picturebox

    Hi try this attachment
  14. R

    picturebox

    let me know the error
  15. R

    picturebox

    Hi try this, Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load PictureBox2.AllowDrop = True End Sub Private Sub PictureBox1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles PictureBox1.MouseDown...
  16. R

    Web Services Examples?

    Hi try this attachement
  17. R

    putting data from an access database using list view

    Hi try this assume that your dataset name is ds lstView1.Clear() lstView1.View = View.Details lstView1.Columns.Add("c1", Label23.Width, HorizontalAlignment.Left) lstView1.Columns.Add("c2", Label24.Width, HorizontalAlignment.Center)...
Back
Top