606 Posted Topics

Member Avatar for bvssam
Member Avatar for ddanbe

hmmm, compiles fine for me you sure Expression.Valoper is the same class as Valoper?

Member Avatar for ddanbe
0
249
Member Avatar for sfrider0

are you catching the key press event and checking for enter? [code] if ((int)e.KeyChar == (int)Keys.Enter) { Navigate(toolStripTextBox1.Text); } [/code]

Member Avatar for sfrider0
0
400
Member Avatar for imohammed

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

Member Avatar for sierrainfo
0
87
Member Avatar for Hannah Wallace

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 …

Member Avatar for Hannah Wallace
0
114
Member Avatar for hbmarar

did you try to start it manually [code] /etc/init.d/mysql start [/code]

Member Avatar for hbmarar
0
196
Member Avatar for jessxe02

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]

Member Avatar for sierrainfo
0
154
Member Avatar for BobLewiston

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!!!!

Member Avatar for bondo
0
240
Member Avatar for demroth

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]

Member Avatar for nicholasmathew
0
101
Member Avatar for rajkishore
Member Avatar for vman6ley

what is your question? also please post code in code tags, much easier on the eyes

Member Avatar for vman6ley
0
110
Member Avatar for 123468743867143
Member Avatar for dickersonka
0
194
Member Avatar for localp
Member Avatar for anil_forum
0
118
Member Avatar for filch

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 …

Member Avatar for filch
0
102
Member Avatar for brightline

how about the rich text editor for asp.net [url]http://www.codeplex.com/rte[/url]

Member Avatar for dickersonka
-1
93
Member Avatar for *nur

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 …

Member Avatar for dickersonka
0
150
Member Avatar for AsantaSane

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]

Member Avatar for stultuske
0
999
Member Avatar for jazz.learner

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 …

Member Avatar for dickersonka
0
69
Member Avatar for krany18
Member Avatar for dickersonka
0
78
Member Avatar for PRob99

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]

Member Avatar for dickersonka
0
2K
Member Avatar for Stylish

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 …

Member Avatar for dickersonka
0
114
Member Avatar for andy91

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]

Member Avatar for dickersonka
0
202
Member Avatar for ranjitrouthu
Member Avatar for dickersonka
0
90
Member Avatar for Antenka

here ya go, just needs slight modification on response and your listening ports [url]http://www.codeproject.com/KB/IP/tcpclientserver.aspx[/url]

Member Avatar for Antenka
0
203
Member Avatar for birdie612

add an order by date desc and the group by will select the top location you said dates are chars though?

Member Avatar for birdie612
0
109
Member Avatar for AW08

what is the code for your insert statement? also are you sure you are needing an insert statement here, or an update

Member Avatar for dickersonka
0
167
Member Avatar for mapidea
Member Avatar for Acidburn

when those others are launched, does it contain something like ? [code] Thread.CurrentThread.Suspend() [/code] or [code] myThreadName.Join() [/code]

Member Avatar for dickersonka
0
65
Member Avatar for raul15791
Member Avatar for xman12

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

Member Avatar for avhunt
0
188
Member Avatar for babusek

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]

Member Avatar for babusek
0
142
Member Avatar for preethi_ga
Member Avatar for priyankaa
0
119
Member Avatar for web developer
Member Avatar for mossman65

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

Member Avatar for dickersonka
0
134
Member Avatar for bajanpoet

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]

Member Avatar for bajanpoet
0
146
Member Avatar for panpanf

i've heard of it, but never used it Portos [url]http://www.cs.cornell.edu/People/egs/portos/[/url]

Member Avatar for MosaicFuneral
0
81
Member Avatar for sivak

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]

Member Avatar for james_zheng
0
113
Member Avatar for genoinchina

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?

Member Avatar for dickersonka
0
129
Member Avatar for c++ prog
Member Avatar for dickersonka
0
87
Member Avatar for imohammed

think this link should help you out [url]http://www.sqlnewsgroups.net/group/microsoft.public.sqlserver.server/topic2741.aspx[/url]

Member Avatar for dickersonka
0
74
Member Avatar for kyriakos70

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 …

Member Avatar for dickersonka
0
108
Member Avatar for IT_Techno

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

Member Avatar for dickersonka
0
398
Member Avatar for sniper1983

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 …

Member Avatar for dickersonka
0
169
Member Avatar for Sally123

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 …

Member Avatar for dickersonka
0
115
Member Avatar for dickersonka

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 …

Member Avatar for ithelp
0
148
Member Avatar for sivak

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 …

Member Avatar for sivak
0
207
Member Avatar for danielgeri

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

Member Avatar for Stylish
0
76
Member Avatar for dickersonka

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 …

Member Avatar for Jugortha
0
148
Member Avatar for Acidburn

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; …

Member Avatar for dickersonka
0
99
Member Avatar for kevin wood

you can do it that way, i would suggest returning a value from a stored procedure like [code] select LAST_INSERT_ID(); [/code]

Member Avatar for terrymodular
0
1K

The End.