all groups > c# > june 2003
international font selection
Posted by Jim Puls at 6/30/2003 8:57:36 PM
I'm writing a Windows Forms application in C# which will run generally in a
Western environment; e.g., EN-US. I need to access a unicode font on the
user's system which is capable of displaying Japanese characters - often
there will be one or more of such fonts, but I don't know which ones by
na... more >>
Dataset and table names.....
Posted by Jim at 6/30/2003 9:30:03 AM
I have a stored procedure that queries a sql server database and returns the
multiple data tables ( 7 to be precise) these tables are the results of many
joins.
When I use the System.Data.SqlClient namespace objects to access this data
it is returned intoa dataset, this dataset has the tables a... more >>
Equals and "==" operator
Posted by #Hai at 6/28/2003 12:49:53 PM
Hi,
What is the difference between Object.Equals and "==" operator ?
When we use CollectionBase.List.Remove(object), which methods is used to
compare objects ?
Thanks
... more >>
Special Comment
Posted by #Hai at 6/28/2003 11:10:41 AM
Hi,
I noticed that there are some special piece of comments in the source-code
generated by Visual Studio.NET when we create a new C# projects.
These comments comes with tags like
/// <summary>
/// Clean up any resources being used.
/// </summary>
What is the purpose of tags <summary> ?
... more >>
Collection property
Posted by Marc L'Ecuyer at 6/27/2003 3:28:25 PM
I want to implement a collection property inside another (in a control
derived class) but I have some persistence problems.
There is an example of my ColumnItem class
<TypeConverter(GetType(ColumnItemConverter))> _
Public Class ColumnItem
Private m_strText As String
Private m_intWidt... more >>
Regex Question
Posted by NotYetaNurd at 6/26/2003 5:11:47 PM
I have a text like this
<a href=aaaa>something </a><a href=aaaa>something </a><a href=aaaa>something
</a><a href=aaaa>something </a><a href=aaaa>something </a>
i have to extract each "<a href=aaaa>something </a> "out i did something
like this
<A[^>]*>.*</A>
but it returns the whole string ra... more >>
How to connect strings in HTML?
Posted by Liu Xuesong at 6/26/2003 1:21:48 PM
<asp:HyperLink ID=3D"DeleteLink" =
NavigateUrl=3D"ChapterManger.aspx?CourseID=3D" + '<%# =
DataBinder.Eval(Container, "DataItem.course_id") %>' =
Runat=3Dserver>Delete</asp:HyperLink>
I want to connect the strings with blue, but failed, How to do?... more >>
VisibleClipBounds property
Posted by Francesco at 6/25/2003 1:27:06 PM
I've got some problems printing to a dot matrix printer.
After correctly setting all the charecteristics of my papersize in the
BeginPrint()...
private void pdLabelDoc_BeginPrint(object sender,
System.Drawing.Printing.PrintEventArgs e)
{
pdLabelDoc.PrinterSettings.PrinterName = "Epson LX-30... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
|