1,302 Posted Topics
Re: Is ASP.NET user has permission to delete files on the server? | |
Re: I've question you need to update the result form every change user makes or every some time period? I see you shouldn't overload the Show method rather make another one has two parameters dataset, string gridview.datasource = dataset gridview.DataBind() And call this method from main form once user changes the … | |
Re: This question is a bit related to ASP.NET developers, I think they can guide you to the best path [url]http://www.daniweb.com/forums/forum18.html[/url] | |
Re: So, what happened? exception raises? or it closes the form normally?, I can't admit that MySQL query is correct but it's ANSI-SQL all RDBMS should support it. | |
Re: - Read every hex 85, 1F, etc - Parse every hex to covert it to char [code=vb.net] Dim c as char c = (char)int.Parse(hex, System.Globalization.NumberStyles.HexNumber) [/code] - you can add 'if' statement to escape 85 and replace it with '\r\n' | |
| |
Re: It doesn't occur with me, but try to reinstall the framework, or I recommend you to report this bug to [url]http://microsoft.com/connect[/url] ->Select visual studio and report a bug | |
Re: Here you're [code=sql] SELECT WorkOrders.ID, employees.name, employees_1.name AS Expr1 FROM WorkOrders LEFT OUTER JOIN employees AS employees_1 ON WorkOrders.submitted_by = employees_1.id LEFT OUTER JOIN employees AS employees ON WorkOrders.completed_by = employees.id [/code] | |
Re: You can use BackgroundWorker component which has something to do and has event "work compeleted" | |
Re: I didn't understand your question. You need user to type in textbox then press on button, which will take textbox text and add it to list? | |
Re: Yes you, can and using Datagridview by clicking in Datagridview's smart arrow and configure columns. | |
Re: It depends! Why you need to save user searches or you don't intend to? please tell me more about your scenarios what you need to keep track on and so on; to guide you to good design. | |
Re: Yes, that only possible solution is to get specific textbox by name or text! [code=C#] private void undotextbox(object sender, EventArgs e) { if(sender is TextBox) { switch( ((TextBox)sender).Name ) { case "": .... break; case "": .... break; } } } [/code] | |
Re: System.XML contains everything to do with xml files. But if you need quick help look at this tutorial [url]http://www.c-sharpcorner.com/UploadFile/mahesh/ReadWriteXMLTutMellli2111282005041517AM/ReadWriteXMLTutMellli21.aspx[/url] You'll just 1 line of code to wirte in text files. | |
Re: Add this code in gridview DataBound event handler. | |
Re: SMO libraries for .net let you query any server programatically. The hierarchy is: Server->Databases->Tables, users, stored procedures, etc... You can read more about SMO in MSDN Overview SMO: [url]http://msdn.microsoft.com/en-us/library/ms162557.aspx[/url] Creating SMO Programs: [url]http://msdn.microsoft.com/en-us/library/ms162202.aspx[/url] | |
Re: You need to know more about ProgressBar control! that's it. | |
Re: [url]http://authors.aspalliance.com/aspxtreme/sys/data/DataViewClassRowFilter.aspx[/url] | |
Re: Background for what? Desktop or Application form? Anyway you can dispose the object once you don't need it. | |
Re: Let me know the exception raises, and if you need to generate rdlc on the fly I can guide you to great way to work in such thing | |
Re: To stop it noway else putting it on a specific thread then in some defined cases you kill this thread. | |
Re: String class helps you in that, just play with string coming to you... | |
Re: Give me an example, why you need to fire an event when an item added to the ComboBox items. as we can handle it another way | |
Re: It gives error? or what happened exactly please clarify... | |
Re: Print it where or when?! This is a very abstracted question!! | |
Re: There is no "Export to C# classes" feature in Visual Paradigm? | |
Re: Look, As far I got your scenario, Form2 may have property Number which holds the numbers user enters. Before closing the Form2 From Form1, read the Form2.Number. | |
Re: This is the Pseudocode Directory = GetBinDirectory(); loop Directory.Files(Filtered .mdb) print File name | |
Re: If you debugged your code you'll know the error. But first thing you should modify this [Code=C#] string cs = "user id=scott;password=tiger"; cn = new OracleConnection(cs); cn.Open(); // MessageBox.Show("Oracle connection opened sucessfully"); OracleDataAdapter da = null; OracleCommandBuilder cmb = null; da = new OracleDataAdapter("select * from dept", cn); cmb = … | |
Re: Look, the one who can answer this question Dundas Technical Support team, but as I worked with Dundas from time to time, it's not problem of .net, rather Dundas don't support flash movies. | |
Re: How did you admit the your control works well? maybe the problem in your control. | |
Re: Add reference to this library then, modify this resource's class access modifier from internal to public | |
Re: Try [code]formReminder.Show();[/code] instead of [Code]formReminder.ShowDialog();[/Code] | |
Re: Dear Andresasongko, [code=SQL] select REVERSE ( substring( REVERSE(address) , 0 , CHARINDEX(' ' , REVERSE(address) ,0 ) ) ) ,address from authors [/code] That's what I tried right now, you can work to perform it better. | |
Re: Your user should be administrator to run such type of applications, you don't have to do anything from your side. | |
Re: [QUOTE]Does the strong Typed column field names HAVE to match the names in the DataAdaptor?[/QUOTE]Try that a lot to know the answer. I don't know your problem with DataSets, but try to generate someone from SQL Server or Access File, and tell me what you got. | |
Re: What came to my mind is to through a copy of the layer you draw on in the form, i.e bitmap image into ArrayList for every change through a copy into the ArrayList.... So, your ArrayList should be like that Oldest Older ... Newer Newest You can load the bitmap … | |
Re: Yes, you can but it should be registered [code=c#] Process p = new Process(); p.StartInfo.FileName = "notepad.exe"; // or "WINWORD.exe"; p.StartInfo.Arguments = "C:\\file.txt"; p.Start(); [/code] | |
Re: I don't understand anything. do you need to merge the output of two projects to one file or what?? | |
Re: Create database on SQL Server, right click on it then tasks then select import data, follow the wizard... If you want to make it programatically I guess you'll use SMO classes. | |
Re: which border? and where is it if it's not inside the form?!! | |
Re: I prefer for each forum a man of forum each month, that's would be good idea | |
Re: If you need to use wildcard with date you need to cast it first to string, and then play with it. ![]() | |
Re: Do you think it's related to MS SQL Server? or do you mean MySQL\Java forum? | |
Re: Good, but where is your questions? Just begin and if you faced any problem drop a question after your approaches to solve it. | |
Re: What about Project->Add reference!! | |
Re: [code=c#] string[] allData = YourMethodWhichReadFromFile(); foreach (string line in allData) string[] lineItems = line.Split(' '); //insert lineItem to database [/code] |
The End.