Software Development Network Logo
  • Smart Devicet
  • Microsoft ISV
  • Visual Studio
  • .NET Development
  • SQL Server
  • IE Development
  • Audio and Video
  • Visual C++
  • SharePoint Products
  • Visual Basic
  • VS Team System
  • Game Technologies
  • Windows Vista
  • Visual FoxPro
  • Visual C#

Software Development Network >> lfnovo's Q&A profile

lfnovo

Member List

Yodine
AMEgo
Helen999888
Bhupendra_Singh_4c7760
Menthos
voevoda
NeedSomeAnswers
gg1
WaYdotNET
enzo131
adorer
Ntc
ClaraOscura
GiampaoloSanRemo
DaGlow
MffM
Tigers21
Sukh1983
Fixxer
NeerajAg
Only Title

lfnovo's Q&A profile

  • SQL Server I am using the reportingservice web service, everything runs fine but does'nt display report

    Please am i doing something wrong, i debug the code no where it is giving me an error: I am using the reportservice.asmx web service to render the report, but it is not displaying the report at all. it just shows me on IE saying Done with out any error, please can you tell me am i doing something wrong, after a very hard time i reached upto this point, on my form i just have a button on its click event i wrote the following code. and i have no other control on the form. except this code. just referencing the webservice. thank you. Dim rs As New ReportingService Dim LogonCredentials As System.Net.NetworkCredential Dim Items As CatalogItem LogonCredentials = New System.Net.NetworkCredential("usernam ...Show All

  • SQL Server Mimic SQL Server Management Studio behavior inside RS Report

    I want to know how to mimic the SSMS behavior inside an Reporting Services report when querying an XML field. In SSMS, a field that is XML shows up as a link, and when the use clicks on the XML, it opens then entire XML document in a new window. I need this exact behavior in RS, but can't accomplish it. Any smart people out there who can do this Brian, thats the part that I dont understand. The target isn't in a file- it's in a field in the database. So, with one hyperlink action how do I extract the data, and present it in another IE window, formatted as XML (i.e. indentation, Expand/collapse nodes functionality, etc. like in IE or SSMS) You say "pass the value of the XML". How do I co ...Show All

  • Visual C++ How to create a simple DLL in Visual Studio 2005 which can be accessed in C# class?

    I want to create a simple DLL in Visual Studio 2005. The DLL should expose a method 'ModifyWindow'. I want to access this DLL inside a C# program. I tried creating a MFC DLL project 'Modify'. The code snippets of the project are shown below: Modify.h #pragma once #ifndef __AFXWIN_H__ #error "include 'stdafx.h' before including this file for PCH" #endif #include "resource.h" // main symbols class CModifyApp : public CWinApp { public : CModifyApp(); // Overrides public : virtual BOOL InitInstance(); public : __declspec ( dllexport ) void ModifyWindow(HWND hnd); DECLARE_MESSAGE_MAP() }; Modify.cpp #include "stdafx.h" #inc ...Show All

  • .NET Development Delegate / event and serialization with SOAP

    Hello! When I tryed to serialize the Class1 object (by calling the save_Click..) I got the following exception message: "Type 'Hello.Form1 in Assembly 'Hello, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' is not marked as serializable". How can I solve this problem Is there a way to tell the SoapFormatter() that events/delegates don't have to be serialized //////////////////////////////////////////////////////////////////////////////// Form1.cs //////////////////////////////////////////////////////////////////////////////// namespace Hello { public partial class Form1 : Form { private Class1 myClass; public Form1() { InitializeComponent(); myClass = new Class1(); // I think th ...Show All

  • SQL Server Passing Parent configurations to child

    Hi All, How can I pass configurations from Parent Packages to a child package I am using Execute package task to execute a child package but am unable to configure a variable to pass configurations to a child package. Thanks Actually I was looking at the wrong version of the package and when I corrected this it worked, however I have another concern, do we have to refresh the flat file connection whenver we make any changes to the child package I dont think so but wanted to confirm. Thanks ...Show All

  • Visual Studio Team System Default values when creating related work items

    Hi, I'm adding some custom fields on our work items. I wanted to use the value of the field in the existing work item as the default in the related work item. This is done for the Assigned To field by default. Can anyone tell me if this is possible and in that case point me in the right direction were I can find more info. Regards, Christian From my own research, it seems that only the System.* Work Item fields are copied to the related work item (such as System.AssignedTo, System.Title, System.Description) Can anyone from the product team confirm this ...Show All

  • Visual Studio 2008 (Pre-release) Navigate

    Hi, Using the August CTP-bits I tied executing the following statement: Query<Category> categories = db.GetQuery<Category>("SELECT VALUE c FROM Categories AS c WHERE NAVIGATE(c, NorthwindLib.Category_Product).ProductName LIKE 'A%'"); Which results in a mapping exception: The Member or Property 'Category' on the 'C' side is not present on the 'O' side. Why Regards, Jesper Hi, Try to use the full name of the model: SELECT VALUE c FROM NorthwindLib .Categories Guy Burstein http://blogs.microsoft.co.il/blogs/bursteg ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DrawModel Memory Problem

    Hey all, i have used the code from the MSDN documentation which draws a model but i have run into a problem. private void DrawModel(Model m) { Matrix[] transforms = new Matrix[m.Bones.Count]; float aspectRatio = 640.0f / 480.0f; m.CopyAbsoluteBoneTransformsTo(transforms); Matrix projection = Matrix.CreatePerspectiveFieldOfView(MathHelper.ToRadians(45.0f), aspectRatio, 1.0f, 10000.0f); Matrix view = Matrix.CreateLookAt(new Vector3(100.0f, 150.0f, -150.0f), Vector3.Zero, Vector3.Up); foreach (ModelMesh mesh in m.Meshes) { foreach (BasicEffect effect in mesh.Effects) { effect.EnableDefaultLighting(); effect.View = view; effect.Projection = projection; ...Show All

  • SQL Server Drilldown in SQl Reporting Service

    Hi, I'm new to SQL Reporting Service. Now only I've started studying that. My question is, I wanna list out my product sales for each month for each keywords. For example, I have 4 products, some 15 keywords (its an ecommerce site. Visitor coming from a particluar keyword and buying some products. Wanna list out sales for each keywords and product for Every month. To know the quarter sales wanna see the sales and product name for particular keyword). I'm having reports for each month sales. like, Keywords Product A Product B Product C Product D Keyword 1 125 24 275 12 Keyword 2 456 245 67 1223 For quarter sales, I want to see the sales and keywords list for each ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Skysphere Demo

    It's finally all working, thanks for all the help! I've created a Sky Sphere demo to help me figure out how to do such a thing for my game. The texture for the sky sphere gets distorted around the poles, and I haven't figure out how to fix that, but otherwise it looks pretty cool. If you're interested, I've uploaded the source code and artwork to: http://www.spellflight.com/GameModels/SkysphereDemo.zip Here's the readme: Skysphere Demo By Michael Billard mike@sbillard.org This Windows XNA demo displays a sky sphere and a simple model that flies around the game world. You can control the model's rotation and position. You can also control the camera rotation and camera position. Background texture by NASA. Models and te ...Show All

  • Visual Studio 2008 (Pre-release) Refactoring?

    Will you ever implement refactoring for Visual C++ QbProg Grab a copy of Visual Assist from Whole Tomato Software. The tool rocks, and they'll always be "ahead of the curve". Don't wait for MS to implement this. They're too busy introducing new .NET / WPF / etc. technologies every month to bother improving the VC++ toolset we use to build the commercial apps keeping the Windows platform alive. ...Show All

  • SQL Server The product level is insufficient for component...

    Hi. I'm using SQL Server 2005 Management Studio to try and run an SSIS package. One step blows up with this error: "The product level is insufficient for component "data conversion 1"". I checked out the thread here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=112469&SiteID=1&PageID=0 However, after installing SP1, the program is still giving me the error. I'm running the package from my WinXP Pro SP2 workstation. What am I missing Thanks. You need to run the setup again, so you do need the installation CDs. One of the first install pages asks which components to install (SQL Server, OLAP Server, SSIS, etc) - you need to check SSIS (likely only SQL and Workstation Com ...Show All

  • Visual Basic UserDomainName - Domain or Workgroup?

    Hi all, I've used System . Environment . UserDomainName to find out what domain/workgroup the user is on, but how do I know if its actually a domain or workgroup that they've logged onto. I want to be able to do stuff if they're not logged into a domain. Thanks in advance... Scott There may be a more official way but I found this: http://www.devx.com/tips/Tip/26562 type=kbArticle&trk=MSCP Basically you attempt to enumerate the DC name for the "domain" part of the user name, if it pops back with a name then you are in a domain, empty then workgroup. Not tried it and seems a bit untidy but may work. Had a bit of a play, do not have a domain ...Show All

  • Software Development for Windows Vista WF as a web service & capturing WF events

    I have seen a few examples of using ASP.Net as a WF host and then the host code subscribing to workflow completed, terminated etc. events. When you expose a WF as a web service, in this case you do not have any such code. What would be the appropriate way to capture such events in cases like this I would think that if I added a global.asax and tried to capture the information there, that this could cause a problem with not knowing which particular workflow was being completed or terminated. Thanks! Hi - Globals.asax seems to be a possible approach! You can get the specific information about the instance from WorkflowTerminatedEventArgs: e.WorkflowInstance. I guess that was your specific question - right ...Show All

  • .NET Development msi .NET dependency

    Hi, I've created setup and custom installer(C#) projects using VS2003 to package and deploy an application to a mobile device, but some users are reporting that unless they have .NET 1.1 installed, when they open the msi, they get the following message:- "This setup requires the .NET Framework version 1.1.4322. Please install the .NET Framework and run this setup again..." I know that in general .NET apps run against the version of .NET they were compiled against but this can be overridden in the app config file, but is a similar thing possible in the context of the msi These users have already got .NET 2.0 so they should not be forced into installing 1.1 just to install something on their PocketPc device. Th ...Show All

©2008 Software Development Network