606 Posted Topics
Re: You only need to install workstation components as part of the installation. I don't know what you are meaning the other ones will have problems later, each part of the installation can be completed later by only selecting it with no problems, if thats what you are meaning. | |
Re: here's a simple example, probably overkill for what you need [url]http://www.c-sharpcorner.com/UploadFile/mahesh/ReadWriteXMLTutMellli2111282005041517AM/ReadWriteXMLTutMellli21.aspx[/url] | |
Re: when setting the result change it to this, and try again [code] $result = mysql_query($query) or die (mysql_error()); [/code] | |
Re: would love to help you imbestatjava, but i have no clue what you are trying to do multiply by numbers by products of 7,8,9 and 1,2,3? that part is understandable, but what is this? [quote] 90, 80, 70, or 10, 20, 30 [/quote] i don't get what these values have … | |
Re: I would suggest it is bad practice to use the image_id for sequence. Add an int column to use for sequence, update it if necessary. You shouldn't need to update it, if you use order by with sequence column, this would be a much cleaner way, than updating an id … | |
Re: just the regular href will choose to view in the browser based upon what the browser can do here's a link for javascript to force download [url]http://www.faqts.com/knowledge_base/view.phtml/aid/4906[/url] | |
Re: lol what is this step 1: what is your problem step 2: what have you done step 3: what do you want us to help with | |
Re: you just need to change what it tells you open up the webconfig, search for customErrors and set mode to off and restart the web app, just to be safe this setting basically just allows you to redirect errors to another page, rather than showing the error output to a … | |
Re: here's a link that will point you in the right direction for asp.net and iis [url]http://geekswithblogs.net/sdorman/archive/2007/03/01/107732.aspx[/url] | |
Re: you first post was close, you just needed to make your for loop call the second method, if true add it to the list, if false don't do anything | |
Re: terminate the first with a semicolon if that is what you are meaning, to compare two queries you use Query -> split tab and execute | |
Re: could be a few things, first things first have you applied the latest service pack? | |
Re: agree with lizr, a lot of times to make the code a little cleaner i would make a constant [code=csharp] const string quote = "\""; string sample = "This is a " + quote + "test" + quote; [/code] | |
Re: lol another tip, post what you need in this forum in your next post but, lets start here, what are you having trouble with? | |
Re: you have an excel sheet or mysql database? this is the mysql forum | |
Re: you would just need to add it as a reference in the project what specific piece are you having trouble with? | |
Re: just a normal insert will work what are you inserting from? | |
Re: you need to add a group by [code] GROUP BY cust_no,...... [/code] | |
Re: it depends what you are doing at time of insert to the master table, if you are using a stored procedure you can use this [code] insert into mastertable ..... select @@identity [/code] same as your other post, i would say to close the other one | |
Re: it depends what you are doing at time of insert to the master table, if you are using a stored procedure you can use this [code] insert into mastertable ..... select @@identity [/code] | |
Re: well show us what you got first, can you open one image? and what are you opening images with? your code will help out | |
Re: here i found an article on the suggestion i gave you earlier its because order of precedence, also always try to do joins this way, makes much cleaner code [url]http://damonparker.org/blog/2006/02/23/mysql5-join-syntax-changes/[/url] | |
| |
Re: they are on the right hand top side, much different layout though, not sure if i am up for it here's a link as well [url]http://www.daniweb.com/code/[/url] | |
Re: sounds like homework to me why don't you give it a shot and we'll help you out | |
| |
Re: well show us what you have worked on, we won't do it for you, only help you | |
Re: you are creating a file with a pdf extension, not an actual pdf file you need to use a either a converter or a printer to create the file i normally use pdf995.com | |
Re: yes you can do that, but that will probably even be slower, less secure, and just a messy thing to deal with normally hosting providers will give you access or mysql for a lower price, and then you have to pay a slightly higher price for sql server, are you … | |
Re: [code] select DATEDIFF(now(), '2008-12-25) [/code] | |
Re: lol oh filch this is where the dynamic piece would have helped on the saving i would suggest to possibly alphabetize them, that is unless they are in order by id to your query add this [code] order airport.airport asc, service.service asc [/code] | |
Re: you are correct, String.split is the way to go to treat it the same as the tokenizer the other way would be to use regex | |
Re: a bootloader starts the os, might want to take a look at the linux kernel | |
Re: i believe when you are creating the controls dynamically like that, the control is not there that signaled the event [url]http://gregmckinley.com/cs/blog/archive/2006/09/29/27.aspx[/url] | |
| |
Re: here's a link that should help [url]http://www.bobpowell.net/grayscale.htm[/url] | |
Re: this should help you out [url]http://www.add-in-express.com/docs/outlook-security-manager-addins.php[/url] | |
Re: thanks for the reference ddanbe :-) just so happened to coincide with me posting | |
Re: i don't think speed is necessarily going to be an issue, just be sure to make fk and primary keys, and indexes where necessary and you should be good using a single db on top of that, it would be a nightmare for multiple databases, multiple upgrade scripts, i would … | |
Re: [code] select count(*), p.post_id, p.user_id, u.username from Posts p inner join Users u on p.user_id = u.user_id where p.user_id = ? [/code] that will be for a single user, if you want something for a view, remove the where and query the view | |
Re: make sure your reference is to C:\Program Files\Reference Assemblies\Microsoft\VSTO...... and not C:\Program Files\Common Files\Microsoft Shared\VSTO ....... | |
Re: why do you need the extra table? why don't you just query from occurences, the same one that you populated reminder with? | |
Re: its kind of hard to say when to just use webservices without context, a common example is communicating with a remote server, or writing a webservice for a third party to communicate with your code | |
Re: are you sure the user that you are impersonating has permissions to the mapped drives? try logging in as that user and seeing if the mapped drives exist | |
Re: agree with stultuske, quite a cumbersome task not sure how your db is laid out, but typically what you would do insert a new record with a timestamp and only pull from the latest timestamp's results also you could set a boolean value for the row, to show if its … | |
Re: MySql 2000? or MSSQL 2000? also, what language are you using? | |
Re: i don't see how you are expecting idx = NULL for 2-6, when you have both entries for idy in both tables are you sure this is what you are wanting? | |
Re: you can use office pia's, then you have an object model to work off of [url]http://stackoverflow.com/questions/261374/efficient-method-to-enumerate-cells-in-an-excel-workbook-using-c[/url] here's the pia's [url]http://www.microsoft.com/downloads/details.aspx?FamilyId=3C9A983A-AC14-4125-8BA0-D36D67E0F4AD&displaylang=en[/url] |
The End.