Q je reseno...

Ovo sam uzeo iz coda od prve strane...
AddObjectFormOptions.Constraints.MinHeight = 430
AddObjectFormOptions.Constraints.MinWidth = 430
TreeOptions.UnionsNodeText = 'UNIONS'
TreeOptions.FieldsNodeText = 'FIELDS'
TreeOptions.FromNodeText = 'FROM'
TreeOptionsMetadata.TablesNodeName = 'Tables'
TreeOptionsMetadata.ViewsNodeName = 'Views'
TreeOptionsMetadata.ProceduresNodeName = 'Procedures'
TreeOptionsMetadata.SynonymsNodeName = 'Synonyms'
UseAltNames = False
object acUniversalSyntaxProvider1: TacUniversalSyntaxProvider
BuiltinFunctionNames.Strings = (
'Position'
'Char_Length'
'Character_Length'
'Octet_Length'
'Bit_Length'
'Extract'
'SubString'
'Upper'
'Lower'
'Convert'
'Translate'
'Trim'
'Current_Time'
'Current_Timestamp'
'NullIf'
'Coalesce')
Left = 40
Top = 172
end
end
A ovo sam nasao za String...
<%@ Page language="c#"%>
<script language="C#" runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
//Strinbuilder class in found in System.Text namespace
System.Text.StringBuilder sb = new System.Text.StringBuilder();
sb.Append("Hel");
sb.Append("la,");
sb.Append(" War");
sb.Append("ld!");
Response.Write("
<h1>Capacity of sb is: " + sb.Capacity);
Response.Write("
Length is: " + sb.Length + "
");
for(int i = 0; i < sb.Length; i++)
Response.Write(sb
);
Response.Write("
");
sb.Replace("a","o");
for(int i = 0; i < sb.Length; i++)
Response.Write(sb);
Response.Write("</h1>");
}
</script>
<html>
<head>
<title>StringBuilder</title>
</head>
<body>
</body>
</html>
Ne znam kako da upotrbim onaj code... I sta mi je iz njega potrbno... 