|
Gooooooooooooooooooooooooooooooooooood!
Whaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaat haaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaave yooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooou triiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiied?
All those who believe in psycho kinesis, raise my hand.
|
|
|
|
|
I don't understand what do u mean at all................
|
|
|
|
|
what have you tried?
It would help to know what you tried.
People aren't going to write you the code here.
They'll help you figure out where you went wrong once you have done a bonafide attempt, but trying to just ask for what to do is frowned on.
|
|
|
|
|
3bood.ghzawi wrote: congestion
do you mean collision?
try entering some keywords in the Google search box.
|
|
|
|
|
Hi all...........
I'm asking of how i can implement an IPsec. operation using C#...............
With my regards for all............
|
|
|
|
|
I suggest you use your keyboard for entering meaningful questions, not series of periods.
I doubt someone is going to correctly guess what it is you want.
|
|
|
|
|
hi
i am converting onedatabase file into txt file. This file containing some character like squre box and junk character like this
דךח0ח דךח3חדךח2חדךח=חדךח<חדךח?ח
if its a font(problem) or conversion problem
|
|
|
|
|
It depends on what file your are converting, how you are converting, are taking care of encoding and may be many more.
50-50-90 rule: Anytime I have a 50-50 chance of getting something right, there's a 90% probability I'll get it wrong...!!
|
|
|
|
|
in the western world it wouldn't look like a font problem as there isn't a readable word anywhere.
I suggest you ask your local witchdoctor.
without any information about your app, your database, your data types, nobody here will be able to tell you the answer.
|
|
|
|
|
hi all,
I want to know that if I create a toolbar for IE(like google toolbar) or any browser using .net
then it is necessary that .net frmaework is installed on client machine.
Thanks in advance.
|
|
|
|
|
Yes.
Any software created for .NET requires .NET to be installed on the machine it is to run on. V3.0 is installed already on Vista and Weven, ealier version may need to be installed.
All those who believe in psycho kinesis, raise my hand.
|
|
|
|
|
That's not quite true. There are applications, such as Thinstall, which will embed the runtime into a single application which can be run without the .NET framework. They are expensive, and largely unnecessary, but they do work.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
My blog | My articles | MoXAML PowerToys | Onyx
|
|
|
|
|
Xenocode has a trial out now that works as far as I can tell. I finished a product using it, despite my advisement to the client about the risks and issues with using such a tool.
With .net preinstalled on weven and vista, most XP machines have it too, is it really such a big issue anymore?
|
|
|
|
|
Hi...
In my application, we are used MySql Database.. I m working with C# Windows application . we are using ODBC connectivity with MySql.. We want to take Db Backup from our application. I was tried and achieved in Local machine via get mySQl root path from Registry.. But want to take Backup Remote machine MySql Database also... How can we achieve this... If u have any idea Please Share with me...
Thank you
|
|
|
|
|
Hi,
I have created a web survey control which is working fine, now I have to create same thing for desktop application [Survey control for desktop application].
Please let me know your suggestions.
Can I create a survey type of desktop application in WPF?
I am working in VisualStudio2008 using C#.
Thanks
|
|
|
|
|
Yes you can, in both WPF and WinForms. Why not?
50-50-90 rule: Anytime I have a 50-50 chance of getting something right, there's a 90% probability I'll get it wrong...!!
|
|
|
|
|
Hello all
my problem is that for some reason, a simple assignment isn't working.
the dataGridView is binded to DB and im trying to assign a value type string to a column of type string
bindingSourceSchema.DataSource = null;
dgwSchema.Columns["colID"].DataPropertyName = "APP_ID";
dgwSchema.Columns["colName"].DataPropertyName = "DESCRIPTION";
dgwSchema.Columns["colTextbox"].DataPropertyName = "APP_ARGS";
dgwSchema.Columns["colTextbox"].HeaderText = "Parameters";
dgwSchema.Columns["colLink"].DataPropertyName = "APP_PATH";
dgwSchema.Columns["colLink"].HeaderText = "Path";
DataGridViewLinkColumn colLink = (DataGridViewLinkColumn)dgwSchema.Columns["colLink"];
colLink.UseColumnTextForLinkValue = true;
colLink.Text = "Edit";
bindingSourceSchema.DataSource = SchemaDB.GetGenericApps();
.
.
.
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
dgwSchema.CurrentRow.Cells["colLink"].Value = openFileDialog.FileName;
}
Thanks
Eyal
|
|
|
|
|
The reason is following property is set to true.
colLink.UseColumnTextForLinkValue = true;
Set it to false. Then it will resolve your problem.
|
|
|
|
|
hi....now im doing work on Line count for word documents...1st i hav 2 select Dr name n date n then add files in listview and then if i go for save those files will save in ms word table as separately as Different DR name n Date wise in seperate tables...
....BUT iam getting repeating in one table lik...
Dr.Name:Dr.Jhon
Date:20/12/2009
Sno FileName Count
1 Hobbs.doc 36.31
2 Horn.doc 45.72
3 McMillan.doc 41.49
4 Smith.doc 10.72
Dr.Name:Dr.king
Date:22/12/2009
Sno FileName Count
1 Hobbs.doc 36.31
2 Horn.doc 45.72
3 McMillan.doc 41.49
4 Smith.doc 10.72
..........................................................................
this is actully i want 2 get....
Dr.Name:Dr.Jhon
Date:20/12/2009
Sno FileName Count
1 Hobbs.doc 36.31
2 Horn.doc 45.72
Dr.Name:Dr.king
Date:22/12/2009
Sno FileName Count
1 McMillan.doc 41.49
2 Smith.doc 10.72
Here is my code...
private void btnsave_Click(object sender, EventArgs e)
{
for (int k = 1; k < listView1.Items.Count; k++)
{
if (listView1.Items[k - 1].Text != listView1.Items[k].Text)
{
dte.Add(listView1.Items[k - 1].Text);
dte.Add(listView1.Items[k].Text);
}
if (listView1.Items[k - 1].SubItems[3].Text != listView1.Items[k].SubItems[3].Text)
{
pname.Add(listView1.Items[k - 1].SubItems[3].Text);
pname.Add(listView1.Items[k].SubItems[3].Text);
}
}
object oMissing = System.Reflection.Missing.Value;
object oEndOfDoc = "\\endofdoc"; /* \endofdoc is a predefined bookmark */
Microsoft.Office.Interop.Word._Application oWord;
Microsoft.Office.Interop.Word._Document oDoc;
oWord = new Microsoft.Office.Interop.Word.Application();
oWord.Visible = true;
oDoc = oWord.Documents.Add(ref oMissing, ref oMissing, ref oMissing, ref oMissing);
for (int k = 0; k < dte.Count; k++)
{
Microsoft.Office.Interop.Word.Paragraph oPara1;
oPara1 = oDoc.Content.Paragraphs.Add(ref oMissing);
oPara1.Range.Text = pname[k].ToString();
oPara1.Range.Font.Bold = 1;
oPara1.Format.SpaceAfter = 24; //24 pt spacing after paragraph.
oPara1.Range.InsertParagraphAfter();
Microsoft.Office.Interop.Word.Paragraph oPara2;
oPara2 = oDoc.Content.Paragraphs.Add(ref oMissing);
oPara2.Range.Text = "Date:" + dte[k].ToString();
oPara2.Range.Font.Bold = 1;
oPara2.Format.SpaceAfter = 24; //24 pt spacing after paragraph.
oPara2.Range.InsertParagraphAfter();
int a = listView1.Items.Count + 1;
Microsoft.Office.Interop.Word.Table oTable;
Microsoft.Office.Interop.Word.Range wrdRng = oDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;
oTable = oDoc.Tables.Add(wrdRng, a, 3, ref oMissing, ref oMissing);
oTable.Range.ParagraphFormat.SpaceAfter = 6;
oTable.Cell(1, 1).Range.Text = "SNO";
oTable.Cell(1, 2).Range.Text = "FileName";
oTable.Cell(1, 3).Range.Text = "Total Count";
for (int r = 1; r < a; r++)
{
oTable.Cell(r + 1, 1).Range.Text = listView1.Items[r - 1].SubItems[1].Text;
oTable.Cell(r + 1, 2).Range.Text = listView1.Items[r - 1].SubItems[2].Text;
oTable.Cell(r + 1, 3).Range.Text = listView1.Items[r - 1].SubItems[5].Text;
oTable.Rows[r].Height = oWord.InchesToPoints(0);
}
oTable.Columns[1].Width = oWord.InchesToPoints(0); //Change width of columns 1 & 2
oTable.Columns[2].Width = oWord.InchesToPoints(0);
oTable.Columns[3].Width = oWord.InchesToPoints(0);
oTable.Rows[1].Range.Font.Bold = 1;
}
MessageBox.Show("Save Successfully");
}
}
}
plzz...help me ............thanquuu....
|
|
|
|
|
Looks like you've got some homework to do.
There's nothing left in my right brain and nothing right in my left brain. |
|
|
|
|
|
I've heard a lot of whining about VS2008 here, but I'm fairly impressed by a few things that have been added. For one, Intellisense is working a lot better for me than in any previous version. It often seems to anticipate my needs, settling on an item in the list that is exactly what I was going to look for. I noticed this particularly while using the Convert function to switch between numerical record types and form text box values. It seems to check the source and target types in advance, then position the selector in the right place in the list to find the exact conversion required. Nice!
A second feature that I like is the appearance of alignment lines on the Design sheet when moving form elements around trying to line them up nicely with other objects on the page. I didn't use 2005 at all, or 2003 very much, so I'm not sure when this appeared. But it sure saves me a lot of tedious switching back and forth among page element properties to find the exact coordinates of each to make everything line up. Very nice!
Of course, this wouldn't be a proper Roger post if I didn't include a dumb question, so here it is:
When is it preferable to use a String class, rather than a simple string type for text data? If it makes a difference that I'm using SQL Server for storage, rather than a text file, I'd like to know about it. If not, is there any advantage in using one over the other?
On reflection (not a pun, really!), there's another question that occurs to me. There used to be a huge problem with integer types when changing DBMSs (SQL Server, Access, MySQL, etc) and languages. The VB integer was not the same as the C++ integer, and Access assumed a default type different from what SQL Server expected to handle. With the introduction of the CLR, has this issue been resolved? If I write all my GUI stuff using Int16 types, will I have to rewrite it all or convert it to store the data in SQL Server or Access?
On that note, I'll go back to coding...
"A Journey of a Thousand Rest Stops Begins with a Single Movement"
|
|
|
|
|
Roger Wright wrote: When is it preferable to use a String class, rather than a simple string type for text data?
Both String and string are one and the same thing. So, no difference whatever you use.
Roger Wright wrote: With the introduction of the CLR, has this issue been resolved?
Yes. I guess you are refereing to interoperability here. Right?
Roger Wright wrote: If I write all my GUI stuff using Int16 types, will I have to rewrite it all or convert it to store the data in SQL Server or Access?
I don't know about access, but SQL should accept int16 in Int.
50-50-90 rule: Anytime I have a 50-50 chance of getting something right, there's a 90% probability I'll get it wrong...!!
|
|
|
|
|
Personally I think VS2008 is awesome. Have a look at Xcode on a Mac if you want to see pain.
Regards,
Rob Philpott.
|
|
|
|
|
Roger Wright wrote: a dumb question
I don't recall you asking any others.
Roger Wright wrote: String class, rather than a simple string type
That's been asked and answered a couple of times in the last few weeks.
|
|
|
|
|
hi,
i have generated a report using report viewer..can i add a column programaticaly to that report..
thanx.
|
|
|
|