1,302 Posted Topics
Re: Send your message (Data + indicator) to server and via indicator call a method (in server) to save the data into file. | |
Re: You add reference to COM library, but no visual design shown unless COM library contains visual control. like flash player, media player once you add it on your form it shown, but some libraries does not contain any visualization, so you won't be able to see them. | |
Re: No difference instead you put A4 paper put envelop, just put data in organized way, say address on top right .... or you can use MS Word envelop template and integrate with MS Word via VSTO to put each field in its place. Crystal report: is a tool for designing … | |
Re: You can't call method from SP, but verse is correct. | |
Re: Developers just don't look at methods documentation!! Round method [b]returns[/b] the rounded number that's your problem, friend! [code] double d = 1000.0 / 3000.0; d = Math.Round(d, 2); Console.WriteLine(d); [/code] | |
Re: You can deal with UDF from VB.NET as you use it in SQL Server, ADO.NET helps you, but please tell me do you want to pass parameters to UDF or return the value of UDF. | |
Re: You can, just change the access modifier of those controls to public | |
Re: Almostly you use disconnected mode, so commit your dataset with newly changes. | |
Re: Outlook may be need (erhan.kula@bcx.co.za)'s password to complete the operation [b]It's just guess[/b] | |
Re: In first gridview you can disble editing, and when user presses edit button open the next gridview containing the record to be edited and enable editing in this gridview (second gridview). | |
Re: Integrate with their libraries, no there is not generic media player controller | |
Re: Bravo! go through it and feel free to drop your questions here, and you'll find who would answer! | |
Re: I can play with SQL Server in this problem 1- define a trigger [on delete] let this trigger commit delete if deleted row > 1 and let it insert one of deleted rows into table again. DELETE FROM table WHERE date1 in (SELECT date1 FROM table) AND varchar1 in (SELECT … | |
Re: [url]http://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=320955[/url] I understood they trying to resolve this issue soon.. | |
Re: Handle button pressing, then set Label.Text = YourTextBox.Text; Please for more questions on developing web application via C# aka ASP.NET, go to this forum [url]http://www.daniweb.com/forums/forum18.html[/url] to find vast and clear answers | |
Re: [url]http://www.orafaq.com/faq/what_is_the_difference_between_stored_procedures_and_functions[/url] | |
Re: after form constructor add this line [code] CheckForIllegalCrossThreadCalls = false; [/code] | |
Re: If he's working on VS2008 he can traget the framework where the application runs on, I guess the problem came from changing library paths. | |
Re: modify the connection string, or verify the second pc connects to your DB Server. | |
Re: Ask ib this forum [url]http://www.daniweb.com/forums/forum13.html[/url] | |
Re: Yes, you can just read the documentation of XMLReader in MSDN [URL="http://www.msdn.com"]www.msdn.com[/URL] | |
Re: If you install SQL Server 2005 Developer Edition or Enterprise one, it'd install for you BI package to develop such application in rapid way :) | |
Re: Kindly, move your thread to ASP.NET forum [url]http://www.daniweb.com/forums/forum18.html[/url] to get quick help! | |
Re: It's a windows application! Console is [code] using System; using System.Collections.Generic; using System.Windows.Forms; namespace SomeProductNameSample { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { ///any code begins from here! } } } [/code] | |
Re: Sorry give me sample input and sample output, I see your sql statement is correct. | |
Re: Look, Nested namespaces: used collect all related-functionality classes inside a parent namespace like [code] namespace System { class string... class int... class ..... namespace IO { class File... class Stream.... class ..... } } [/code] Class inside class to limit the functionality of nested class to the parent class as … | |
Re: Yes, because every class needs references, those references information saved in project setting file (XML file) and this file contains a lot of information needed to compile\run class(es). | |
Re: No wizard for creating classes, methods, members, fields,.... in C# but you can use Class Diagram Designer that shipped with VSTS or VS architect edition to design your classes and add your methods, members, fields,.... in drag drop style. | |
Re: Dear, [code] public string GetUserFirstName(your params...) { //use ADO.NET to work with your database } ...... Session.Add("SessionName", GetUserFirstName(your params)); ...... [/code] For more questions, I recommend to start your threads in ASP.NET form at [url]http://www.daniweb.com/forums/forum18.html[/url] | |
Re: Hello, just go to [url]http://www.daniweb.com/forums/forum31.html[/url] and ask there, you'll find professional web developers can lead you to the perfect solution :) | |
Re: I don't know SQLLite but in such cases, have a time to take a look on SQLLite documentation! | |
Re: I don't know I suggest to go to Microsoft VS forum, but if I were you, I'd like re-install the framework. | |
Re: You developed this web-based application using VB.NET, when you create an web-based application you'll find language option listed in ComboBox select C# and to write C# code open [YouPageName].aspx.cs like Default.aspx.cs | |
Re: So, you need to work with binary files not database!!! | |
Re: Creating controls in runtime is very easy task, just use XMLReader class in System.XML namespace to read your xml file and define your button properties and then create button control with specified properties. | |
| |
Re: Sorry, be more clear! what's your question?! | |
Re: Sure that's wrong! What shall you write a method or a property?? Method [code] public decimal sal(string amount) { //your method body //return value/variable } [/code] Property [code] public decimal sal { get{return sal;}} [/code] | |
Re: Use System.XML namespace it helps a lot! | |
Re: Please go to this forum [url]http://www.daniweb.com/forums/forum14.html[/url] and search on Graduation project ideas and read!! | |
| |
Re: Create a table to store exception like ExceptionTbl (ID int, ExceptionMessage varchar(MAX)) and when catching any exception insert the exception message into table [code] try { //your code } catch(Exception error) { //here you insert error into table } [/code] In ADO.NET, I don't care about database location! remote, local,..... … | |
Re: You should write it like [code] SqlCommand selectCommand = new SqlCommand("SELECT product.productid, product.productname, product.price, product.description FROM product where product.productid = @productID", myConnection); selectCommand.Parameters.Add("@productID", SqlDbType.Int); selectCommand.Parameters[0].Value = int.Parse(Session["productid"].ToString()); SqlDataAdapter adapterprice = new SqlDataAdapter(selectCommand); [/code] | |
Re: Catch the exception using "OleDbException" not generic Exception and reply me with exception message, I could help you. | |
The End.