606 Posted Topics
Re: hmmm, compiles fine for me you sure Expression.Valoper is the same class as Valoper? | |
Re: are you catching the key press event and checking for enter? [code] if ((int)e.KeyChar == (int)Keys.Enter) { Navigate(toolStripTextBox1.Text); } [/code] | |
Re: you shouldn't be able to restore a transaction log that isn't in the proper sequence, you will only be able to restore up to the point the last sequential transaction log you must also apply all transaction logs before recovering the database, otherwise you must start over | |
Re: Its a definite plus that you enjoy programming, or at least the lighter side of it. And the end user experience is definitely good as well. Coding full time is much different than just every now again, I love to program, but some days I still need a break. Find … | |
Re: did you try to start it manually [code] /etc/init.d/mysql start [/code] | |
Re: here's the msdn link on how to [url]http://msdn.microsoft.com/en-us/library/ms378672.aspx[/url] and here's the link for the jdbc mssql driver [url]http://www.microsoft.com/downloads/details.aspx?familyid=6D483869-816A-44CB-9787-A866235EFC7C&displaylang=en[/url] | |
Re: maybe i'm more of an ide guy than command line, but for the editor, you just need to add a class and click Build - Build Solution and voila!!!! | |
Re: check out these [url]http://pagebox.net/soft.html[/url] [url]http://www.boost.org/doc/libs/1_36_0/libs/graph/doc/johnson_all_pairs_shortest.html[/url] | |
Re: look at 2nd post down [url]http://forums.asp.net/p/1008929/1363835.aspx[/url] | |
Re: what is your question? also please post code in code tags, much easier on the eyes | |
Re: how are you accessing the database, through java php etc? | |
Re: [code] new GridDrawingApplet(); [/code] you don't need to explicitly call paint | |
Re: not so sure about the dreamweaver thing, i normally use visual studio as far as what you need to do, you need to loop through each selected checkbox for the airport / user this will prob best be supported in multiple inserts, rather than trying to do it with a … | |
Re: how about the rich text editor for asp.net [url]http://www.codeplex.com/rte[/url] | |
Re: its because you send the email through an smtp server if you are on your own network, most likely you can get authenticated, or it might have a relay address to where you can send to, no security issues when you try to send from a remote server, it will … | |
Re: it needs to be changed to this format [code] if (userPass.charAt(index) == 'c') [/code] but you are making it hard, you can do this [code] if(userPass.startsWith("cool")){ return false; } [/code] | |
Re: i have not had a hosted sharepoint server only an inhouse, but know limitations of normal hosted services many sharepoint apps require addition to the gac unless you want to go through a lot of painful measures, if you are just doing the classic sharepoint stuff then hosting should be … | |
Re: please tell me the code asap show us your work, we'll show you ours | |
Re: you are doing a single check with the if loop do a for [code] bool contains = false; for(int i=0; i<index; i++) { if (number == num[i]) { System.out.println("Value has already been entered."); contains = true; } } if(!contains) { num[index] = number; ++index; } [/code] | |
Re: well if you are wanting a database, don't know how deep you want to go with this schedule SCHEDULE_ID SCRAPER_ID LAST_RUN_TIME scrapers SCRAPER_ID SCRAPER_NAME INTERVAL_SECONDS EXCLUDE_DATE then you can check if LAST_RUN_TIME + INTERVAL_SECONDS >= currenttime this means it is now scheduled to stated then check your exclude date id(date … | |
Re: what you need for the rows is a repeater control, problem is the dynamic columns, which means you need a dynamic repeater control here's a sample that should get you started [url]http://www.neowin.net/forum/index.php?showtopic=658854[/url] | |
Re: here ya go, just needs slight modification on response and your listening ports [url]http://www.codeproject.com/KB/IP/tcpclientserver.aspx[/url] | |
Re: add an order by date desc and the group by will select the top location you said dates are chars though? | |
Re: what is the code for your insert statement? also are you sure you are needing an insert statement here, or an update | |
| |
Re: when those others are launched, does it contain something like ? [code] Thread.CurrentThread.Suspend() [/code] or [code] myThreadName.Join() [/code] | |
| |
Re: well how about you start your assignment, and we'll help you out, i know i have told you this before, we do not do the work for you, its not our grade, so show your own work | |
Re: are you wanting dynamic variable names? if so you can't do that in java you can use an ArrayList or HashMap to store a name and a class [code] String userSpecifiedName = "SunServer"; HashMap<String, Simple> map = new HashMap<String, Simple>(); Simple simpleClass = new Simple(); map.put(userSpecifiedName, simpleClass); [/code] | |
Re: do your textboxes have a default value of "mala" and "123"? | |
| |
Re: do you have id columns? like vehicle_make_id and vehicle_make? also model needs to be fk's to make, spec fk'd to model, part fk'd to model i would say, and you prob want a product_category_id we'll talk about the char after that | |
Re: you need to either register the event after databinding or set a boolean to check when finished loading this might help [url]http://www.vbforums.com/showthread.php?t=207065[/url] | |
Re: i've heard of it, but never used it Portos [url]http://www.cs.cornell.edu/People/egs/portos/[/url] | |
Re: actually it needs to be descending or else you will get bottom to top [code] select top 6 * from table_name order by salary desc [/code] | |
Re: what is the actual sql query? i see a sqlgrouponly and sql ext, but don't know which is used also what is this (1)? is that a gallery name, group, or what? | |
Re: post your code, its hard to see what you are having trouble with | |
Re: think this link should help you out [url]http://www.sqlnewsgroups.net/group/microsoft.public.sqlserver.server/topic2741.aspx[/url] | |
Re: normally you wouldn't store the sum of all the payments together like this normally you have a total and payments total TOTAL_ID TOTAL_AMOUNT payments PAYMENT_ID TOTAL_ID PAYMENT_AMOUNT you might need to add users into this, but you normally don't want a column to be updated from the sum constantly, calculate … | |
Re: are you sure the extensions installed properly on the server? also restart iis after that, and make sure you public key token is in caps, for some reason i have saw that make a difference | |
Re: you don't have to, it will automatically trim it or lets see you get a string field that you are going to insert, with max length of 5 [code] string fName = "jonathan"; if(fName.length > 5) { //you can handle what to do with the length here //we can trim … | |
Re: a stored procedure is a sql statement that is stored in the database for all queries / tables to be able to have access to (with permissions) they can return results, update, or whatever you normally do through a query a temp table is temporary holding place for values, where … | |
I am looking for something similiar to dedicated hosting. I plan on my database and web server being shared, but i need an application to run as an import every 10 min and haven't found on hosting providers that will offer this without an expensive dedicated hosting plan. Also to … | |
Re: show what you don't understand, but here is a quick rundow 1. abstract classes are used for common functionality, but can have implementation, interfaces cannot 2. static does not require you to create an instance of the class to call it 3. select * from table where id >= 501 … | |
Re: assuming this is a wireless connection it drops? possible try updating the driver, and make sure nothing is taking over cpu and network usage at those times | |
Is it possible to have a dynamic operator? I know I could parse it out and find the symbol just wondered if it was possible. [code] string aString = "5"; int a = 5; int b = 6; string op = "<"; //want to do something like dynamically without checking … | |
Re: here's something i made from another post with the same question you need to use invokerequired to be able to do this [code="csharp"] private delegate void UpdatePbDelegate(); private void UpdatePb() { if (this.pbStatus.InvokeRequired) { UpdatePbDelegate updateCount = new UpdatePbDelegate(this.UpdatePb); this.pbStatus.Invoke(updateCount); } else { if(this.pbStatus.Value == 100) { this.pbStatus.Value = 1; … | |
Re: you can do it that way, i would suggest returning a value from a stored procedure like [code] select LAST_INSERT_ID(); [/code] |
The End.