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

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

ede1

Member List

WXS123
YoungJoe
Guillaume DAVID
cplusplus1
Rudedog2
Fabriciom
&#169&#59; Ţĩмό Şąļσмāĸ
Tomas Jecha
Samuel369
rocky_don
bharathi_tunes
Weavor
Alex Merchant
Steve Kibble
steve_h
Nadav Popplewell
zwp
blanc0
cheesecake-lover
mcutchin
Only Title

ede1's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. device type : Reference

    How can i create a GraphicsDevice with DeviceType.Reference How i can attach this graphic device to the GraphicsDeviceManager thanks. ...Show All

  • Visual Studio 2008 (Pre-release) ADO.Net and databinding to a listbox

    If I databind an ado.net datatable to a listbox, the content of every listboxitem is a DataRowView, which is fine I guess. But what's the easiest solution to find the matching ListBoxItem if I have a normal typed datarow I wanted to use the ListBox's ItemContainerGenerator.ContainerFromItem(), but this doesn't work as the listboxitems' content aren't the datarows but instead datarowviews. Right now since I haven't found any other solution, I have to iterate through the whole list of listboxitems and compare the datarowview.Row to my typed datarow, which really doesn't seem like a good solution. Suggestions I didn't include any data, you have to manually add some entries using the "Add& ...Show All

  • SQL Server AMO - measure numeric Value

    I'm building a cube dynamically and i want to list just the columns in the fact table that are numeric in order to make Sum's, AVG's and so on. How can i do this using AMO , i'm wondering if i can do this from the FactTable's (Data Table) DataColumns, but there is no metadata that tells me if the values there are or not valid numeric measures. Regards Lisber. Hi. I don't know the answer to your AMO question. However, I do know that you can get the metadata about your fact table from the system views in SQL Server 2005. For example, if you want to know the columns in a fact table with data type Money or Float the following query works against the sales fact in AdventureWorks schema: SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE T ...Show All

  • Visual Basic Err.LastDllError Equivalent in VB.NET

    Hi, I'm working on a conversion project: I would like to know If there is any .NET equivalent for the below statements: 1) Err.Raise (...) - I'm thinking of using throw statement. 2) Err.LastDllError Thanks... Kannan Online wrote: 1) Err.Raise (...) - I'm thinking of using throw statement. 2) Err.LastDllError 1. Yes, use Throw 2. System.Runtime.InteropServices.Marshal.GetLastWin32Error ...Show All

  • Windows Forms where can I find out about the combo autocomplete

    not much detail on how to use. I want my custom datasource to be the same as what filled the combo box so I should not use a reader but a data table to fill the list as I would have to read through the reader over and over correct ...Show All

  • SQL Server Error got when cube is processed!!

    Hi all, When i process the Cube, i get the following error message <Batch xmlns=" http://schemas.microsoft.com/analysisservices/2003/engine "> <Parallel> <Process xmlns:xsd=" http://www.w3.org/2001/XMLSchema " xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance "> <Object> <DatabaseID>ASP</DatabaseID> <CubeID>Patient Care</CubeID> </Object> <Type>ProcessFull</Type> <WriteBackTableCreation>UseExisting</WriteBackTableCreation> </Process> </Parallel> </Batch> Processing Dimension 'Medical Provider' completed successfully. Start time: 7/16/2006 11:47:16 PM; End time: 7/16/2006 ...Show All

  • Software Development for Windows Vista Where can I download matching pre-release of Microsoft Visual Studio Code Name “Orcas” Development July CTP?

    Hi guys, Can you tell me where can I download the matching release of Visual Studio Orcas for Windows SDK July 206 CTP On the download page of Windows SDK July 2006 CTP , the overview said: " There is no matching pre-release of The Microsoft Visual Studio Code Name “Orcas” Development Tools for the July CTP " Can you tell me when it will be available to download Since there is no Visual Studio "Orcas" CTP for this July 2006 CTP release, I can't use Visual Studio 2005 to code and targetted for Windows Vista anymore. Jason Sacks - MSFT wrote: You can't use the VS "Orcas" with the July CTP, but you can with the Beta 2 release. Can you tell me why As far as I know, ...Show All

  • .NET Development Getting "The page cannot be displayed" page, even when the page is available n sevice is running

    Hi there, i use IIS and .net in my project. Our project does a kind of scanning process. One page does the scanning; sometimes it will take 6 to 10 hrs to complete. At this page some times I get “The page cannot be displayed” page on the title bar i get "Cannot find server", around 30 mints time. But the scanning process is going on (log file and DB are being updated). The time out in configuration file (Web.config) is set to 2 days and at the IIS also set to 2 days. IIS version 5.1. Kindly help me in rectify this problem. Awaiting 4 ur replies. This forum is for AST.NET Web Services only. The question is best asked in the forums at http://forums.asp.net/ and unfortunately we can't mo ...Show All

  • Windows Forms windows product activation

    hi ppl i was just wondering if i have to reinstall i can normally activate by internet then yesterday i had to activate by phone please help i don't want to keep activating by phone oh and i had a new graphics card if that changes enything   thx in advance   p.s srry if in wrong forum couldn't find a suitable one if enyone can find one please post a  link     thx again Hi, Please go through the following link. Hope this helps you with the procedure. http://support.microsoft.com/default.aspx scid=kb;en-us;307890&sd=techh Thank you, Bhanu. ...Show All

  • Visual Basic Start Refactoring!

    I installed the Refactoring! tool into Visual Studio 2005 (using VB.net). However, I can't figure out how to involk the function. I can't find a Menu item across the top of Visual Studio, I've checked in the "Tools" menu, and the "Help" isn't much help. It's very general, or at least I can't figure it out. I've tried selecting code, but still can't figure it out.... What am I missing Mike In a Visual Basic 2005 program add the line Dim foo As Rubbish where such a declaration would be valid. I'm assuming you don't have a type called Rubbish defined! You should get the word Rubbish underlined with a squiggle. But, the squiggle should end in a narrow red rectangle ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Creating objects 'by name' read from level data

    Hi, Firstly sorry for the confused subject line ;) Ok, I'll try and explain - suppose I have a class called Enemy1 and a text file that lists level data and in there I have the text "Enemy1" listed also. Can I somehow create a new instance of an Enemy1 object by only knowing 'Enemy1' as the string that I have read from the level text file This would mean I would avoid alot of code such as 'if blah = "Enemy1" then... Enemy1 myEnemy = New Enemy1' etc. Hope that makes sense, sure there is a 'correct' name for this. Cheers :) Check out serialization  and  reflection Actually, the SpaceWar startup kit reads it's data from an xml config file. ...Show All

  • Visual C++ Memory window cannot be scrolled much

    When displaying memory, clicking on the scroll bar only allows you to move a limited amount in either direction. Beyond this, in the higher address direction, it shows blank, and will not move past the lower address limit. I can find no documentation on the proper operation of the memory windows, beyond the most rudimentary descriptions. For structures larger than a few Kb, it is necessary to be able to scroll from the base address, but the memory windows apparently don't let you do this. They worked as expected in VS6. Try to enter a bug here: http://connect.microsoft.com/feedback/default.aspx SiteID=210 ...Show All

  • Software Development for Windows Vista While loop activity

    Hello, I posted a while back on an issue I was having with a while loop in a workflow. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=656133&SiteID=1 Alex Mujar provided me with an answer, however I think this is a work around and would like to understand whether this is expected behaviour or a bug. To summarise I am creating workflows in my host by reflection. I reflect into a DLL that contains the workflow to create an instance of the workflow type. My host needs to be independent of specific workflow types, so I use reflection rather than creating types statically. If I put the workflow DLL in the application path for my host all is well. If I do not include the workflow DLL in the application path then I ...Show All

  • Visual Studio 2008 (Pre-release) How to drag a control from Winform and Drop it onto the WPF Control

    I have hosted a WPF Canvas into Winform. Now I am trying to drag a control from winform and drop it onto WPF Canvas. But when I dropped it onto the Canvas it doesn't fire drop event. Let me know if further clarification is required. Best Regards, ...Show All

  • Connected Services Framework RDF - Profile Manager

    Vasu, RDF is a W3C Recommendation and is used for representing information as a graph with nodes and links. This is particulary useful for profile data because in our experience profile data looks more like a graph as opposed to relational or hierarchical. This is the reason we chose to use RDF. For more info: http://www.w3.org/TR/rdf-primer/ the actual back-end store is SQL. balab ...Show All

©2008 Software Development Network