Search Results

Showing results 1 to 40 of 93
Search took 0.02 seconds.
Search: Posts Made By: Jx_Man ; Forum: C# and child forums
Forum: C# Sep 20th, 2008
Replies: 2
Views: 504
Posted By Jx_Man
Yes, lizR right...
Make sure the table name is same (field, length and datatype too).
Read data from Access (using loop) then write certain data into MSSQL (this the logic, i never tried this).
Forum: C# Sep 17th, 2008
Replies: 5
Views: 2,124
Posted By Jx_Man
Just add current form (.cs file) into your project then you can use function on that form.
Forum: C# Sep 15th, 2008
Replies: 4
Views: 564
Posted By Jx_Man
You're Welcome..
If this thread was solved then mark it as Solved.
Forum: C# Sep 14th, 2008
Replies: 4
Views: 564
Posted By Jx_Man
>> the connections strings which i used in vs.net2003 isnot working here
Maybe a little mistake. Just post your connection string. Btw visit this site...
Forum: C# Sep 14th, 2008
Replies: 3
Views: 427
Posted By Jx_Man
MessageBox.Show("c#-programming language"); :D
Forum: C# Aug 12th, 2008
Replies: 2
Views: 1,719
Posted By Jx_Man
Forum: C# Aug 12th, 2008
Replies: 5
Views: 1,997
Posted By Jx_Man
See this Link (http://weblogs.asp.net/bdill/archive/2007/12/06/c-string-replication-extension-method.aspx)
Forum: C# Aug 11th, 2008
Replies: 5
Views: 1,624
Posted By Jx_Man
private void comboBox3_SelectedIndexChanged(object sender, System.EventArgs e)
{
if (comboBox2.SelectedItem = "Days")
{
comboBox3.Items.Add("Mon");
comboBox3.Items.Add("Tue");
...
}...
Forum: C# Aug 11th, 2008
Replies: 4
Views: 653
Posted By Jx_Man
try to googling some example.
Forum: C# Aug 6th, 2008
Replies: 2
Views: 535
Posted By Jx_Man
Yes, scheduling with your own program. but your program must always running.
Forum: C# Jul 22nd, 2008
Replies: 2
Views: 1,031
Posted By Jx_Man
try this :
private void RB1_CheckedChanged(object sender, System.EventArgs e)
{
if (RB1.Checked == true)
{
C1.Enabled = true;
C2.Enabled = true;
C3.Enabled = true;
C4.Enabled =...
Forum: C# Jul 21st, 2008
Replies: 3
Views: 1,673
Posted By Jx_Man
On Form Properties, Set FormBorderStyle = None.
It will make your form haven't border and not able to move.
Forum: C# Jul 18th, 2008
Replies: 4
Views: 1,207
Posted By Jx_Man
register the file type on your registry...
Forum: C# Jul 16th, 2008
Replies: 3
Views: 481
Posted By Jx_Man
not specify, explain more...
Forum: C# Jul 5th, 2008
Replies: 9
Views: 1,354
Posted By Jx_Man
Forum: C# Jul 5th, 2008
Replies: 9
Views: 1,354
Posted By Jx_Man
Forum: C# Jun 30th, 2008
Replies: 4
Views: 1,591
Posted By Jx_Man
It kind of Laziness....Show the effort, how far you have done with this.

You Need To See This Rule (http://www.daniweb.com/forums/announcement61-2.html) :)
Forum: C# Jun 25th, 2008
Replies: 3
Views: 6,151
Posted By Jx_Man
if this thread was solved then please mark it as Solved. so other member can find it easily if they had a same problem. :)
Forum: C# Jun 25th, 2008
Replies: 2
Solved: prime number.
Views: 759
Posted By Jx_Man
First you must to know the pattern of prime number then u can write the code.
see wikipedia (http://en.wikipedia.org/wiki/Prime_number) and FactMonster (http://www.factmonster.com/ipka/A0876084.html)
Forum: C# Jun 24th, 2008
Replies: 7
Views: 4,112
Posted By Jx_Man
>> anything is wrong in my code?
post the code
Forum: C# Jun 24th, 2008
Replies: 3
Views: 6,151
Posted By Jx_Man
ex :
Interaction.MsgBox(Math.Sqrt(9));
Forum: C# Jun 21st, 2008
Replies: 2
Views: 1,142
Posted By Jx_Man
private void Form1_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
if ((Interaction.MsgBox("Are you sure want to quit?", MsgBoxStyle.YesNo, "Exit")) == MsgBoxResult.Yes)
{...
Forum: C# Jun 20th, 2008
Replies: 5
Views: 1,205
Posted By Jx_Man
hmmm, how far u have done?show the code and other member can correct any mistaken..
Forum: C# Jun 19th, 2008
Replies: 3
Views: 656
Posted By Jx_Man
thanks to share the answer and don't forget to mark this thread solved to make it easy to find.
Forum: C# Jun 18th, 2008
Replies: 2
Views: 2,145
Posted By Jx_Man
Forum: C# Jun 18th, 2008
Replies: 3
Views: 917
Posted By Jx_Man
specify more..
to select two table u can use JOIN in your sql statement.
Forum: C# Jun 9th, 2008
Replies: 2
Views: 713
Posted By Jx_Man
SaveFileDialog1.FileName
Forum: C# Jun 9th, 2008
Replies: 1
Views: 714
Posted By Jx_Man
???
Visit this site (http://jsc.sourceforge.net/), this one too (http://ddj.com/windows/208401872?cid=RSSfeed_DDJ_Windows/.NET), And this too...
Forum: C# Jun 9th, 2008
Replies: 1
Views: 510
Posted By Jx_Man
try this :

private string CharHash(string Data)
{
string Temp = null;
string Result = null;
//'
long i;
//'
for (i = 1; i <= Data.Length; i += 2)
Forum: C# Jun 4th, 2008
Replies: 1
Views: 454
Posted By Jx_Man
Change DefaultLocation properties of Application Folder. you can set application installing path there.
Forum: C# Jun 4th, 2008
Replies: 3
Views: 1,461
Posted By Jx_Man
Use Shockwave Flash Object.
Right Click on control toolbar -> Add/Remove Item -> Select for Com Components Tab then chose for Shockwave flash object.
it will shown on your control toolbar (last...
Forum: C# Jun 4th, 2008
Replies: 3
Views: 1,461
Posted By Jx_Man
so you want to play flash file (swf) in c# form. right?
Forum: C# Jun 3rd, 2008
Replies: 5
Views: 9,741
Posted By Jx_Man
label1.Text = dateTimePicker1.Value.ToShortDateString();
Forum: C# Jun 3rd, 2008
Replies: 5
Views: 1,394
Posted By Jx_Man
Oh. it was solved...
then please share your answer friend, so other members can learn from u if they got same problem. :)
Forum: C# Jun 3rd, 2008
Replies: 4
Code Snippet: Dislay Data on datagrid
Views: 6,292
Posted By Jx_Man
thx majestic0110
Forum: C# Jun 2nd, 2008
Replies: 3
Views: 1,843
Posted By Jx_Man
string s;
s = textBox1.Text.Length.ToString();
Forum: C# May 28th, 2008
Replies: 6
Views: 4,679
Posted By Jx_Man
Forum: C# May 28th, 2008
Replies: 2
Views: 3,097
Posted By Jx_Man
1. - this will disable other group box if you select listbox item :

private void listBox1_SelectedIndexChanged(object sender, System.EventArgs e)
{
if (listBox1.SelectedIndex > -1)
{...
Forum: C# May 26th, 2008
Replies: 1
Views: 4,466
Posted By Jx_Man
Set Image Properties with your gif file Not BackgroundImage properties
Forum: C# May 25th, 2008
Replies: 2
Views: 563
Posted By Jx_Man
1. - to running hidden
there are a couple ways :
1. this.Visible = false;
this.ShowInTaskbar = false;
2. this.Opacity = 0;
this.ShowInTaskbar = false;
- to get form back => Set...
Showing results 1 to 40 of 93

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC