Forum: C# Sep 20th, 2008 |
| Replies: 2 Views: 504 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 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 You're Welcome..
If this thread was solved then mark it as Solved. |
Forum: C# Sep 14th, 2008 |
| Replies: 4 Views: 564 >> 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 MessageBox.Show("c#-programming language"); :D |
Forum: C# Aug 12th, 2008 |
| Replies: 5 Views: 1,997 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 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 try to googling some example. |
Forum: C# Aug 6th, 2008 |
| Replies: 2 Views: 535 Yes, scheduling with your own program. but your program must always running. |
Forum: C# Jul 22nd, 2008 |
| Replies: 2 Views: 1,031 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 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 register the file type on your registry... |
Forum: C# Jul 16th, 2008 |
| Replies: 3 Views: 481 not specify, explain more... |
Forum: C# Jul 5th, 2008 |
| Replies: 9 Views: 1,354 |
Forum: C# Jul 5th, 2008 |
| Replies: 9 Views: 1,354 |
Forum: C# Jun 30th, 2008 |
| Replies: 4 Views: 1,591 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 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 Views: 759 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 >> anything is wrong in my code?
post the code |
Forum: C# Jun 24th, 2008 |
| Replies: 3 Views: 6,151 ex :
Interaction.MsgBox(Math.Sqrt(9)); |
Forum: C# Jun 21st, 2008 |
| Replies: 2 Views: 1,142 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 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 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 |
Forum: C# Jun 18th, 2008 |
| Replies: 3 Views: 917 specify more..
to select two table u can use JOIN in your sql statement. |
Forum: C# Jun 9th, 2008 |
| Replies: 2 Views: 713 |
Forum: C# Jun 9th, 2008 |
| Replies: 1 Views: 714 ???
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 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 Change DefaultLocation properties of Application Folder. you can set application installing path there. |
Forum: C# Jun 4th, 2008 |
| Replies: 3 Views: 1,461 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 so you want to play flash file (swf) in c# form. right? |
Forum: C# Jun 3rd, 2008 |
| Replies: 5 Views: 9,741 label1.Text = dateTimePicker1.Value.ToShortDateString(); |
Forum: C# Jun 3rd, 2008 |
| Replies: 5 Views: 1,394 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 Views: 6,292 |
Forum: C# Jun 2nd, 2008 |
| Replies: 3 Views: 1,843 string s;
s = textBox1.Text.Length.ToString(); |
Forum: C# May 28th, 2008 |
| Replies: 6 Views: 4,679 |
Forum: C# May 28th, 2008 |
| Replies: 2 Views: 3,097 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 Set Image Properties with your gif file Not BackgroundImage properties |
Forum: C# May 25th, 2008 |
| Replies: 2 Views: 563 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... |