Search results for query: *

  1. C

    Save Retrieve RTF From MDF Data file

    Save & Retrieve RTF From MDF Data file Dear friends when i need to save image to Database i usually use such like this code Dim fs As FileStream = New FileStream(mImageFilePath, FileMode.Open) Dim img AsByte() = NewByte(fs.Length) {} fs.Read(img, 0, fs.Length) fs.Close() Dim myConnection...
  2. C

    A question about status strip ?

    Hi I would like to know how to insert a splitter | in status strip component? Also how to include active time and date in the status strip component For example Date | Time | Text AM 1:09 | 26/09/2006 | Accounting program Regards
  3. C

    Database files browser (utility program).

    Dear Friends I would like to find a utility program which can deal with database files such like MDB MDF XML DBF…. Best Regards
  4. C

    how to make this code save database into file

    can any one tell me how to make this code write the database Customers into a file on hard disk.?:) Public Class Form1 Inherits System.Windows.Forms.Form Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)_ Handles MyBase.Load End Sub Private Sub...
  5. C

    creating databases programmatically using ADO.NET and VB.NET

    thank you very much for help Regards
  6. C

    creating databases programmatically using ADO.NET and VB.NET

    Hi i am using VB.NET 2005 i tried to creat data base file by using this code but i got 3 errors as the follow 1 'Imports' statements must precede any declarations. 2 Type 'SqlConnection' is not defined. 3 Type 'SqlCommand' is not defined. i need help can any perfect programmer tell me...
  7. C

    about mdi child ?

    hi friends:) what to do if i don't want mdichild to be opened inside mdi form more than once?:confused: my mdi form is form1 my mdichild form is form2 i tried this code but it's not working fine ----------------------------------------- Dim child As New Form2 If Form2 Is Nothing...
Back
Top