GlennZarb's Q&A profile
SQL Server Have any of you had an experience with deploying reports to SAP portal?
The url iviews do not seem to like the format of the url. It likes to see url parameters in key value pairs. But the RS reports for mat is a follows. http://nortaras.fngp.com/ReportServer/Pages/ReportViewer.aspx /Innovator+Reports/Active+Projects&rs:Command=Render Any ideas ...Show All
Visual Studio Team System 'Test' Menu
How do i enable the test functionlaity, is there any additional software i need to install We currently have Visual Studio 2005 Standard editions, I've tried to reset the user data to change the profile to Tester, but do not get a prompt to change user Have you installed the Visual Studio Team Suite or the Visual Studio Team System for Software Tester on your machine You can look up Help->About to see if you have installed these on the machine ...Show All
Visual Studio Project references basics
I have a single solution and two VC++ projects. I hope the MSBuild experts can help even though I'm only using the VS-integrated level of MSBuild. (EDIT -- Maybe I'm not using MSBuild at all! Seems as though it is used for managed code projects; I'm not using managed code.) One project ("A") depends on the output of another ("B") because the final assembly (.exe) of project A uses the output of project B as the source for an embedded resource. (A custom build step in project A compresses the output of project B before the resource compiler actually uses the compressed file while building project A.) For now I have added the output file of project B to project A. The problem is that th ...Show All
Windows Forms ClickOnced app exe path always the same (after updates)?
Hello, I just finished updating my application to use ClickOnce deployment. My app used to contain a setting that would enable the users to just use a checkbox to "Run this application on Windows startup", and what it did behind the scenes was to save the application's full path in the Run key in the registry when the app exits. My question is, when ClickOnce updates an application, does it replace the original executable or does it save it locally with another path So, what I am currently doing, will it keep working Thanks in advance, Luis Alonso Ramos ...Show All
Visual Studio 2008 (Pre-release) Orcas March 2007 CTP Installable Bits?
I can't wait to start using Orcas, especially after I've read about all the good things going into the March 2007 CTP. However, I can only seem to find a VPC install (hmm, double my memory use No thanks.). Where are the installable bits Thanks, -Michael Dave Sexton wrote: Hi everyone, I logged in but since I can't activate Windows (no network connection) it logged me out. I haven't tried, but can I add an external network adapter and actually activate Windows For some reason I doubt it. Anybody have a clue Hi Dave, From the START button if you can't see ACTIVATE WINDOWS immediately then go to; Accessories with your mouse ...Show All
Windows Forms Open IE and Navigate from VB.Net
Can anyone tell me how to open Internet Explorer and navigate to URLs from vb.net When the user clicks a button on my windows form I would like it to navigate to a URL in Internet Explorer. If there is already an IE window open, I would like it to reuse it. Something like this: If (IE is not open) then Open IE End If Navigate to URL Thanks That almost worked but it got me started, I had to change it to the following: System.Diagnostics.Process.Start("iexplore.exe", " http://www.yoursite.com ") However, this opened a new window each time. I found that the following would reuse the browser, if available: System.Diagnostics.Process.Start(" http://www.yoursite.com ") Now, as a follow ...Show All
.NET Development Web Service Client Error When Calling Web Service!!!
I have just completed coding my first .NET Web Service application. Both my client and web service exist on my local workstation, and I want to test in this environment using Visual Studio before deploying the web service to a server and testing in a dristributed environement. When I run my client, Which uses the following code to access the web service: Engine eng = new Engine( ); int objs = eng.IGetNumberOfPrebuiltObjects( ); I get the following error: An unhandled exception of type 'System.Web.Services.Protocols.SoapException' occurred in system.web.services.dll Additional information: System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.NullRefere ...Show All
Visual C# A little bit stupid question..Sorry
Excuse me but I`m a beginner in C#. My question is: I have a string s = "xxx xxxxx xxxxx xxxxxx xxxx", How I can convert it to: "xxx", "xxxxx", "xxxxx", "xxxxxx", "xxxx" Thanks ! Best Regards ! Hmm, looks like it worked perfectly to me. The 'elements' string array indeed contains the 5 sub-strings from 's'. What else would you want ...Show All
SharePoint Products and Technologies Is anyone using visual studio extensions for wss?
I can't seem to find docs on how it works. I recently posted asking how to get another assembly added to the solution that vsewss creates, but got no responses. There have got to be people somewhere that know about this, right A friend of mine blogged about the VSeWSS Take a look http://www.johnholliday.net/archive/2006/11/30/Inside-the-Visual-Studio-extensions-for-SharePoint.aspx ...Show All
SQL Server XML into SQL tables with relationships
Hi, I'm trying to find the most efficient method of importing XML files into SQL Server using SSIS. The objective is to read these files created in a source directory and potentially there will be a large number of these created every second. I've experimented with the XML Source data flow task and been able to import using either the OLEDB Destination or SQL Server Destination.Using the associated XSD file These methods work well when there are no PK or FK relationships, i.e. the target tables are stand alone. However when I use a schema that has relationships I need to be able to import and be able to return the key then use this key to import into another table to ensure the FK relationship and so on..... From what I know ...Show All
Silverlight (formerly WPF/E) Running WPF/E applications on Handheld devices/PDAs
Hello All, I have been wondering whether we can develop WPF/E enabled applications for handheld devices/PDAs I think we can, coz I saw some video on Channel 9 showcasing this If yes, what tools are required and where can I find them and If not, is it planned in the near future What will take to do so then Thanks for your patience! Best Regards, Rohit. Just to chime in here. I have worked for 2 mobile development companies and both highly want WPF on mobile devices. Specifically the controls library. This way we can make slick UI's for our applications but also have a great framework to replace System.Windows.Forms so we can have good input, database etc. Thanks and take care. ...Show All
Visual C# CreateObject equivalent function in c#
What's the C# equivalent to the VB 'CreateObject' function. I want to do this for using SQLXMLBulkLoad Here's the VB code I want to convert. set objBL = CreateObject("SQLXMLBulkLoad.SQLXMLBulkload.3.0") objBL.Execute "SampleSchema.xml", "SampleXMLData.xml" Thanks for your help Sai Probably this is what you need SQLXMLBULKLOADLib.SQLXMLBulkLoad3Class objXBL = new SQLXMLBULKLOADLib.SQLXMLBulkLoad3Class(); objXBL.ConnectionString = "Provider=sqloledb;server=server;database=db;uid=id;pwd=password"; objXBL.ErrorLogFile = "SQLXML3Books.errlog"; objXBL.KeepIdentity = false; objXBL.Execute("Books.xsd", "Books1.xml"); ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Skinned mesh issue
I have an .x file of a character and I have it working with multiple animations all stored in one file (its perfect). I have come to do the physics side of the game and I need to encapsulate the model in a bounding shere/box, this is easy enough to achieve with the utils but I have one small issue. In one of the animations my character jumps up and I dont know the best way (or any way really) to get the current location of the center of the mesh during the jump. Do you know if there is an easy way to accomplish this Basically I need to move the boundingbox with the character at all times. FYI - The code I am using is based on the directx skinned mesh sample. Merry christmas and thanks for your help, Dave ...Show All
Internet Explorer Development How to get current displaying URLs?
I am absolutely new to IE development. And am only familiar with VB for Windows development. So any help here would be greatly appreciated. I am interested in finding the current URLs being displayed in IE windows/tabs. How do I grab this data Is there a way to do this smoothly in VB Thanks. Where are you trying to access this from Are you external to the IE process in which case you shoudl be able to use accessibility interfaces to access the tabs in IE7. Thanks -Dave ...Show All
Windows Forms Installer not Installable
I wrote a windows service and an msi installer for the service using VB8 in VS8 Professional SP1, OS Windows XP Prof. SP2 I could compile and install fine for some time but at some point when i wanted to install the program on my development machine it started telling me the following bug (in the system eventlog): Produkt: LSCKeepAlive -- Fehler 1305. Fehler beim Lesen von Datei: Q:\Projekte\LSCKeepAlive\LSCKeepAliveSetup\Release\LSCKeepAliveSetup.msi Systemfehler 1008. Uberprufen Sie, ob die Datei existiert und ob Sie darauf zugreifen konnen. Translated to English: Product: LSCKeepAlive -- Error 1305. Error reading file: Q:\Projekte\LSCKeepAlive\LSCKeepAliveSetup\Release\LSCKeepAliveSetup.msi Systemerror 1008. Please check whether the fi ...Show All
