Click here to Skip to main content
15,884,629 members
Home / Discussions / C#
   

C#

 
QuestionNeed help sending SOAP message with byte array in message Pin
jdrage3-May-06 8:44
jdrage3-May-06 8:44 
Questionconverting numbers to date Pin
TheJudeDude3-May-06 8:43
TheJudeDude3-May-06 8:43 
AnswerRe: converting numbers to date Pin
Ravi Bhavnani3-May-06 9:01
professionalRavi Bhavnani3-May-06 9:01 
GeneralRe: converting numbers to date Pin
TheJudeDude3-May-06 9:16
TheJudeDude3-May-06 9:16 
GeneralRe: converting numbers to date Pin
Ravi Bhavnani3-May-06 9:20
professionalRavi Bhavnani3-May-06 9:20 
GeneralRe: converting numbers to date Pin
TheJudeDude3-May-06 9:25
TheJudeDude3-May-06 9:25 
GeneralRe: converting numbers to date Pin
J4amieC3-May-06 22:10
J4amieC3-May-06 22:10 
QuestionCopy DBF file to MDB Pin
Bedevian3-May-06 8:18
Bedevian3-May-06 8:18 
with this code i copy from one DBF to Another DBF.
but how can i Copy DBF file to MDB

this exapple is working fine
string ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + APP_PATH + "\\TMP ;Extended Properties=dBase IV";
OleDbConnection DBConnection = new OleDbConnection(ConnectionString );
InsertQuery = "INSERT into "+APP_PATH+"\\TMP\\"+DBFfile.ToString()+" Select * from "+APP_PATH+"\\"+DBFfile.ToString();
OleDbCommand InsertCommand = new OleDbCommand(InsertQuery,DBConnection);
DBConnection.Open();
InsertCommand .ExecuteReader();
DBConnection.Close();


this one i need help, do i have to make a connection to DBF file ?
string ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+Application.StartupPath+"\\MainDB.mdb";

OleDbConnection DBConnection = new OleDbConnection(ConnectionString);

string InsertQuery = "INSERT into GNDSALE Select * from D:\\GNDSALE.DBF ";

OleDbCommand InsertCommand = new OleDbCommand(InsertQuery,DBConnection);

DBConnection.Open();
InsertCommand.ExecuteReader();
DBConnection.Close();






-- modified at 14:18 Wednesday 3rd May, 2006
QuestionProblem with Reports Pin
ventomito3-May-06 8:11
ventomito3-May-06 8:11 
AnswerRe: Problem with Reports Pin
ranandbe4-May-06 20:19
ranandbe4-May-06 20:19 
QuestionTotal Physical Memory Pin
rajith_r3-May-06 7:54
rajith_r3-May-06 7:54 
AnswerRe: Total Physical Memory Pin
Ravi Bhavnani3-May-06 8:45
professionalRavi Bhavnani3-May-06 8:45 
QuestionListView Control - Insert Method Pin
xfitr23-May-06 7:36
xfitr23-May-06 7:36 
AnswerRe: ListView Control - Insert Method Pin
Travis D. Mathison3-May-06 8:13
Travis D. Mathison3-May-06 8:13 
GeneralRe: ListView Control - Insert Method Pin
xfitr23-May-06 8:36
xfitr23-May-06 8:36 
GeneralRe: ListView Control - Insert Method Pin
Travis D. Mathison3-May-06 11:54
Travis D. Mathison3-May-06 11:54 
AnswerRe: ListView Control - Insert Method Pin
xfitr24-May-06 2:27
xfitr24-May-06 2:27 
QuestionReally I need Help Pin
zidan9113-May-06 7:33
zidan9113-May-06 7:33 
AnswerRe: Really I need Help Pin
Ed.Poore3-May-06 11:20
Ed.Poore3-May-06 11:20 
AnswerRe: Really I need Help Pin
Ravi Bhavnani3-May-06 13:00
professionalRavi Bhavnani3-May-06 13:00 
QuestionAdding new row in UltraWinGrid in Windows Form Pin
Neel073-May-06 7:16
Neel073-May-06 7:16 
QuestionEvents Pin
Smith#3-May-06 6:15
Smith#3-May-06 6:15 
QuestionHow to update ComboBox/ListBox bound to ArrayList? Pin
therealmccoy3-May-06 6:04
therealmccoy3-May-06 6:04 
AnswerRe: How to update ComboBox/ListBox bound to ArrayList? Pin
Travis D. Mathison3-May-06 8:22
Travis D. Mathison3-May-06 8:22 
GeneralRe: How to update ComboBox/ListBox bound to ArrayList? Pin
therealmccoy3-May-06 11:05
therealmccoy3-May-06 11:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.