wkst5's Q&A profile
.NET Development Access the data available on internet and use it in my web application
Hiii, I want to list the prices of some products available on the internet everytime i open a web page in my application.. ex: I want to list all the printers available and their prices from internet in a datagrid on my page. Is it possible if so how.... There's the poor man's approach: Screen scrape the interesting web sites by loading the web pages and parsing their HTML sources. This is tedious, fragile, and error prone, because even minor changes to the HTML source my break your price lookup code. And there's real application integration, e.g. using Web Services to obtain the latest prices. This of course requires t ...Show All
Visual Studio 2008 (Pre-release) Trips to the database
I have a general performance question that needs clarification. Assuming an object graph of Customer, Orders, OrderDetails and assume I am retrieving one customer with 10 orders and each order has 5 orderdetails, how many trips to the database will be required Is it 3 or 12 Thanks, Dave Foderick Deferred execution will run more queries, but will only do it when needed. This is the default for most things you have seen, most likely. For example, in the following LINQ query, a SQL query will be fired for each customer to get the orders for that customer: var q = from c in db.Customers select new {c.CustomerID, c.Orders}; ObjectDumper.Wr ...Show All
Windows Forms Who created this bug? (intended)
Hello, new to this wonderful game. I have some basic questions which I haven't been able to answer. I know about the server list of extinct creatures, but how do I see a list of living creatures If I search the stats for some of these bugs I see all over my screen I don't pull anything up....I'd like to know who to curse as naka&nb ...Show All
.NET Development Framework 1.1 and 2.0 co-existing
Hi Is it possible for the .NET framework 1.1 and 2.0(beta 2) to exist and run on the same machine Secondly, what about VS 2003 and 2005 co-existing I have VS 2003 installed on Windows XP, I would like to install VS 2005 (beta 2) on the same machine without destroying things. Any comments/advice will be appreciated. Regards Hi, I havent personally had any issues but read this post here: - There are people who have had issues. http://forums.microsoft.com/msdn/ShowPost.aspx PostID=63026 So, the best thing is to go with VPC. You can also target for v1.1 using the Tookit: http://weblogs.asp.net/rmclaws/ ...Show All
SQL Server Real Time ROLAP different then ROLAP
What is the benefit of setting the proactive cache to Real Time ROLAP. Wouldn't this be the same as ROLAP. Confused on why there is such an option. Books online doesn't seem to answer it clearly. Proactive caching adds the ability to automatically detect changes in source data and update Analysis Services objects appropriately. In the case of Real-Time ROLAP (which was also an option in AS 2000), the AS server can detect data changes (via events, polling or client-initiated notification) and invalidate its in-memory cache - without proactive caching, explicit processing would be needed to dro ...Show All
Visual Studio Tools for Office Wrap VSTO Projects in other Projects?
I am looking for suggestions or direction on a project. I have come across a couple of samples that relate to Office Projects that I want to wrap inside of a large VS.Net project. My problem is this, from what I can see, Office Projects connect to one document each, but in my case I have one dataset that feeds and builds 8-12 different document templates. I am using the WordReadWriteadoVB Sample as my framework, but need to be able to use several document templates with the same codebase. Any Suggestions or other places I can look for docs Thanks; Daivd One thing that comes to my mind is that you could add the newly bu ...Show All
Visual Studio Express Editions Out puting array to text box
I am trying to out put my array to a text box. I have tried textbox1->Text = number[x]; x++; The problem is i keep getting this error error C2664: 'void System::Windows::Forms::Control::Text::set(System::String ^)' : cannot convert parameter 1 from 'int' to 'System::String ^' No user-defined-conversion operator available, or No standard conversion exists from the boxed form of the arithmetic type to the target type That is only outputing the last char or int. so if the array was like Array[0]=h and Array[1]=i it only o ...Show All
Visual Studio Express Editions vb.net build a program now.
The vb.net build a program now! Is never shown in the regesteration benifits Link. The C# version is there but not the VB version. Here is my linkfor VB: http://go.microsoft.com/fwlink/ LinkId=52054 It is the same as the C# link. These express packages are great! Thanks!! Hey Arnie, Thanks for the feedback Both eBooks should be there if you registered both VB and C# Express. Did you register both products Thanks, Dan Fernandez Product Manager http://blogs.msdn.com/danielfe/ ...Show All
SQL Server Starter Data Mining Databases
Are there any premade Databases out there for data mining Check out http://www.ics.uci.edu/~mlearn/MLRepository.html ...Show All
Visual C++ Poly-Threaded C++ Applications
I have a few programs that I am converting to be threaded. At present I have a couple of programs, computer chess engines, that are threaded and work fine with Microsoft's C++ compilers. When the SMP.H #define's detect _WIN32 || _WIN64 it calls up process.h functions but on other platforms it need to use a bit map in ASM to manage the threads properly. Other considerations include inter-process communications etc. If threads dont need to speak to each other then the situation is simple, if not then some form of signalling is needed and the program becomes more complex. One program I use computes end game positions for chess, usin ...Show All
Windows Live Developer Forums Messenger Development APO
Hello Folks I am willing to integrated an existing webbased system with MSN Messenger.I am willing to use MSN messenger for notification purpose. can any one guide me regarding development API Thanks Adnan Please refer to How to get Messenger Technical Support http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=368260&SiteID=1 ...Show All
Windows Forms ComboBox.ValueMember Question - RESOLVED
I have a PopulateComboBox sub, in which I assign the value member for the combo box I happen to be populating. If I create a SelectedIndexChanged sub for that combo box, and try and check the ComboBox.SelectedValue, it returns DataRowView until I reassign (within that sub) the ValueMember. Is there a reason for that that I'm perhaps missing entirely It seems somewhat pointless to me to have to do this. This is a duplicate of your other post - I've responded to the other post here: http://forums.microsoft.com/msdn/ShowPost.aspx PostID=63674 Joe Stegman The Windows Forms Team Microsoft Corp. This post ...Show All
Visual Studio Express Editions Dotnetfirebird
Hi! Does anyone know if it's possible to get an report printed using the Firebird database It seems to be very good for using with embedded databases, but i can't find any good free report liberys to use with it. Does anyone know one Not aware of any free reporting tools available for .NET I'm afraid and there are no reporting facilities in any of the Express editions. Most third-party vendors seem to charge an arm and a leg for these products, which would probably explain why there isn't anything available for free. There are a couple of third-party products that are relatively inexpensive compared to C ...Show All
Visual FoxPro problem with physical sorting
Hello , my name is victor , and i have a problem ! i am beginner in VFP9 , and i would like to put a question. I try to do a little program wich will help me to see better our employment. I tried to do a table , and to sort workers by theyer names from "A" to "Z", but it doesn`t work. The code is like this : USE tabel_de_baza.dbf SORT TO tabel_de_baza1.dbf ON nume_pren /A USE tabel_de_baza1.dbf List Use. I think i have missed something ... What do you mean by it doesn't work Error or what Anyway I think you don't need sort often. You can instead do a select and ...Show All
Visual C++ Floating Point Addition Problem
I have a sticky and weird problem. I have two C++ programs running under Visual Studio 2003. One program works correctly, the other has problems adding two double values. Take the following 3 simple test lines. double dTest1 = 0.00061234567890; double dTest2 = 3359.01234567890; double dTest3 = dTest1 + dTest2; Program that works, dTest3 = 3359.0129580245789 Program that doesn't work, dTest3 = 3359.0129394531250 Notes: 1 - The program that doesn't work may have come from the 16 bit world. 2 - I have checked the compiler and linker options between the 2 solutions and there isn't anything that is obviously different. 3 - I have turned ON the di ...Show All
