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

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

Poledog

Member List

Gazeth
Ying06
Kamil Janiszewski
Arjang Assadi
DD_Helmetman
uhclstudent
Shanno
btnguyen
Wildert
KitGreen
Nayan Paregi
Bernd Wechner
Khalnayak
Cyberjunkie
Revin
bill perlman
shimshon
AlexBB
Archaeon
Rattlerr
Only Title

Poledog's Q&A profile

  • SQL Server HOW to browse KPI's Result Data through ADOMD.NET?

    Hi, My question is how to browse KPI's Result through ADOMD.NET I mean to get a KPI's Result Data, not get the metadata of KPI, not get the KPI's Value Property(String) either. I see the MSDN said about AdomdDataReader, but it doesnt tell how to get a KPI's Value. I guess, I need to get KPI's metadata first, and get a KPI's Value Property, that's a MDX, you know. Then I bring the MDX to the AS server, and get the result. Is it right But, if so, when i want to slice on a dimension when I check the KPI's result, how could I do I have got a KPI's Value Property MDX, then I need to modify the MDX to add the dimension slice to it manually Thanks. Via an MDX query, you can retrieve the various values associ ...Show All

  • Visual Studio Tools for Office Error In Action Pane Add In's

    I'm Using VSTO 2007. My OS is Office Xp SP2, VS.NET 2005 Hope you can get an clear idea. i dont know how to roll back this add in's setting. When i write this code ActionsPane.Controls.Add(User Control ); I'm getting that error..but when i comment it and run. It doesnt show any Errors.. I also re installed the VSTO again. But no use. Could anyone suggest me the proper way to rollback the add in's so that, All application which has Action pane will run fine. I have removed the Reference from Add In Template for Microsoft Action Pane 3.0. When i refered that .. it has a reference in Registry. But i couldnt add it back which is an XML Expansion pane Xml File How i can do it. Before i removed this f ...Show All

  • Visual Studio Express Editions Open File

    I have searched every where for this and I can't find what I need. I made a ListView and it is populating file names based on a certain directory on local hard drive. I am trying to figure out how I can make it so when the user clicks on the file name in the ListView it will actually open that file. This seems like it should be a simple thing to do, but I can't find anything on this. Thanks Well I would like to have the File Name displayed and not the file path. I should know what the path is (coming from the database), so I could bring it in and just add the file name to the end of it path & "/" % Me . ListView1 . SelectedItems (0). Text You think that will work I'll try it in a little while. ...Show All

  • Windows Live Developer Forums Error while using MSN Search Web Service SDK

    Hi, I am using MSN Search Web service in my Asp.net 2005 Application . When i call Search method of MSNSearchService class i get the following error--> The remote name could not be resolved: 'soap.search.msn.com' . Windows Sample is working fine but when i add web reference http://soap.search.msn.com/webservices.asmx wsdl in Asp. net application i am getting the above metioned error. Kindly help me in this regard. Regards, Nishant Sharma I was having a similar problem and it turned out to be an incorrectly constructed request object. In my particular case, I had accidentally omitted the culture info field. ...Show All

  • Visual Studio 2008 (Pre-release) MergedDictionaries problem

    Hi! Assume I have the following style in a file called myControlStyle.xaml: <ResourceDictionary> <Style TargetType="myControl"> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="myControl"> ... <Border BorderBrush="{StaticResource myBorderBrush}"> ... </Border> ... </ControlTemplate> </Setter.Value> </Setter> </Style> </ResourceDictionary> As you can see, it uses a brush called myBorderBrush. What I now want to do is to create a separate file for each color theme where each file defines an own myBorderBrush: File blueColors.xaml: <ResourceDictionary> ... <SolidColorBr ...Show All

  • Visual Basic Sorted List Serializable?

    The error message is "Sorted List is not 'MARKED' for serialization" ... which leads me to think the error may be in my code: <code> Option Explicit On Imports System Imports System.Collections Imports Microsoft.VisualBasic Imports System.IO <Serializable()> Public Class LabelMap Private PlaySlipSL As SortedList Sub Serialize() Dim formatter As Runtime.Serialization.Formatters.Binary.BinaryFormatter = _ New Runtime.Serialization.Formatters.Binary.BinaryFormatter() Dim Stream As Stream Try Stream = New FileStream(FLAT_FILES_ROOT + SL_NAME, FileMode.Create, FileAccess.Write, FileShare.None) Catch ex As Exception MessageBox.Show ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Loading a mesh then rotating it about x and y axis

    Hi, I have a mesh, xwing.x, which is a simple x wing model. I am able to load it onto my form and display it w/ the following code: LoadMesh("C:\\xwing.x", ref spacemesh, ref spacemeshmaterials, ref spacemeshtextures, ref spacemeshradius); This is my render method: public void RenderScene() { device.Clear(ClearFlags.Target, Color.DarkSlateBlue, 1.0f, 0); device.BeginScene(); //Draw Mesh for (int i = 0; i < meshmaterials.Length; i++) { device.Material = meshmaterials ; device.SetTexture(0, meshtextures ); mesh.DrawSubset(i); } device.EndScene(); device.Present(); } Next, I would like to know how to rotate my model about the x and y axis. I was ...Show All

  • Visual Studio 2008 (Pre-release) Hierarchical Combo Box in VB.NET 2.0

    Hello, I have two queries in VB.NET 2005 I am working on a project and needed a Hierarchical Combo box for displaying Hierarchical values in it just like in Treeview control. I also want to display Hierarchical data in a column of Data GridView using DataGridView Combo box column. Any piece of source code will really Appreciating. Waiting for ur responce. Thank u in advance! What seems from your requirement is that you require a combo box control that will show the Treeview Control as the dropdown window, below is the link provided where you can find the code for creating a custom control for the same http://www.codeproject.com/cs/miscctrl/customcombos.asp Have a nice time ...Show All

  • Visual C# Getting the containing folder of a service

    Hi there, I want to get the directory path of a service I am writing in order to have it automatically load settings from an XML file in the same directory - is there an easy way to get this given that the service .exe file will be in different locations on different computers it is deployed on Eg if the service is in 'c:\services\new\service.exe' I need to get 'c:\services\new\' Thanks! Alan For Windows, console and service apps you can use Environment.CurrentDirectory to get the current directory of the app. This can be changed over time so you might want to cache it up front. If you want to be able to determine the directory of the running process without relying on the current directory then you can use P ...Show All

  • Visual Basic Difference between C#.net and VB.Net

    Hi What is the difference between C#.net and VB.net Hi, Just visit the below link, you will find the diff http://www.harding.edu/USER/fmccown/WWW/vbnet_csharp_comparison.html Regards Sidheshwar ...Show All

  • SQL Server Transfering data from one database to another in Visual Studio 2005

    How could I transfer database data from from one databast to another in SQL Server 2005 because I had 4 databases in my application and I want to merge all database data into one database. Thanks in advance. Review information from SQL Server 2005 Books online and also from http://aspalliance.com/947_Building_a_SQL_Server_2005_Integration_Services_Package_Using_Visual_Studio_2005 here. renz2k7 wrote: How could I access the SSIS package through Visual Studio 2005 if possible Thanks. If this is one-off requirement then you might think about import the tables into one database and then merge the requirement information using TSQL queries on the destination database. ...Show All

  • Visual C# System.Threading.Threadstart question...

    Im not sure that this is the correct forum for this but it was the closest that I could find for this particular question. I apologize in advance if this is a newbie question. Im still getting my feet wet in the .Net environment. I wrote a windows service today ( a particularly easy task now with VS 2005 ) and I used a thread to do the work in the service. things work fine when the method that I use in the ThreadStart creation doesnt take any paramaters, but I couldnt figure a way to use a method that takes a paramater. I tried aThread = new Thread ( new ThreadStart (<class> .method(arg))); aThread = new Thread ( new ThreadStart (<class> .method)); But both of those lines would give me compiler errors. I c ...Show All

  • Visual Studio 2008 (Pre-release) Svcutil - July CTP - Metadata contains a reference that cannot be resolved

    Hi, I just wanted to try some sample code and generate the proxy with svcutil. The service is self hosted and I'm running into: C:\Program Files\Microsoft SDKs\Windows\v6.0\Bin>SvcUtil.exe http://localhost:80 01/Weather/out:proxy.cs Microsoft (R) Service Model Metadata Tool [Microsoft (R) Windows (R) Communication Foundation, Version 3.0.4312.0] Copyright (c) Microsoft Corporation. All rights reserved. Attempting to download metadata from 'http://localhost:8001/Weather/out:proxy.cs ' using WS-Metadata Exchange or DISCO. Microsoft (R) Service Model Metadata Tool [Microsoft (R) Windows (R) Communication Foundation, Version 3.0.4312.0] Copyright (c) Microsoft Corporation. All rights reserved. Error: Cannot obtain Metadata from http://local ...Show All

  • Visual Studio Team System Question about changing the Assigned To Dropdown list

    Hello All, Is there a way to take a subset of the domain network names to display for the Assigned To dropdown list Currently all names are displayed. Thanks in advance for any help you can give :) Bob Hanson Yes, here is example of limiting to only two project groups: <FIELD refname="System.AssignedTo" name="Assigned To" type="String"> <ALLOWEDVALUES filteritems="excludegroups"> <LISTITEM value="[project]\group1" /> <LISTITEM value="[project]\group2" /> </ALLOWEDVALUES> </FIELD> The groups could be server groups, project groups or domain groups. They could also be other string values, see http://forums.micros ...Show All

  • Visual Studio Stepping through Error List

    Hi In Visual Studio 6 when your compiled program had errors, they were listed in the Build window. Pressing F4 it would jump to the source code where the error was. Repeated pressing F4 stepped through the error list jumping to the source code each time. VC2005 uses the Error List but is there a short cut key to step to the source code as before. David Try CTRL->Shift F12 to see if that is what you are looking for...otherwise double clicking on the error in the Error List will take you to the individual error. Note there is no assigned keyboard command to step back and you will need to assign it (View Error Previous). Also if one wants to have the error list displayed, type in the finger twist ...Show All

©2008 Software Development Network