Liran Russo's Q&A profile
SQL Server Unable to install SQL2005 I64 on a 2003 SP1 Itanium
Hello, I have many problem when I try to install SQL 2005 Ets edition ia64 on a 2003 ets Itanium edition. When I launch the setup, all is all right. But during the installation, it tryes to start MSSQL services. The staring of this service failed. So I try to start the service mannually. Nothing. Error messages I can get (in the event log) : Source : Service Control Manager ; ID : 7000 Description :Service SQL Server (MSSQLSERVER) failed to start due to the following error: The service did not respond to the start or control request in a timely fashion. Source : MsiInstaller ; ID 10005 Description : Product: Microsoft SQL Server 2005 (64 bits) -- Error 29503. Failure of the starting of service SQL Server. For more i ...Show All
SQL Server SQL Express Install fails Error 29503 / 1067
I have read carefully numerous previous posts on similar errors. So far I've ruled out: 1. I have an Athlon processor with cache prefetching XP 1700+ 2. I have tried installing with advanced options and selecting local sytem and local service. None of these solutions solved my problem. I still get the same install error and it's quite maddening, since the install program verifies that all of my hardware and software meet the install conditions. I am running XP home, so I'm in a workgroup, not a domain.. I attach the log for the install below. Any more suggestions Thanks, gtc. Microsoft SQL Server 2005 9.00.2047.00 ============================== OS Version : Microsoft Windows XP Home Edition Service Pack 2 (Build 260 ...Show All
Visual Studio Team System Source Control Explorer InvalidArgument Error on Vista Client
We are using TFS Workgroup Edition with SP1 installed with a Visual Studio Team Suite with SP1 client running under Vista Ultimate RTM. We are getting a Source Control Explorer error when starting Visual Studio on the client. Source Control Explorer InvalidArgument=Value of '-1' is not valid for 'index'. Parameter name: index After the client has started and we open a source control tree we get this error: Error Object reference not set to instance of an object. I thought this bug was fixed in TFS SP1. Any help is greatly appreciated. Jeff Lynch MVP Windows Server System - Commerce Server http://codebetter.com/blogs/jeff.lynch For some unknown reason this issue has magically dissapeared on my machine. Source saf ...Show All
Visual C# Beginner questions about Serial.IO.Ports and multiple forms
Hello everybody, I'm currently learning C# using Visual Studio 2005 and still have a hard time to get the big picture in this (new to me) object oriented world. I hope you don't mind answering me some questions that might be pretty basic in your point of view. I managed to write an application that reads commands (text strings) of a serial port and does certain things. I'm now in the need to make this serial port reader a background task that is always running, regardless which form is currenlty visible. I would also like to move the serial reader into a seperate class to keep the code a little cleaner. I read about the background worker task but I'm still confused whether or not this is the way to go or if there is an easier and ...Show All
Windows Forms Deploying a Protected executable
Hi, I would like to use windows installer to deploy a protected .exe that uses a USB dongle. I run the protection software to create the protected .exe. I then copy the protected .exe into my Release directory, when I build the installer it will write over my protected version with the non-protected. I need the detected dependancies for this app to work right. So what I do is remove the project output from the installer and add the protected .exe. My installer than works fine, protected version is deployed. Question is, is this the correct way to do this Does anyone have a better way to deploy a protected .exe using windows installer Thanks Jeff Your protection software... is th ...Show All
.NET Development System crash in EEHeapAllocInProcessHeap() inside XPathExpression.Compile()
We are developing .NET components that are used through COM from a COM client written in VisualAge Smalltalk V7.0. We experience a system crash (access violation; error code C0000005) when the Smalltalk client calls a .NET method that internally calls the .NET method XPathExpression.Compile(string xpath, System.Xml.IxmlNamespaceResolver resolver) (e.g. through calls to the .NET methods XmlDocument.SelectSingleNode(string xPath) or XmlDocument.SelectNodes(string xPath) ). Further investigation with WinDBG and the "Son of Strike" debug extension showed, that the access violation exception is preceeded by many “Undefined exceptions C0000090” (EXCEPTION_FLT_INVALID_OPERATION ). The first of these C000090 exceptions happens in t ...Show All
Visual Studio Express Editions Is the '?' in this code a typo: public virtual long? SiteId { get; set; }
Does the question mark in ‘long ’ mean something I'm using a third party library. The VisualStudio 2005 C# compiler is complaining about this conversion. Argument '3': cannot convert from 'long ' to 'long' (NOTE: if I do an explicit cast to long my code builds); VisualStudio displayed the class definition Metadata, I’ve extracted these two lines. public class ControllerEntity : EntityBase2, ISerializable public virtual long SiteId { get; set; } I could not find anything in the Visual Studio documentation to indicate that the symbol ' ' means anything but then I recently found that '^' has a special meaning to the garbage collector. So I thought I'd ask. Here is my code snipit: ControllerEntity TestController = ...Show All
.NET Development The AppSettingsReader and app.Config file
I'm trying to set up a simple SQL database connection with hostname, user, login, and password information located in the app.Config file. I added an app.config file through Add -> New Item -> Utility -> Configuration file. I'm using VS2005, a managed C++ Windows XP Service Template. I declare my AppSettingsReader: AppSettingsReader^ reader = gcnew AppSettingsReader(); The problem I'm currently having is that when my code gets to: m_DatabaseConnection.m_strHostName = (String^)reader->GetValue( "Hostname" , m_DatabaseConnection.m_strHostName->GetType() ); It says it can't find the Hostname. I get the same error if there is no app.config file, so I'm thinking that it can't find it. Is there a dir ...Show All
Windows Forms WebBrowser control shows HTML code
Hello, I've a project where i'm assigning a HTML string to the DocumentText property of the WebBrower. On most PCs there's no problem with it, but there are PCs which show the actual HTML code instead of the webpage. Any idea's what's the reason and a possible solution :) Regards, Aussie I just checked aswell, the PC that shows HTML instead of the webpage does not have SP2 installed, only SP1. if this is the reason, there must be a solution without installing SP2 ...Show All
.NET Development Getting machine name of remote machine
Hej (Swedish) Does anyone know of a way of finding the machine name of a remote machine on the same subnet, given an IP and/or a DNS name I need to build a list of all the available machines on a network (single subnet). I can ping the subnet, and ask for a dns-name using IPHostEntry host = Dns.GetHostEntry(IP); but I need to get to the acutal machine (NetBIOS ) name instead of just the registered DNS names... I am no ace at network programming so mayby I am missing something very simple here Is there anything in the System.Net namespace that will allow you to query a remote machine directly (for the name that is) (I know there are certain security issues involved in using machine names and also a certain degree of trust/mistrust between ...Show All
SQL Server Reference axis(2) members in MDX
Hello everybody. I've got a little problem: I want to reference axis(2) members in a calculated member, so I can use multiple selection. I've tried: with member [Measures].[Test] as 'settostr(axis(2))' select {[Measures].[Test]} on 0, {[Dim Sales Territory].[Sales Territory Region]. members } on 1 from [Adventure Works DW] where ([Dim Geography].[Country Region Code].&[US], [Dim Geography].[Country Region Code].&[CA] ) However, I get an error. Is there any other way Thanks a lot, Santi The Axis function cannot be used on the filter axis.The Axis function cannot be used on the filter axis. http://msdn2.microsoft.com/en-us/library/ms145531.aspx your shuldn't use Ax ...Show All
Visual Studio 2008 (Pre-release) Configure Infinite timeouts at netTcpBinding
Hi, Is it possible in order to make debugging easier to configure all the timeouts (open,receive,close,send) to infinite (Zero is not infinite in WCF) Thanks Side note: as of the final RTM, Visual Studio complains that the value "Infinite" is invalid, but in fact your app will accept it just fine and set the timeout to TimeSpan.MaxValue. ...Show All
Visual Studio Multiple Pages Report
Hi All, I have been assigned a task to create reports for invoices for the company. The requirements are as follows:- 1)Multiple invoices are printed at one time somewhere from between 30-400. 2)Each invoice should have 4 pages -first page is like a blank page with Order Number -second page is for the order details note: this page should be able to grow if the order detail is huge. -third page contains records for personalized orders and should appear only if the order was personlized -fourth page contains the internal comments if there was any internal comment on the order by the company again should be printed only if the internal comment is present. Can any one help me with this Thanks ...Show All
Game Technologies: DirectX, XNA, XACT, etc. wierd error messages
ok im new and just starting out im in highschool neways im working on the tutorial and i do exactly what it tells me but i get 13 error messages froem the lines of coding i copied from the tutorial whats wrong //3d model to draw Model myModel; protected override void LoadGraphicsContent( bool loadAllContent) { if (loadAllContent) { myModel = content.Load< Model >( "Content\\Models\\p1_wedge" ); } } } /// <param name="unloadAllContent"> Which type of content to unload. </param> protected override void UnloadGraphicsContent( bool unloadAllContent) { if (unloadAllContent == true ) { content.Unload(); ...Show All
Visual Studio Express Editions startup and Settings
Ok, I'm creating a program that saves your settings, when you enter them. the Problem Im having is loading the saved settings on startup. EX: Imports Microsoft.Win32 Public Class Form1 Dim rk As RegistryKey = Registry.CurrentUser Dim myKey As RegistryKey Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load myKey = rk.OpenSubKey( "Software\Microsoft\Windows\CurrentVersion\Run" , True ) myKey.SetValue( "GRRTEST" , System.IO.Directory.GetCurrentDirectory.ToString & "\GRRTEST.exe" ) My .Settings.Reload() Me .Refresh() txt1.Text = My .Settings.Set1 txt2.Text = My .Settings.Set2 txt3.Text ...Show All
