|
I need to develop a generic XMLEditor Form for an application (Windows Forms .Net 4.0).
The main concepts are:
- xsd definitions are known and stored as a resource
- form receives xml content string and the xsd name
- user must be able to edit (and add/delete) all of the xml attributes / values
Below is a sample of one of the xml content strings
<TechnicalCatalogInfo>
<Properties>
<Property id="1319" name="Some name"><![CDATA[</Property>
<Property id="2715" name="Other name"><![CDATA[</Property>
<Property id="2716" name="Another name"><![CDATA[</Property>
</Properties>
</TechnicalCatalogInfo>
There are 3 or 4 different xml schemas and this form must be able to edit all of them.
Do you think that this can be done?
|
|
|
|
|
Miguel Figueiredo wrote: Do you think that this can be done? Yup.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
I am creating setup file with sql server database but i am facing an error...network elated error and i can't get the data from .mdf.deploy file...plz help me...it's my first project on windows based...
|
|
|
|
|
Did you install SQL Server on the machine where you deployed the mdf file?
If not, install it. Then check your connectionstring - it should point to the PC that has SQL Server installed, and it needs to use the correct credentials.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
Hello,
I need sample code for text mode printing in malayalam font in windows forms authentication.please any one can help me in this regard.
Thanks
Thiru
|
|
|
|
|
Thirugnanam Nataraj wrote: malayalam font You mix up encoding and font . With modern .Net applications, you do not need to worry about non-ASCII-characters: .Net uses Unicode, and Malayalam is well defined there.
Probably, you are used to some encodings of the ISCII standards. Those ISCII encodings are 8bit encodings, and the text files written with such an encoding do not have the byte marks required to automatically find out the encoding. Consequently, when you show it in a text editor with the wrong "font" selected, it may look like Hindi/Devanagari or totally garbage. But by selecting the "font" of your text editor, you actually selected the encoding.
So just type your Malayalam text into the text boxes of your Windows forms application, it will work. Do not copy it from such an 8bit text file as described above!
|
|
|
|
|
Hi Bernhard,
Thanks for your response.
can you send me the sample code for how to print malayalam fonts in dos-mode printing in windows forms application.
it's very urgent need.
Looking forward your reply..
Thanks
Thirugnanam
|
|
|
|
|
Hi!I have event, which when clicked begin downloading data in datagridview.
I make so,but is wrong.Form2 must be in other thread.How make right?
private void downloadToolStripMenuItem_Click(object sender, EventArgs e)
{
Form2 frm = new Form2();
frm.Show();
string path = "test.xml";
DataSet ds = new DataSet();
ds.ReadXml(path);
dataGridView1.DataSource = ds;
dataGridView1.DataMember = "table1";
frm.Close();
}
Sorry for my english and thanks for advance.
|
|
|
|
|
|
I'm developing a MDI WinForm App using C#. I have a parent window with a splitContainer. Panel2 of the split container is used to used to display child forms while Panel1 is used for controls of the parent window. Child1 loads with parent form . However I have placed a button in Child1 that has to call child2 but I can't seem to find a way to close child1 and show child2 in panel2 of the Parent Split Container. I tried using the User Controls but I can't seem to pull through.. Please help.
|
|
|
|
|
I'm not sure I understand completely, but how about using that button to call a method in the parent that will close Child1 and replace it with Child2?
|
|
|
|
|
 Here are a few methods I use. Adapt as needed.
Public Function IsFormOpen(ByVal FormName As String) As Boolean
Dim rVal As Boolean = False
Dim frm As Form
For Each frm In Me.MdiChildren
If frm.Name = FormName Then
rVal = True
Exit For
End If
Next
Return rVal
End Function
Public Function ShowMdiChild(ByVal FormName As String) As Boolean
Dim rVal As Boolean = False
Dim frm As Form
For Each frm In Me.MdiChildren
If frm.Name = FormName Then
rVal = True
frm.Activate()
frm.WindowState = FormWindowState.Maximized
Exit For
End If
Next
Return rVal
End Function
Public Sub InvokeMdiChildMethod(ByVal MethodName As String)
Dim o As Object
o = Me.ActiveMdiChild
Try
o.GetType().GetMethod(MethodName).Invoke(o, Nothing)
Catch
End Try
End Sub
Private Sub ShowNewForm(ByVal sender As Object, ByVal e As EventArgs) Handles NewToolStripMenuItem.Click, NewToolStripButton.Click, NewWindowToolStripMenuItem.Click
Dim ChildForm As New System.Windows.Forms.Form
ChildForm.MdiParent = Me
m_ChildFormNumber += 1
ChildForm.Text = "Window " & m_ChildFormNumber
ChildForm.Show()
End Sub
|
|
|
|
|
Why have you posted this message to me?
|
|
|
|
|
I am working on windows application where the sensitive data in app.config file is encrypted i followed [^http://ozkary.blogspot.in/2013/03/encrypting-aspnet-application-settings.html] these to encrypt app.config file. It works very well in my machine. How do i deploy this?
|
|
|
|
|
|
I have a UserControl (call it SpiffyCombo) that consists of a ComboBox and a Label. The SpiffyCombo has a property (call it "Code") that has TwoWay databinding specified for it.
My Form has a BindingSource and an associated ErrorProvider. A property of the BindingSource's DataSource is bound to the Code property SpiffyCombo.
In a normal control, when an error occurs on the DataSource's property the error icon would appear next to the control. I can't get this to happen with SpiffyCombo. Is there some sort of Interface I need in the it or something I need to override to receive the error from the ErrorProvider? I want to control how the error is displayed within SpiffyCombo rather than have is show in the default location.
Any suggestions are greatly appreciated.
|
|
|
|
|
I got the report using rdlc by the report wizard but i can't view anything by using this methode programmatically..
Here I just added a report file report2.rdlc and a report viewer reportViewer2 to the form. and no more process done with out the following code in a button click
My code in button click event
'''''''''''''''''''''''''''''
String get_results = "SELECT * FROM Employee";
SqlConnection con = new SqlConnection(@"Connection String");
con.Open();
SqlDataAdapter adp = new SqlDataAdapter(get_results, con);
DataSet ds = new DataSet();
adp.Fill(ds);
Microsoft.Reporting.WinForms.ReportDataSource repds = new Microsoft.Reporting.WinForms.ReportDataSource("Employee",ds.Tables[0]);
reportViewer2.ProcessingMode = ProcessingMode.Local;
String rPath = @"F:\report\report2.rdlc";
reportViewer2.LocalReport.ReportPath = rPath;
reportViewer2.LocalReport.DataSources.Clear();
reportViewer2.LocalReport.DataSources.Add(repds);
reportViewer2.Visible = true;
reportViewer2.RefreshReport();
... i don't get any result on my form... if it need to assign something to the rdlc file or reportviwer other than the above code, or should i insert a dataset or anything other than the code.. if it need please help me it in programmatically....
|
|
|
|
|
Can you try reportViewer2.LocalReport.ReportEmbeddedResource = "report.report2.rdlc"
Instead of reportViewer2.LocalReport.ReportPath = rPath;
|
|
|
|
|
Probably the name of dataset in your Report is different than "Employee". Open your report and in "Report Data" window, under the node "Datasets", check the name of your dataset, for example if dataset name is "Dataset1", your code should be:
Microsoft.Reporting.WinForms.ReportDataSource repds = new Microsoft.Reporting.WinForms.ReportDataSource("DataSet1", ds.Tables[0]);
|
|
|
|
|
I have one html document . I want to highlight text in html document but which text I want to highlight that is repeated text in html document . But I want to highlight only exact text according to my requirement then how can I determine the exact text which I want to highlight . Manually, I know that this text should have to highlight but how programmatically determine exact text to highlight between duplicates.
Please some one can help to me.
My exact scenario is giving below-
I want to explain my scenario I have some pdf and converting in epub file.After converting some text font name or font style missing then I have to compare with pdf and epub and highlight the exact text which font is missing.But because of duplicates I am not able to determine the text for highlight.
|
|
|
|
|
Your question is not very clear.
I have guessed that for a html page that you are displaying in the web browser control you want to be able to highlight a word or words.
If I am write I would have a look here[^]
There is also a lot of example from Google: c# webbrowser highlight text[^]
Every day, thousands of innocent plants are killed by vegetarians.
Help end the violence EAT BACON
|
|
|
|
|
Hello ,
Thanks for your reply. Highlighting text is not a problem for me .My Problem is that while I am comparing epub to pdf , I am able to get text only not position of text. So I don't know the position of text and there is duplication of text which is making me uncomfortable to highlight text.
if I know position of text or there is not a duplication of text then it is easy to highlight.
|
|
|
|
|
This question was already asked here[^]. Please stick with one forum only.
|
|
|
|
|
Hello All,
I have a dotnet windows application in which i am using crystal reports, built using vs 2005, installed on a machine using click once setting. Till now the application is working fine. but when i am migrating my application from vs 2005 to 2010 and deploying it onto the test environment, at the time when client is opening the application through application shortcut ,the crystal report runtime for vs 2010 is not installing on the client machine. However i have mentioned it as a prerequisite and also the crystal report runtime setup is there in the Application deployed location.
Help really appreciated.
Regards,
Ashish
|
|
|
|
|
I have windows form application of employee salary management system. It has methods of login, AddnewRecord, Edit, ViewAll, Search and few more. can any one tell me how to apply equivalence partitioning method "category partitioning" ?
|
|
|
|