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

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

hemo

Member List

Jolly Joker
SDodobara
JohnK1
Chad - seripis
Herru Perdana
su45937
lockdon9w1
MarkC1162
LouArnold
Sumesh Babu
Andrew Mackie
Tzal
swiego
metalpunker
rm2000
ACCOUNTINGONLINE.US
LeoSly
Cherian
Nfrf
Derek Comingore
Only Title

hemo's Q&A profile

  • Visual Studio MSBuild, Orcas and Multi-Targeting

    Read about the new version of MSBuild that is in the October Orcas CTP, and comment to us about what you think : http://blogs.msdn.com/msbuild/archive/2006/11/03/msbuild-orcas-and-multi-targeting.aspx Happy building! Faisal Mohamood ...Show All

  • Software Development for Windows Vista TransactionScope fails

    Hi, I am using transactionScope and it is failing. I tried DTC Ping as was recommended in another post and it fails to. On the computer I try to ping: ++++++++++++Start Reverse Bind Test+++++++++++++ Received Bind call from DEVELOP Trying Reverse Bind to DEVELOP Error(0x2AFC) at nameping.cpp @62 -->gethostbyaddr -->11004(The requested name is valid, but no data of the requested type was founError(0x6BA) at ServerManager.cpp @453 -->RPC reverse BIND failed -->1722(The RPC server is unavailable.) Reverse Binding to DEVELOP Failed Session Down And on the computer doing the pinging: ++++++++++++Validating Remote Computer Name++++++++++++ Please refer to following log file for details: C:\dtcping\DEVELOP2916.log Invoking ...Show All

  • Smart Device Development How to make a UserControl object acts as a control container design-time by using Visual C# .NET or Visual C# 2005

    How to make a UserControl object acts as a control container design-time by using Visual C# .NET or Visual C# 2005 Is there anybody who knows how this can be done Thanks in advanced, - Nima Hello Nima, You have to add [ Designer ( "System.Windows.Forms.Design.ParentControlDesigner, System.Design" , typeof ( IDesigner ))] attribute to your User Control class to have it support design-time level features. You can refer to http://support.microsoft.com/kb/813450 for more details. Regards, Dinesh ...Show All

  • Visual Studio Problem renaming project folder containing an ASP.Net Web Application project

    Hi All, We are writing a VSPackage for providing source control operations on Solutions and Projects in Visual Studio 2005, including ASP.Net Web Applications (languages - Visual Basic, C#). When our users create ASP.Net Web Applications in either the Visual Basic or C# language, our code requires us to rename the project folder containing the ASP.Net Web Application project by using the Directory class method Move(string sourceDirName, string destDirName). However, it seems that once you create an ASP.Net Web Applications Project, Visual Studio locks the folder so that it cannot be renamed. We think that Visual Studio or the Project may be starting a separate or hidden process that is preventing us from renaming the project folder, ...Show All

  • Visual Studio Express Editions problem with comboBox1 and the Enter key

    Hello. I am on my second project, a web browser, and I have aproblem with ComboBox1 and the enter key. Here's the code: Private Sub ComboBox1_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles ComboBox1.KeyDown If e.KeyCode = Keys.Enter Then WebBrowser1.Navigate(ComboBox1.Text) End If End Sub It works fine, when I press the Enter key WebBrowser1 navigates to the url in the i type in the comboBox. The problem is (anoying) every time I press the enter key the Windows Error Event Sound sounds. any ideas Your help will be very much apreciated. Thank you. Hello Andreas Johansson. Yes it dies stop Internet explor ...Show All

  • SQL Server Change the WHERE conditions dynamically

    Is there a way I can build a case statment or similar to handle different where conditions I know I can do it dynamic sql but it would be nice to have a method where I can create the querries directly in a normal statement Someting like: Select c1, c2, c3 From Table WHERE Case @Condition WHEN '>' @SelColumn > @Limit WHEN '=' @SelColumn = @Limit WHEN '<' @SelColumn < @Limit END I know this doesn't work so an example that do work would be nice. MortenBE wrote: Is there a way I can build a case statment or similar to handle different where conditions I know I can do it dynamic sql but it would be nice to have a method where I can create the querries directly ...Show All

  • SQL Server Error 1612 - can't get Express installed

    I have done all I can to resolve this on my own and would really appreciate any help anyone can give me. I have run uninstall utilities, followed a few MSDN reinstall methods, but all roads lead back to this vicious cycle: The install hangs trying to install the prereq Microsoft SQL Server 2005 Setup Support Files with Error 1612. So I try to uninstall the Support files using Add/Remove..but the Windows Installer looks for "Microsoft SQL Server Native Client" disk, which of course I don't have because I install from downloads from Microsoft. That's the very short version. I've got a ton of hours reading help groups, MSDN, trying everything. I have posted the error log file below. Thanks in advance. === Verbose logging ...Show All

  • Visual Basic Call an event within an event

    Assume that I have two buttons: Button1 and Button2. Assume that I have the code in a Button1_Click defined. How call (run) the Button1_Click event within the Button2_Click event code Private Sub Button2_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Button1.Click() End Sub Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click ' code does something ... End Sub Simply call the method, one does not have to fire an event: Button1_Click(nothing, nothing) Or you can pass in the parameters sent in to the button2, instead of nothing if they are needed in but ...Show All

  • SQL Server Cube with oracle + sql server data

    Hello, I have a cube with 1 fact table from SQL Server and 1 dimension from Oracle. when I process the cube I get this error: OLE DB error: OLE DB or ODBC error: Cannot initialize the data source object of OLE DB provider "OraOLEDB.Oracle.1" for linked server "(null)".; 42000; The OLE DB provider "OraOLEDB.Oracle.1" for linked server "(null)" reported an error. The provider did not give any information about the error.; 42000. when I remove the fact table of SQL Server and replaced it with a fact from oracle, the cube will process fine. The system specs is: Windows 2003 sp1 X64 (AMD CPU) SQL Server 2005 SP1 Oracle 10.02g with support to 64 bit. Thanks in advance, Yoav. ...Show All

  • SQL Server update variables with scripting task

    Helo, I'm using a simple scripting task to update the value of a variable: Public Sub Main() Dim EndeJahr As String EndeJahr = InputBox("Text") Dts.Variables("EndYear").Value = EndeJahr MsgBox(Dts.Variables("EndYear").Value) Dts.TaskResult = Dts.Results.Success End Sub The Package is working fine and the message box shows the actual value. My problem is that when I change the of value of my variable, the value of variable is not changing, when I restart my package!!! What's the problem any ideas I was able to get your code working fine. Make sure you set the ReadWrite variable property of the script task to EndYear. My guess is that's why you're not seeing it set. While it is supported, ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. General strategy question about XNA

    What is MSFT's strategy with GSE I mean, is it a stripped-down version of GS Pro meant to spark interest in GS Pro Is it actually going the core of GS Pro, and the hobbyist/student community is acting as both first adopters and beta (or even alpha) testers of the product Is it a way for MSFT to foster some kind of indie/small game shop Xbox360 game development (The latter would seem to be slightly odd: the actual dev kits, I gather, are not a minor expense, in addition to what I'm assuming are certification and any other testing expenses; I would think that releasing an alternate path for Xbox game development might cannibalize an existing revenue stream...) It would seem to me to be just simpler to wait for GS Pro to come out, and l ...Show All

  • SQL Server MDX Query returning top levels of dimension hierarchy

    Hi, I use AS2000 which contains the cubes and dimensions. I issue a MDX query using ADOMD and then bind the results to and Asp.Net data grid. When i run the MDX query in the query editor it displays correct results. but when i execute the MDX query in the program it also return the top levels of the dimension hierarchy. I only want a subset (lower level in the hierarchy) to be returned. Here are the details: In our cube we have dimension Region_Country_RU. The hierarchy is as follows. Region(top),Country(Middle), and Reporting Unit(Lowest). The user wants to see Country info by selecting countries as DK,GB,US. This is the query to execute. In MDX query analyzer it gives proper output. SELECT NON EMPTY {{[Meas ...Show All

  • Visual Studio Express Editions Compile programs for Windows Mobile 2003

    I recently bought an HP iPaq 1710 handheld. I have Visual Studio .NET 2003 installed in my workstation so I decieded to code something for my handheld. I downloaded "Windows Mobile 5.0 Pocket PC SDK.msi" from MS but when I tried to install it, this error message came up: "Software development tools required to use this SDK for application development are not installed on this workstation. Before trying to run the Setup Wizard again, verify that the required software is installed. To determine which software development tools are required, see the Microsoft Web site at http://go.microsoft.com/fwlink/ linkid=21615&clcid=0x409, which you can open in an external browser window by clicking the Open Browser bu ...Show All

  • .NET Development How Load a XML file with a XSD file into a DataSet

    Ok im in trouble! this night i drink some weird stuff with some friend's and i cant think straight and simple i dont understand... "plus" i never work with XSD files so... i sucks today! Any help would be great!! Thanks. At this stage I'm not sure but I would have thought that the xml file you have (not the schema) would contain all the tables if this was the case then I'm sure that the dataset would have loaded them all, indexed (0, 1, 2......) How many tables does the Xml file contain ...Show All

  • Visual C++ VC++ 6 and SDKs... I'm so confused....

    Hi to all... I'm working on my old project in VC++ 6 and I have define WINVER 0x500. During compiling process, in debug window, i have this message: NOTE: WINVER has been defined as 0x0500 or greater which enables Windows NT 5.0 and Windows 98 features. When these headers were released, Windows NT 5.0 beta 1 and Windows 98 beta 2.1 were the current versions. For this release when WINVER is defined as 0x0500 or greater, you can only build beta or test applications. To build a retail application, set WINVER to 0x0400 or visit http://www.microsoft.com/msdn/sdk to see if retail Windows NT 5.0 or Windows 98 headers are available. See the SDK release notes for more information. So, i visited Microsoft sdk site and it tell ...Show All

©2008 Software Development Network