-
Began Watching min - return more than 1 record
The following SQL query would return 1 record with a min(unit_cm): select id, name, category, min(unit_cm), unit_Cost, unit_price, unit_costPerc from ( SELECT a.id, b.name, e.name as 'category', (d.unit_price - d.unit_cost) … -
Replied To a Post in min - return more than 1 record
`ORDER BY unit_cm DESC LIMIT 3` will actually give you the 3 records with the highest values of `unit_cm` To get the smallest values use `ORDER BY unit_cm ASC LIMIT … -
Began Watching sql server 2008 problem
Hi! I am facing problems with sql server 2008. I installed sql server 2008 and it was installed successfully. But when i went to start menu then only following features … -
Replied To a Post in sql server 2008 problem
You might have more luck posting under the "MS SQL" forum (this is the MySQL forum). First advice I can offer is to check your Services applet and see if … -
Replied To a Post in What constitutes the "End of File"
I can't see anything specifically wrong with the code you have posted. My suggestion would be to try using a StreamWriter, take a look at [File.AppendText](https://msdn.microsoft.com/en-us/library/system.io.file.appendtext(v=vs.110).aspx) - this method opens … -
Began Watching What constitutes the "End of File"
I need to identify how the code identifies that a file is at the "eof" (end of file). Here's why: On Monday's, I'm having to combine text files created over … -
Replied To a Post in What constitutes the "End of File"
It sounds like a file pointer still pointing to the first file, while you are trying to move it further through the second file (possibly before it is appended to … -
Began Watching create Report using microsoft word
How we can create word document that is atemplate (contains paceholder to data ) and fill this template from xml document that contains data from serialized object Mapping Word 2007 … -
Replied To a Post in create Report using microsoft word
You can instantiate an instance of the MS Word application via C# and programatically access all of the functions you would via the graphical interface. Your project needs to reference … -
Began Watching How to pass link data from one page to another page using querystring
How to pass link data from one page to another page using querystring in asp net This link would be set up something like this: http://.mywebsite.com/site/TR?fr_id=1131&pg=entry?utm_source=______&utm_medium=_______&utm_campaign=ABCD2015 When it is clicked, … -
Replied To a Post in How to pass link data from one page to another page using querystring
You need to concatenate the values into the URL string of your link. This is a general example, but if you provide more context about the code you are using … -
Began Watching Using html onclick in java servlets
I'm trying to use html onclick in java servlets like this; ShoppingCart cart = new ShoppingCart(); out.println(" <h1><button type=\"button\" onclick=\"cart.addBook(b.getIsbn())\">add</button> </h1>"); addBook is a method in ShoppingCart class, and I'm … -
Replied To a Post in Using html onclick in java servlets
the `onclick` event on a standard HTML button invokes javascript, not Java. So your code is looking for a javascript function called `addBook` on a javascript object called `cart`. I … -
Began Watching Microsoft.Office.Interop.Excel.Application' is not defined.
hi i am creating a program that needed an excel app., and i already do it, at first no error, but after a sudden, an error appeal, here is a … -
Replied To a Post in Microsoft.Office.Interop.Excel.Application' is not defined.
Can you post some code? looks like you have a object type where it expects a defined variable. -
Began Watching Overload resolution failed because no accessible new is most
Hello all, I am having an issue learning some things in visual studio 2013 asp.net using vb. I am following a fellows instruction on doing a report with a parameter. … -
Replied To a Post in Overload resolution failed because no accessible new is most
You could try casting the datasource table you are passing in as an object (it could be just a resolution issue with the constructor definition expecting an object type, even … -
Began Watching download manager
i want to develop a simple download manager..i have seen download managers downloading a file..but they have multiple download points e.g. suppose i have a file like this on a …
The End.