Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
E

emimmortal

@emimmortal
About
Posts
4
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Connect to a password protected Access database!!
    E emimmortal

    may be work with Microsoft.Jet.OLEDB.4.0;Jet OLEDB:Database Password=PWD;Data Source=C:\mydatabase.mdb;Persist Security Info=False

    Emimmortal

    Visual Basic csharp database question

  • Import CSV file to MS Access
    E emimmortal

    You can open the mdb with any .net connection and use the INSERT SQL to import the csv data. Ensure the target table is blank and make a Schema.ini file for define the schema of the csv file. eg. string sql = string.Format("insert into {0} select * from [Text;FMT=Delimited(|);HDR=No;DATABASE={1};].[{2}#csv];", info.TableName, info.FilePath, info.FileName); System.Data.Odbc.OdbcCommand command = new System.Data.Odbc.OdbcCommand(sql, connection); command.ExecuteNonQuery(); for schema.ini http://msdn.microsoft.com/en-us/library/ms709353.aspx :)

    Emimmortal

    Visual Basic csharp database data-structures help

  • save excel file
    E emimmortal

    Excel.Application COM may be solve your problem.

    Emimmortal

    C / C++ / MFC c++ tutorial question

  • Creating setup project for all users of the system
    E emimmortal

    make a shortcut with msiexec.exe /I Setup.msi ALLUSERS=1 that will install it to all users of the system.

    Emimmortal

    Windows Forms help tutorial workspace
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups