Click here to Skip to main content
15,888,000 members
Home / Discussions / C#
   

C#

 
AnswerRe: File in use? Pin
tarasn21-Mar-06 22:36
tarasn21-Mar-06 22:36 
QuestionHow to paint a rotate rectangle in form? Pin
summercoal21-Mar-06 4:33
summercoal21-Mar-06 4:33 
Questioninterop programming Pin
V.21-Mar-06 3:58
professionalV.21-Mar-06 3:58 
AnswerRe: interop programming Pin
leppie21-Mar-06 7:00
leppie21-Mar-06 7:00 
GeneralRe: interop programming Pin
V.21-Mar-06 20:15
professionalV.21-Mar-06 20:15 
AnswerRe: interop programming Pin
Judah Gabriel Himango21-Mar-06 8:23
sponsorJudah Gabriel Himango21-Mar-06 8:23 
GeneralRe: interop programming Pin
V.21-Mar-06 20:16
professionalV.21-Mar-06 20:16 
QuestionADO.NET Encrypted data Pin
gmhanna21-Mar-06 3:28
gmhanna21-Mar-06 3:28 
Hi, I'm trying to read a .DBF (Database 4) file with ADO.NET and CodeBase for .NET. Everything works for all the fields, except the password field which is encrypted. Below you will find the code. The data is stored properly on the database, but when I read it back I'm getting different results. On the database is 0xAA091B3BFA. Reading it back in I can see the 0xAA and the 0xFA at the end have been changed to something else. Is there a way to read the data and say AS IS? Or could this be a bug with CodeBase?

			strUserID = efUserID.Text;<br />
			strUserID = strUserID.ToUpper( );<br />
<br />
			strSelect = "Select * from USERIDS where ID = " +<br />
						 "'" + strUserID + "'";<br />
<br />
			odbcDataAdapter = new OdbcDataAdapter(strSelect, odbcConnection);<br />
			odbcCommandBuilder = new OdbcCommandBuilder(odbcDataAdapter);<br />
			odbcDataAdapter.Fill(dataSet, "User");<br />
			#endregion<br />
<br />
			#region Populate the local variables with the table values<br />
			DataTable dataTable = dataSet.Tables[0];<br />
<br />
			foreach (DataRow dataRow in dataTable.Rows)<br />
			{<br />
				strUserID1		= (string) dataRow["ID"];<br />
				strName			= (string) dataRow["NAME"];<br />
				strPassword		= (string) dataRow["PASSWORD"];<br />
				strExtension	= (string) dataRow["EXTENSION"];<br />
	                }			<br />


Thank you,

Glenn
QuestionRegex question - how to match crc checksum Pin
daniilzol21-Mar-06 3:26
daniilzol21-Mar-06 3:26 
QuestionUpdating DataTable Pin
zaboboa21-Mar-06 3:07
zaboboa21-Mar-06 3:07 
Questionprivate chat web-application in c# using socket programming Pin
shabeer.ak21-Mar-06 2:15
shabeer.ak21-Mar-06 2:15 
AnswerRe: private chat web-application in c# using socket programming Pin
Anil C21-Mar-06 2:43
Anil C21-Mar-06 2:43 
GeneralRe: private chat web-application in c# using socket programming Pin
shabeer.ak21-Mar-06 17:00
shabeer.ak21-Mar-06 17:00 
GeneralRe: private chat web-application in c# using socket programming Pin
Anil C22-Mar-06 2:53
Anil C22-Mar-06 2:53 
Questiontapi3 Pin
hafz21-Mar-06 1:19
hafz21-Mar-06 1:19 
AnswerRe: tapi3 Pin
Michael P Butler21-Mar-06 3:28
Michael P Butler21-Mar-06 3:28 
QuestionHow to open new form Pin
Areff21-Mar-06 1:18
Areff21-Mar-06 1:18 
AnswerRe: How to open new form Pin
Nicholas Butler21-Mar-06 1:37
sitebuilderNicholas Butler21-Mar-06 1:37 
AnswerRe: How to open new form Pin
Brett Slaski21-Mar-06 1:40
Brett Slaski21-Mar-06 1:40 
GeneralRe: How to open new form Pin
J4amieC21-Mar-06 2:21
J4amieC21-Mar-06 2:21 
GeneralRe: How to open new form Pin
Brett Slaski25-Mar-06 18:57
Brett Slaski25-Mar-06 18:57 
AnswerRe: How to open new form Pin
Divyang Mithaiwala21-Mar-06 2:22
Divyang Mithaiwala21-Mar-06 2:22 
QuestionStrange Problem with UltraWinGrid ButtonColumn Pin
Mukesh Kumar Gupta21-Mar-06 1:14
Mukesh Kumar Gupta21-Mar-06 1:14 
AnswerRe: Strange Problem with UltraWinGrid ButtonColumn Pin
leppie21-Mar-06 6:58
leppie21-Mar-06 6:58 
AnswerRe: Strange Problem with UltraWinGrid ButtonColumn Pin
LongRange.Shooter21-Mar-06 7:22
LongRange.Shooter21-Mar-06 7:22 

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.