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

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

egomine

Member List

Paula M
JCJCJC
Lawrence Sutton
dajm220366
Yurko
Jim Pendarvis
ihar3d
DINESH CHAUDHARI
saaniok
llebron
lxm218
Atiz
XNA Rockstar
blackmamba
r3n
rabbiwan
ahallowell
Valery Zharkov
PareshGheewala
James Stetson
Only Title

egomine's Q&A profile

  • Software Development for Windows Vista WF RTM and .NET Framework 3.0

    With WF nearing RTM what will be the ship vehicle Will it be available as a part of a .NET Framework 3.0 beta or CTP and the WF VS Addons will be RTM Will there be a seperate WF download until the rest of .NET 3.0 RTMs Just curious since it seems like it will be the first of the Foundation technologies to RTM. ...Show All

  • Smart Device Development Windows PPC 2002 running Pocket PC 2003 apps???

    Is there any way to run Pocket PC 2003 Apps(built with visual Studio 2K5) on a Pocket PC 2002 device This is a Smart Device win32 or mfc app that is being built with visual Studio and the target is Pocket PC 2003. Any help would greatly be appreciated... I tried to build and run on the pocket pc 2002 device but get the following error: Cannot find: <appname.exe> (or one of its components). make sure the path and filename are correct and all required libraries are available. This exe works on Pocket PC 2003 and up devices... Thanks again in advance! Try dumpbin on the exe to figure out the dependencies for the exe, they need to be there in either \windows or \ or in the exe folder. My gues ...Show All

  • Visual Studio Team System VSS Migration hanging TF60047 - how to move forward?

    I am in the middle of running VSSConverter to migrate our source (~2GB) from VSS to TFS. It has been hanging for an hour or so with error # TF60047. The error message says there could be a problem with the network connection or TFS connection. I am running in a single server setup so TFS and SQL Server are all on the same machine, and all are running, incl. all SQL Server service - I checked in Configuration Mgr. One problem earlier was that there was huge (~800K) memory usage by w3wp.exe which was being run by the TFSService account. So I shut down IIS. Now, even though memory usage is down to acceptable levels, the migration is still not moving forward. Any ideas on how I can proceed here Or if I were to start afresh, how do I do that ...Show All

  • Visual Studio DSL Tools support for Visual Studio editions

    I promised that I'd get back to this forum with details of our licensing plan once they were available. I'm pleased to say that we can now make some details available (Please also see our Modeling Strategy and FAQ ). On release, the DSL Tools for Visual Studio 2005 will be part of the Visual Studio 2005 SDK. We'll support the following editions for authoring DSLs: Visual Studio Professional Edition Visual Studio Team Edition for Software Architects Visual Studio Team Edition for Software Developers Visual Studio Team Edition for Software Testers Visual Studio Team Suite We'll support the following editions for deploying the DSLs that you build: Visual Studio Standard Edition Visual Studio Professional Edition Visual Studi ...Show All

  • SQL Server format issue

    I've created a new calculate member in (SQL Server Business Intelligence Studio 2005) with the following format string: "#,#0.00". This measure is displayed like this: 22,250.22 Then I created a Measure in the Cube structure menue and used the same format string:"#,#0.00" and this measure is displayed like this:0,66 --> Comma and decimal point are changed in the display of the measures!!!! Can anyone help me with this I just like every measure to use a decimal point for the decimal place or the other way round. But I want every measure to be displayed in the same format! Thanks a lot! (### ### ### ###.##) thanks for this hint but unfortunately it doesn't work either. I used this format for both measures but ...Show All

  • Visual C# Using private constructors in embedded classes

    Hi. I have a pretty simple question, though I don't know if it has a simple answer: I would like to define a class-within-a-class such that the embedded class can only be created by the outer class, but once created can be accessed publicly (similar to a factory pattern): class A { public class B { private B() { ... } } public B CreateB() { return new B(); } } This doesn't work as written, I get A.B.B() is inaccessible due to its protection level, and I get "inconsistent accessibility" errors with any other configuration I try. Is there some other protection level that will allow B.B() to be accessible to A, but not to anything outside of A Also, I'm not super clear on this "inconsistent accessibility" co ...Show All

  • Visual Basic comparing datasets

    Hi ... I am a vb2005 novice so please be gentle I have filled 2 datasets with information. Both databases have a column called product code. For each row in dataset1 I want to find a row in dataset2 where the product code matches and extract a value. Dataset1 is filled from an sql database and dataset2 is filled from an access database. you could do this: Dim counter as Integer = 0 for each currentRow as DataRow in theDataSet1.Tables(0) if currentRow( ColumnName ).Equals(theDataSet2.Tables(0).Rows( counter )( ColumnName )) then 'we matched a column in dataset 2 end if counter = counter + 1 next does this help the other way would be to use a DataView and perform ...Show All

  • .NET Development AllowPartiallyTrustedCallers

    Hi i have a problem i need to run on a Medium Trust asp.net environment , an assembly that dosen't have the AllowPartiallyTrustedCallers Attribute, how i can fix this Your best bet would be to ask the assembly developer to provide a version that can safely handle partially trusted callers. If they can't or won't, you might want to consider looking for an alternate source of similar functionality. ...Show All

  • SQL Server Distinct count with where clause

    Hi there I've little experience with MDX and would appreciate any help. I have a distinct count of a fact table of customer_id but I want a second measure where the distinct count has a where clause, where revenue(measure) >0. Both of the fields are in the fact table. Thanks in advance. Derek Hey Deepak Thanks for the reply. Yes I'm using 2005. Wow I wouldn't have ever thought of that so are you suggesting that I have just the player_id date and revenue in this second table, would I remove revenue from the first table Also how will this affect performance seeing that I'm almost doubling the amount of fact rows. Cheers, Derek ...Show All

  • SQL Server Unable to Access SQL Server 2005 Remotedly

    Not sure if this is the right forum to post this... After going through lot of old posts in various forums and changing lot of settings, i'm still not able to access my Server remotely. This is Windows 2003 Server machine with Sonicwall Firewall, i have allowed Port 1433 in both Firewall and ISA and call is getting through but i'm getting following error msg :- {"An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)"} This machine is also having Sql Server 2000, and ...Show All

  • Visual C# Managed Code Vs Unmanaged Code?

    I have read a lot on managed code and unmanaged code,now what I could understand is that any code that targets the .net framework is Managed code (right ),which inturn means its under the control of the CLR @ runtime. Assuming the above as true, I suppose unmanaged code does not target the framework or it does not come under the control of CLR @ runtime Can somebody explain this if possible with code example so that I can undersand the difference...thx. Hi, If you want to understand managed code, you'd first understand what is the .net framework, here is a good reference for you: http://www.codeproject.com/dotnet/DotNetWhitePaper.asp Managed code : The .NET framework provides several core run-time services to ...Show All

  • SQL Server Invoking a web service using MSSOAPLib from a SQL Server CLR Procedure

    Hi, I need to invoke a web service from a CLR procedure without adding a web reference. I'm using MSSOAPLib for doing this. I am able to do this from a desktop application, but it doesnt seem to work in a SQL Procedure. The execution just seems to hang at the code ' SoapClient soapClient = new SoapClient (); '. There is no exception either, as the error message doesn't get logged in the catch block. I'm also unable to debug the procedure using the remote debugger provided with vs2005. It gives me a warning saying 'The breakpoint will not current be hit. No symbols have been loaded for this document'. I have registered the assembly as UNSAFE. The code snippet is given below HttpWebRequest req = ( HttpWebRequest ) ...Show All

  • SQL Server Security between BSM and SSAS

    Hi, I have a SSAS cube with roles enforced, i would like to show some metrics through BSM 2005 but with SSAS roles enforced. In other words i would like to have the BSM final user authenticated in SSAS in order for him to have the correct data permissions (dimension filters). The scenario im looking for is 3000 users on the same scorecard which one with their values filtered by an organisation dimension (cube security already in place). Is there anyway of getting the USERNAME function whithin BSM in order to make a MDX dynamic filter Thanks, Jorge Sietra If BSM/SharePoint and SSAS are on separate servers, you may need to use Kerberos (at least that was the case with the ...Show All

  • SQL Server Report Builder strange behaviour

    Hello to everybody. I am experiencing a strange behaviour of Report Builder. I have an AS2005 database with a cube with calculated members (all measures calculation). In the client application they need to see only the calculated members so I setup the visible option to "false" for all the others measures. If I browse the cube with browser of AS I have no problem, I can see the data in any shape possible. To give an example I have a report that shows for each Store how many visitors I received each month. The report has the store in the rows and the months in the columns. If I try to create the same reports with Visual Studio 2005 I have no problem either. Everything works fine. After doing these test I build up a model for th ...Show All

  • SQL Server Multiple Select

    Hi, In my report i have a paremeter which is a dropdown list showing alla available values.Now i want to select multiple values.The parameter is not multi valued. From the following link: http://www.ssw.com.au/ssw/Standards/BetterSoftwareSuggestions/ReportingServices.aspx#RichTexbox Multiple select in Parameters Is fixed in Sqlserver reporting services 2005. Iam using 2005 version,But i can't able to select multiple values by holding Ctrl key.How to achieve this.If we able to select the multiple values,In wgich format the selected value is passed to the Stored Procedure,It is same the way as selecting multiple values from Multi valued Parameter. Please help me. Thanks in advance T ...Show All

©2008 Software Development Network