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

Software Development Network >> pablo in the oakgrove's Q&A profile

pablo in the oakgrove

Member List

R.Tutus
AlexCr
Bor
dmadrian
wtmmag
Dylan Morley
lmttag
SLang
N3vik
Narcís Calvet
RamyaP
Savindra
PatrickDonohue
Alex Krapivin
Edouard Mercier
AAG
RichLeyshon
Mikaelm
Venkatram
JCDS
Only Title

pablo in the oakgrove's Q&A profile

  • SQL Server Error Code: 60020 on installation

    Hi, I am trying to carry out an install of Reporting Services (2000) without any UI. I'm using an ini file with all of the necessary information configured within it. Part way through the install I get a Setup Error produced: Error Code: 60020 Looking at the log file I can see the following entries: <Func Name='ValidateRSServiceAccount'> <Func Name='ValidateServiceAccount'> <EndFunc Name='ValidateServiceAccount' Return='60020' GetLastError='0'> <EndFunc Name='ValidateRSServiceAccount' Return='60020' GetLastError='0'> <EndFunc Name='Write_SetAutoStart' Return='60020' GetLastError='0'> Gathering darwin properties for failure handling. If I carry out the same installation (i.e. using the sam ...Show All

  • Visual Studio 2008 (Pre-release) How to modify an endpoint from the client at run time?

    In my build environment, I am automatically creating a web.config file by merging the wcf configuration with our current web.config using svcutil, svcutil.exe *.wsdl *.xsd /out:ServiceClient.cs /config:Web.Config /mergeConfig The problem is that the endpoints in Web.Config contain the default values. I need to change the timeouts and the message size. How can I do this I see two constructors that I think might help, ServiceClient(string endConfigurationName, string remoteAddress) ServiceClient(Binding binding, EndPointAddress remoteAddress) Is there a way for me to load a Binding class from a config file, make some modifications, and pass this to the constructor My alternative solution is to create a build script that ...Show All

  • Windows Search Technologies No results with full word. WDS 2.6.5.5378

    Hi Sometimes I get "no items found" when I enter a word. However, if I leave out the last letter of the word, I get the correct result. This affects only some words, but I cannot see any pattern to this. I have seen several posts, but no resolution, on microsoft.public.msn.search with this same problem. It also occurs on machines with a German keyboard. Can you help me to resolve this issue I have a WinXP-SP2 machine with a Swiss German keyboard, I am in a workgroup, and I am logged in as administrator. With kind regards, Matthias Klay Can you describe what search query you used and what is the actual result from that query. Then also let me know what you expect that query to ...Show All

  • SQL Server Cant install SQL Server 2005 on vista..

    Ok ive tried looking everywhere for a solution but i just cant find one... please help me I need to install SQL Server 2005 on Vista, but i have issues. I have installed IIS and its checked in the pre-installation checklist, and the only thing with an exclamation point is the OS which is to be expected. The issue im having is that when i get to the screen to select the features/components i want to install, they are all disabled apart from "Workstation components, Books online etc..." Where am i going wrong with this.. I know i need the services pack to install reporting services, but i cant install anything at this point. A walkthrough or something would really help... P.S Im running on Vista Ultimate and ...Show All

  • SQL Server Type "TypePoint" is marked for native serialization, but field "x" of type "TypePoint" is not valid for native serialization

    I made a point type by C# for deploying in SQL2005. It builds successfully every time. When I deploy, it gives the following error: " Error: Type "SqlServerProject1.TypePoint" is marked for native serialization, but field "x" of type "SqlServerProject1.TypePoint" is not valid for native serialization. " although x variable is value type decimal. using System; using System.Data; using System.Data.SqlClient; using System.Data.SqlTypes; using Microsoft.SqlServer.Server; [Serializable] [SqlUserDefinedType(Format.Native, IsByteOrdered=true)] public struct TypePoint : INullable { private bool m_Null; private Decimal x; private Decimal y; public override string ToString() { / ...Show All

  • Windows Forms ClickOnce and dotNET Framework 3.0

    Is there a fix to deploying a clickonce application with the prerequisite of the dotNET Framework 3.0 set Everytime I select it, I get the following error and the application won't publish. No 'PublicKey' or 'Hash' attribute specified for file 'NETFX30\Dotnetfx3.exe' ...Show All

  • Visual C# Cross-string operation not valid...

    Okay, I searched for an answer to my question and found this: Erwin van Hunen wrote: Officially you are not allowed to update control properties from a thread different from the thread the control was created on (the control runs on the 'main' thread I assume where as you want to set the label of the control from a second thread). VS2005 is a bit more 'picky' about this (as it should). You will need to invoke the method on the control to set the property. I use a small helper method to solve this: delegate void SetValueDelegate ( Object obj, Object val, Object [] index); public void SetControlProperty( Control ctrl, String propName, Object val) { PropertyInfo propInfo = ctrl.GetType().GetProper ...Show All

  • SQL Server Replication Issue with Dynamic Filter using HOST_NAME()

    Dear ppl, I am having a couple of problems with using dynamic filters in Merge Replication (SQL Server 2005 - SQL Mobile) 1) I am trying to add a dynamic filter to my publication using the wizard as follows: SELECT <published_columns> FROM [dbo].[Audit] WHERE AuditorID = CONVERT(int,HOST_NAME()) This gives me an error Conversion failed when converting the nvarchar value 'MSSWS02' to data type int. because my computer name cannot be converted to an integer. After reading on http://msdn2.microsoft.com/en-us/library/ms152478.aspx I have found that it has been recommend specifying CONVERT(nchar,AuditID) = HOST_NAME() in the wizard and then use sp_changemergearticle to change the clause to AuditID = CONVERT(int,H ...Show All

  • .NET Development Reading a xml File from Intranet

    Please help I am sure it is really simple! I am just learning C# and I am having the following problem: I am reading an xml file in my console application and the xml file name is a parameter. When I debug from Visual Studio it works fine. If I compile from the command line like: csc importFile csc i get a importFile.exe and it runs pretty well. The problem starts when I try to run the importFile.exe from the intranet. I mean copying the program to another computer and run it from my computer. I get a “System.Security.Oermision.FileIOPermision” Exception “The Zone of the assembly, Error ist: Intranet. How ever if I try to Compile from Visual Studio it generates a setup.exe and a importFile ...Show All

  • Smart Device Development Adding Custom Today Screen Item

    Actually I need to add a "cutom today screen Item" to Pocket PC automatically when message has been reached to my messenger. I am presently working on Visual Studio.Net 2003( Compact Framework1.1). Actually I have tried this link: C:\Documents and Settings\Administrator\Desktop\malleswar\adding image\Creating a Pocket PC Today Screen Plug-in with the _NET Compact Framework.htm but for building Embedded Visual C++ (eVC) has to be used. If u know better way than this plz guide me. You definitely are missing some files - check if the lib file is present. Maybe the file referenced is present but the file path is wrong. Manav ...Show All

  • Visual C# Automatic Closing Brackets

    Hello, is there a function or setting in the Visual Studio where I can adjust that after I create opening brackets MS VS will automaticly create closing brackets It’s annoying and a huge source of error. Thanx 4 your help. Sorry, I never found the feature you are asking for. But you might simply record a macro and assign it to a convenient key (like Ctrl+{, for instance)... Alternatively, try using code snippets... it takes a while to get used to them, but they are awesome and they'll do much more than just saving some typing. And again, you can reassign the hotkey from CTRL+K, X to something easier. --mc ...Show All

  • Commerce Server Removing items using custom pipeline component.

    In our model, we use a soft delete of products to indicate a product is no longer being sold. Our custom property is currently not checked by the Basket Pipeline, so what I did was create a custom component that checked this property and if set, it gives a custom error message and then adds the Item["delete"] = 1 line. This component was put in the basket pipeline after QueryProdInfo and Before RequiredProdInfo. The problem is that I don't want the RequiredProdInfo to display it's message saying "Items in your order have been removed because they are no longer sold" on top of my custom error messages. Can someone tell me how I can remove the line item myself as RequiredProdInfo does instead of setting the "delete&q ...Show All

  • .NET Development Membership - "Mixed" Windows & SQL Server authentication?

    Hi All, I'm thinking about using membership and role management features in order to control the access to a system we are creating. This system will have some functionalities accessed through internet and some funcionalities from within intranet (internal staff shall have different roles from external users and therefore). Is it possible to use Windows authentication for internal users and SQL Server to authenticate external users Can I use the default providers to do this or I need to develop this provider Thanks a lot! Sergio I believe that you have to build it yourself. Fortunalety the whole system is very extensible. Search in msdn for the full details. Here's a tutorial: http://www.devx.com/asp/A ...Show All

  • SQL Server Cannot connect SQL server 2005 Express with VWD 2005

    I have installed MS Visual Web Developer 2005 Express Edition on my Notebook (WinXP Pro SP2). And it's working fine. Then I tried installed SQL Server 2005 Express Edition SP1. There is no error during installation and it seems to be working as I can see the SQL Server (MSSQLServer) service is running. As SQL server configulation manager., the protocal shared memory , named Pipes and TCP/IP are enabled. But when I want to add connection using VWD 2005 by pointing to datasource (MS SQL Server database file and selecing file from .mdf file from SQL sample database file. Then test connection, I got a error that "An error has occurred while establishing a conneciton to the server. when connecting to SQL server 2005, this failure may be ca ...Show All

  • SQL Server Service Unavailable - SSRS 64bit

    We've recently attempted to get RS 2005 64bit up and running on MS Virtual Server and the installation seems to have worked properly (the RS Configuration all seemed fine also). However, when going to http://localhost/Reports or http://localhost/Reports Server , it gives me the message "Service Unavailable". Everything looks good in IIS (using 2.0). What else can I do to troubleshoot this issue The host server is Win 2003 x64 and has SQL2005 64bit. On a VS we installed reporting services (the IIS piece) it is looking at the Db on the host server. Does this make sense I just noticed in IIS, we also have Sharepoint Administration loaded as well. Could this be causing the confusion Than ...Show All

©2008 Software Development Network