1,302 Posted Topics
Re: Depends on how they communicate with each other. | |
Re: Did you try [icode] ComboBox.Focus() [/icode] | |
Re: You can connect from JavaScript to database, and validate user credentials, if has permission you can from JavaScript redirect him to the Flash page! | |
Re: Search on Google "Implementing threads" you'll find a lot of articles, it's very hard to write a new one here, but I prefer you to search. | |
Re: What about to debug and go through your code to know in which method has infinite loop or deadlock like Comatose says... | |
Re: Update = Get data from file -> put data in memory -> delete data from file -> update the data in memory -> insert data into file. P.S: data may be record or records. | |
Re: For sure, they got error: ambiguity error, maybe the two tables have some same columns name, I see the [B]syntax[/B] is correct. | |
I hosted my website on server, some pages load data from Analysis services 9.0 It works in development machine. It doesn't work on deployment machine and through this exception [B]Exception type[/B]: OleDbException [B]Exception reason[/B]: Unspecified error The following system error occurred: The system cannot find the file specified. [B]Exception source[/B]: … | |
Re: Username\password encrypted in .config file, or you can use SQL Server public\private keys 2005 and later | |
Re: Did you try[icode] System.IO.File.WriteAllText(path, data, encoding) [/icode]?? what about the third parameter? | |
Re: [url]http://www.microsoftlearning.com[/url] where you can find a lot of resources :) | |
Re: Then, what's the problem? In ListView IndexChanged event handler [code=VB.net] If listView1.SelectedItems.Count > 0 System.Diagnostics.Process.Start(listView1.SelectedItems(0).Text) [/code] P.S: I don't code in VB.NET, if there's any syntax error please try to solve it. | |
Re: This link [url]http://social.msdn.microsoft.com/Forums/en-US/winformssetup/thread/d30ffbb7-2a50-4d71-9369-7452bb9f9c32/[/url] answers your question | |
Re: Yes you can but not in the picture you draw in your imagination, through WCF, web services, or even shared database on internet and each of which has its pros\cons. - Clients should have windows application on machine they work on. - Windows application won't be on web browser. - … | |
Re: Please clarify your question, use code tag, and don't use Caps Lock. I tried to read it but I didn't mange to. | |
Re: [url]http://www.daniweb.com/forums/thread179020.html[/url] | |
Re: Yes, SQL Server 2005 has better performance over SQL Server 2000, and I think migration to 2005 is essentially. No problem from your side else remove * and replace it with columns names. Yes it makes sense. | |
Re: Database scheme contains all create scripts for objects, that's allow you to create the same structure of the database you run this scheme on. Sample database scheme: [code=sql] Use Master Go Create Database CVz Go Use Cvz Go Create Table tbl_Cvz1 ( ID int primary key, Name nvarchar(Max) not null, … | |
Re: It may need full qualified name [DatabaseName].[SchemeName].[FunctionName] Try that and reply me! | |
Re: That's normal because you don't stop the main thread, your process or application in line 3 has 2 threads working in parallel.. | |
Re: Better to ask at ASP.NET forum [url]http://www.daniweb.com/forums/forum18.html[/url] Here's generic C# forum.. | |
Re: Very simple in C# [url]http://www.computorcompanion.com/LPMArticle.asp?ID=194[/url] | |
Re: Read that [url]http://en.wikipedia.org/wiki/Boyce-Codd_normal_form[/url] And if any part is not understood, tell me to clarify. | |
Re: If it's windows\web-based application that would be published on a machine on the intra you don't need Internet connection, and vise verse. | |
Re: You can't give dynamic statement as it's your logic exception, the method calls this method (which contains this switch...case) will handle this throw with meaningful error message to the user. I really don't understand your question, give a scenario. | |
Re: the problem is in [icode]datRead.GetString(X)[/icode] you says give me string, he (VS) replies I don't have string, I've Int32 what shall I do for you. Check the data types in your table if you have column of Int32 use GetInt32(X) or if you've column of bit use GetBoolean(X) Hope it … | |
Re: At first, it's not forum for web problems you can post on ASP.NET forum [url]http://www.daniweb.com/forums/forum18.html[/url] Second, remove your try and catch, let the program crashes and give us the error. | |
Re: right click on table then open table, write data row by row or you can add data from application using ADO.NET ![]() | |
Re: As you need it in VBA you should ask this question there [url]http://www.daniweb.com/forums/forum4.html[/url] | |
Re: You need to make the grid movable, because of being a control you can take a look at [url]http://fci-h.blogspot.com/2008/05/how-to-make-your-controls-moveable.html[/url] and add modify it to be applied on run time controls | |
Re: You can use replication or use SSIS to move the data (formerly know DTS) | |
Re: What's the error shown in error window? | |
Re: [icode]dataGridView1.Columns["column name\ index"].Visible = true\false;[/icode] | |
Re: Using iTextSharp iTextSharp is a .NET port of iText, a PDF manipulation library for Java. It is primarily focused on creating and not reading PDFs but there are some classes that allow you to read PDF - especially PdfReader. But extracting the text from the hierarchy of objects is not … | |
Re: There are commercial version from Crystal Reports from Business Objects you can check the features of what you have and what they buy through [url]http://www.sap.com/solutions/sapbusinessobjects/sme/reporting/crystalreports/index.epx[/url] | |
Re: Terminate the thread once it finishes its work, don't wait to loop on the threads and Kill them... | |
Re: Is it database design problem or VB.NET one? Please mention your db design to help you out how to solve it | |
Re: Design it in the report, else you've parameter you can pass its value at runtime using SetParameters(List<ReportParameter>) method. | |
Re: You can create DSN and use ODBC model in your .net application. | |
Re: Due to accessibility to controls event handler, you can modify it to public. | |
Re: I've answered you at C# forums, right :) ? | |
Re: You've this table in your database, RS just run a query to get result displayed in the report, did you develop the query to get this result? | |
I want to speed ChechBoxList's getting the selected items, the normal approach is [code=c#] foreach (ListItem li in checkListBox.Items) { if (li.Selected) { } } [/code] but if I've 6000 items in the CheckListBox, that's mean I should go through the 6000 items to know which is selected. Performance POOOOOOR!!! … | |
Re: Reporting viewer in Reporting tab in VS toolbox, but you need to modify its extension to rdlc if you need to process it in local mode. Just begin to drag Reporting Viewer on your form and you'll learn by practice. | |
Re: Contact coldFusion technical support. [url]http://www.adobe.com/products/coldfusion/[/url] | |
Re: All in all it's control, and any control has Anchor property which helps you resize the control corresponding to form size. | |
Re: You can split line by ' ' space, get words[0] -first word- capitalize it, then return this array to 1 string again. | |
Re: Read about ADO.NET in [url]http://msdn.com[/url] | |
Re: When you create trigger After [icode]AS[/icode] play with columns_updated() function read in [url]http://msdn.microsoft.com/en-us/library/aa258254(SQL.80).aspx[/url] |
The End.