1,302 Posted Topics
Re: I think you use localization feature in your application and it doesn't recognize "en-CB" language. | |
Re: No, you're working on Class Library project, go to project properties and change Output Type to Windows Application. | |
Re: I don't really understand you but I'll answer your thread subject and I am sorry I'll write code in C# as I don't know VB.net at all :$ [code] private int GetNumberOfControls() { //returns the number of control to be created } private void CreateTextbox() { TextBox textBox; for(int i=0; … | |
Re: Kindly go to this forum [url]http://www.daniweb.com/forums/forum14.html[/url] you'll find a lot of posts regarding final year projects aka Graduation Projects. | |
Re: Give us the command that should be executed when build successes | |
Re: Try to install .net framework again or send me your project to test it. My email: [email]ramymahrous@student-partners.com[/email] | |
Re: That's a type of reflection methods in JAVA, actually C# treats with System.Type not System.Class like [code] Type[] types = new Type[10]; types[0] = System.String; types[1] = System.TextBox; ..... [/code] | |
Re: Please Dha_King move your thread to ASP.NET forum to get fast help [url]http://www.daniweb.com/forums/forum18.html[/url] | |
Re: It maybe SQL Server was busy doning some jobs that's why, it executed this query in 14 seconds (I assume you running this query against table has records less than 100, 000) I don't deadly think that '*' the reason of that bad performance!! | |
Re: You should answer with "true" or "false" to avoid exception raising... | |
Re: You may find more help on MySQL forum [url]http://www.daniweb.com/forums/forum126.html[/url] :) | |
Re: Dear Ma7boob As I am MSP, so is your copy is legal?? you may don't have an legal copy so they ask for money for that but please. I am not going to talk about MS reputation but tell me your problem in details and I'll solve it with you … | |
Re: You should separate the main thread from other threads as the main thread control GUI (e.g. buttons, menus,...) I didn't look at your code as I am sure I won't understand what you're willing to do... but whatever you create threads and they waiting each other and those threads far … | |
Re: Please, write your question in better way as I didn't understand you... | |
Re: Make ID column Identity and incremented by one each time. you won't insert it by your hand and it kept unique. | |
Re: I didn't understand you, but you can do anything(anything logic) after creating table using "[B]alter[/B]" and in DB design we create the one table and after that the many tables.. | |
Re: [B]bandwidth problem[/B], try to return fewer rows or in another meaning the most needed!! [I]SQL Server not responsible for such lack in performance[/I] | |
Re: [code] SELECT distinct(ccno) FROM creditcardinfo [/code] Anything just ask! | |
Re: [URL]http://www.daniweb.com/forums/thread7031.html[/URL] discuss with them | |
| |
Re: sorry do you mean that [URL]http://www.daniweb.com/forums/thread56903.html[/URL] ? | |
Re: You remind me with graduation project days :) [code] public void GenerateKeyFile(string command) { ProcessStartInfo PSI = new ProcessStartInfo("cmd.exe"); PSI.RedirectStandardInput = true; PSI.RedirectStandardOutput = true; PSI.RedirectStandardError = true; PSI.UseShellExecute = false; Process p = Process.Start(PSI); System.IO.StreamWriter SW = p.StandardInput; System.IO.StreamReader SR = p.StandardOutput; SW.WriteLine(command); SW.Close(); } [/code] | |
Re: you can use Google API for search and then optimize\filter the results on your own | |
Re: [URL="http://www.connectionstring.com"]www.connectionstring.com[/URL] | |
Re: Use differential Backup... or you can use insert select like [code] insert into table1 values (select distinct a,b,c.. from table2) [/code] | |
Re: Add a reference to your application and use the reference functionality | |
| |
Re: let's use datatypes well, we just need timestamp: data type that exposes automatically generated binary numbers, which are guaranteed to be unique within a database. [B]timestamp[/B] is used typically as a mechanism for version-stamping table rows. So, you don't need to modify it, it's modified by SQL or Oracle engine … | |
Re: Grant select, insert to [username] --for all tables Grant select, insert on [table name] to [username] -- for specific table Grant Create database, table to [username] -- give some permission to some users to DDL | |
Re: you've to create textboxes at run time and assign it with xml node values | |
Re: After filling DataSet (or DataTable) by Adapter, call a method (preferred to be in another thread) loop on DataSet (or DataTable) foreach row you'll stop the thread for 3000 ms [code] void Initilize() { // filling adapter // filling dataset (or datatable) // calling ShowRows } void ShowRows(DataSet (or DataTable) … | |
Re: switch...case Like [code] x = Console.ReadLine(); //try to parse.. //successed manage the first and last operand assginment //catch...that's mean you got a character +,-,*,/,A,B,..... just switch case of arthimatic operation and call appropriate method [/code] | |
Re: Dear koketa; Please ask direct question because no one will read all you wrote; ask for example I've exception in lmlma how to slove it, I can't nither read your code nor understand it. just go around this forum and see how people ask Cheers :) | |
Re: professionally: compare hosting prices and choose the minimum and about connecting with application, MySQL team developed libraries to work with .net to be like ado.net me: choose SQL Server it's my beloved RDBMS :) | |
![]() | Re: I used it since the beta versions but I don't know if you can develop WPF, WCF, etc.. applications by the Express or not as I am using VSTS 2005/2008 |
Re: give us example of snippets which work and which don't | |
Re: Try Focus() not SetFocus I'm tryin' to help I use C# and for keypress, use text changed event handler and you'll get the key; e.Key | |
Re: if you want to sort using more than column use ListView and change its view to details.. you'd give the user the ability to sort by any column(s).. | |
Re: it may help you [URL]http://www.thescripts.com/forum/thread230802.html[/URL] | |
Re: grant all permissions to one of them and set for him/her username ana password while connection to database use the username and the password for connecting | |
Dear Daniweb community, First, I'd like to thank you for this great community. Second, I am wondering if this feature exists or not, is to give members ability to select some forums to be their favorite forums to easily check them. | |
Re: if you used SP, it'd be better, as you could use variables and so on, and also for performance | |
Re: sorry, can you please give more clarification?? | |
Re: where's you question? if you're interesting in robotics download robotics SDK from Microsoft and play with it, go to its forum see new ideas talk with experts and so on. |
The End.