VSB's Q&A profile
Smart Device Development Failed to open VPC Network driver Vista Enterprise RTM
Hello, I have just upgraded to Vista Enterprise RTM and now when I try to open WM 5.0 device emulater (Selecting connect) I get the message below. Is there a fix out yet I did install the windows mobile device center, as well as the Virtual Machine Network Driver for Microsoft Device Emulator ( http://www.microsoft.com/downloads/details.aspx FamilyID=dc8332d6-565f-4a57-be8c-1d4718d3af65&displaylang=en ) but it didn't seem to help. Thanks in advance.\ John Message: Failed to open the VPN network driver. Verify that the driver is installed, or install the driver from the web download location at..... Did you install the VPC Net driver with elevated priviledges. Please note that while instal ...Show All
Windows Live Developer Forums DEP blockin Live Messenger 8.1
Why does DEP keep block my Live Messenger how do i overcome this problem worked like a charm in vista premium as well!!!! Thank you!!!!! Thank you!!!!!Thank you!!!!!Thank you!!!!!Thank you!!!!!Thank you!!!!!Thank you!!!!!Thank you!!!!! Thank you!!!!! !!!!!Thank you!!!!!Thank you!!!!! ...Show All
SQL Server Issue Exporting Date format to a delimited file.
In exporting from a OLEDB connection to a flat file. In the originating table the field for DOB is in a varchar(10) format ex. 01/17/2007. The flat file connection destination is setup as a DT_STR. When you look at the OLEDB connection table preview you see it as 01/17/2007. When it is export to the delimited <CR><LF> <|> pipe delimited the format looks like this 01/17/2007 00:00:00. The issue would be resolved with a right ragged fixed width file. But this is not the requirement for the project format fot the file. I have tried delete and recreating the connections, and even tried doing a data conversation from the OLEDB connection to a char(10). Also, thourgh the transformation services with out any luck. On the flat ...Show All
Visual Studio Tools for Office Office Installation in the production server while using Office PIA
Hi, I have developed a ASP.NET application which reads data from excel using the Office PIA. It is working fine in the Dev environment. When I tried to install the assmeblies in the production server, It says I need to install the Office 2003 in the server machine. Which is not possible. Whether any body has idea to this issue Try using JET. See http://davidhayden.com/blog/dave/archive/2006/05/26/2973.aspx ...Show All
.NET Development Virtual Path Problem?
Pretty much what I'm trying to accomplish is a data backup utility. First I have a treeview on the left, pretty much like Folder Explorer, that lists the drives and so forth. You then can dive down into different directories from there. The files and directories are then put into a listview on the right, after you select one of the nodes. This is where the problems start occuring. I'm including a piece of code here, just as an example to give you a visual understanding of what I'm about to ask. First make your basic windows form app. Add System.IO namespace Add a button Add listview control In your button1_Click event add the following DirectoryInfo tempDir = new DirectoryInfo ( "C:\\WINDOWS\\Downloaded Pr ...Show All
SQL Server Limiting Results from MDX query
Is there any way to specify that I only want the last 16 rows of an MDX query Thanks. OK - if you need to get 16 weeks from the current week - you can use StrToMember(@CurrentWeek, CONSTRAINED) : StrToMember(@CurrentWeek, CONSTRAINED).Lead(16) If you need 16 weeks before the current week - you can use StrToMember(@CurrentWeek, CONSTRAINED).Lag(16) : StrToMember(@CurrentWeek, CONSTRAINED) HTH Mosha ...Show All
Windows Forms .net Deployement
Dear all How to validate the user input in custom interface, I am not able to access the textbox any where, Plz help me If you're referring to the text in a setup project's user interface, you can't check it directly when the user enters it. Visual Studio setup projects have no feature to add custom action code in the UI sequence. The best you can do is let the user enter it and then validate it in a custom action, but the custom action will run pretty much at the end of the installation and this may not be what you want. There are other tools that build MSI files that will let you do this. ...Show All
.NET Development Cannot connect to previous version
Is it just me, or is there some feature block which stops SQL Server 2005 Express from being able to read from a previous version (SQL7) of a .MDF file. Maybe there is something I haven't yet found but my attempts to link a previous version .MDF file, always come up with an error mesage telling to decompress the file. Is this right. Thanks, Mike. ...Show All
Visual C# Programatically set Gateway
Hello I am writing an app to e mail a document to a client automatically. To test this, I set up the gateway in the network settings and ran my code. This worked fine. I need to be able to set the gateway in my software so that my app can send mails but not allow the user of the pc access to the internet (as they would have if I put the address in the network setting). When my app ends, I need to remove the gateway. I have looked at the help in VS2005 and it shows how to read the gateway but not how to set it and unset it. Does anyone have any ideas Cheers Peter ...Show All
Visual Basic Internet Explorer Plugin Development
I visited the Internet Explorer forum for this question. What is the conceptual process for creating an Internet Explorer 6 plug-in (extension). Reason for post: I would like to use Internet Explorer instead of the WebBrowser inside my application. It seems like a waste of time to create a brand new custom browser if I could simply change IE to fit my application. Once again, I need IE to reside inside my application - specifically, integrate it into one of my application windows. There is a sample for how to do this in C# here: http://www.codeproject.com/csharp/dotnetbandobjects.asp . You may be able to download the code and convert it into VB. -Scott Wisniewski ...Show All
Visual C++ Creating and using Global variables...
I want to have variables that I can access throughout my application. To do this how and where would I need to define them. Thanks. Thankyou, both of these methods look really useful. einaros, with the selectany, what am I supposed to put there I am not using any threads in my application, I only started C++ programming a short time ago so I am still learning many of the simpler things, I have and am doing quite a bit of object orientated work at the moment. I am wondering however how I would use a single object instance globaly without the use of these keywords, or would I still be using these, because the way you wrote you part on object orientated stuff seemed like there was another way... I think for now I will sti ...Show All
.NET Development Error 25007.Error occurred while initializing fusion. Setup could not
Hi, I am trying to install .net framework 2.0 on Windows XP OS. I get the following error " Error 25007 . Error occurred while initializing fusion . Setup could not load fusion with LoadLibraryShim(). how do i solve this Hi! Folder "c:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.363_x-ww_691a48fd" was missing on my machine. I tried to copy content of another VS80 CRT folder as this one and voila! I hope this could help you a bit, Peter ...Show All
Visual C# Problems with Adding new Data Source Connection
I just go Data>>Add New Data Source...>>New Connection>> Change>> but all i see is only 2 options Microsoft Access Database File and Microsoft SQL Database File. I need Microsoft SQL Server (sqlclient). Any ideas how to add to the list Microsoft SQL Server (sqlcleint) ...Show All
Visual C++ Inheritance problem
Please read below and tell me how can i get the correct member "i" and "c" in the Function() I have calsses such as class A { int i; char c; }; class CollectionA { CollectionA( A** ptr) { ptrArrayOfClassAObj ects=ptr; } Function() { for(int count=0;count<N;count++) { ptrArrayOfClassAObj ects[count]->i;/////Does Not yields me the correct i ; the member of its own ptrArrayOfClassAObj ects[count]->c;/////Does Not yields me the correct c ; the member of its own } } A ** ptrArrayOfClassAObj ects;//N Objects of Class A which had been newed. char c; }; class B: public A { B(int in1,char in2){ i=in1; c=in2; ///other members } //has some other members too which may be virtual }; class [from C to Z]: public B {. ...Show All
SQL Server What's wrong with SQL Server E-Leanring?
Hi, all, Thank you very much for your kind attention. Think I should put this post here for help as I cant find any other forums appropriate for this problem tho. Thanks a lot for that. My question is: what is wrong with the E-Learning for the Microsoft online E-learning courses (the one I am looking at is new features of Microsoft SQL Server 2005 Analysis Services) As I have tried so many times to launch the E-learning tools, but it always just showed me the content while not any tool to start the learning. I have tried ages for that. Could anyone here give me any advices and guidance for that (I actually just used it yesterday, it was fine, but not now I have tried both 'launch e-learning' and 'view e-learning details' , bo ...Show All
