Software Development Network Logo
  • Windows Forms
  • Visual J#
  • VS Team System
  • Visual Studio
  • Architecture
  • VS Express Editions
  • Visual C++
  • Windows Live
  • Windows Vista
  • Visual C#
  • Microsoft ISV
  • SQL Server
  • Smart Device
  • .NET Development
  • Visual Basic

Software Development Network >> Gene Webb's Q&A profile

Gene Webb

Member List

BenECM
XuanYe
BSergio
MarkRobinson
rosapdx
williamwon
Vojta
BPB
Output the XSLCompiledTransform.
walpa
hypodyne
zs
LoekyH
David.Liu
romeo123
Geeee
Dave Jefferson
RolandP
acexman
kharera
Only Title

Gene Webb's Q&A profile

  • Visual C++ Error C2440: cannot convert from type to type

    Yesterday I got this error in a new C++/CLI project:   Error 1 error C2440: 'return' : cannot convert from 'ZXNewtonCP::LayoutManager' to 'ZXNewtonCP::LayoutManager' d:\proyectos\rfog\zxnewtoncp\zxnewtoncp\Config.h 17 LayoutManager is a managed class, and is instantiated in class config as a stack type, not a reference or pointer. My intention was to return a reference, but I mistake the typing and got that error. I don’t know if system can return a complete class instead a reference, but the error sounds cryptic and obscure.   Public ref class LayoutManager {…}   Public ref class Config { LayoutManager lay ...Show All

  • Visual C# System.Byte[*]

    Dear All, I have an object data type that I pass to a function. I can view the values returned in debug mode. But I can’t make use of this data in any way. I tried to read the data into another data structure and I have no success to date. These are the declarations and error message; Declaration: public object buffer; byte [] myByte; myByte=( byte[] )buffer; Error message: Unable to cast object of type 'System.Byte[ * ]' to type 'System.Byte[]'. The buffer in the debug mode (VS 2005) holds the follow sample data myByte=(byte[])buffer -buffer|{Dimensions:[1..9000]} [1] 40 ...Show All

  • Visual FoxPro _urlcombobox problem

    I am trying to use this object since it offers much convenience as opposed to shellexecute. This is the problem I run into. When I issue commands in INIT: THIS.AddItem ("www.msn.com",1,1) THIS.AddItem("www.yahoo.com",2,1) THIS.AddItem("www.pdr.net",3,1) The items appear in combobox doubled. This set of urls is repeated twice! Not every url is doubled individualy but the whole set of three urls. This is not all. When I removed the last item, I saw five items in the box: msn.com and yahoo.net were doubled but the last one, pdr.net which is supposed to have been gone appeared as a single item. The co ...Show All

  • SQL Server How can I get primary key col and other two cols in the same table become one to one relationship.

    For ex. Table Match_List ( MatchID, UserID_A, UserID_B) constraints like MatchID primary key UserID_A <> UserID_B unqiue index (UserID_A,UserID_B) but I wish to exclude duplicated rows like 1,1,2 & 2,2,1, cause UserA to UserB, and UserB to UserA are the same thing. How can I get this You can create a view based on table Match_list Create view Match_complet as select MatchId,UserID_A,UserID_B union all select MatchId,UserID_B,UserID_A You can use this view to query all the information you need. Cristy ...Show All

  • SQL Server Connection Properties on Expressions?

    Hi, I can seem to find all the necessary properties of a connection in the expression section... except for the password... How the hell do i specify the password for a connection based on a variable   Regards, Have you tried building a connection string and including the password that way. Alternatively use windows authentication, but I'm sure you've thought of that. ...Show All

  • SQL Server https & setting ServicePointManager.ServerCertificateValidationCallback

    Hi, In my CLR stored procedure, I made a https request. To by pass the security check, I change the property of ServicePointManager: ServerCertificateValidationCallback . But SQL server 2005 does not allow me to do this and gives me exception related to security. It seems the CLR assembly does not have permission to set the property of ServicePointManager: ServerCertificateValidationCallback . What kind of user should I use to run this stored procedure I already assign external_resource to the assembly in SQL server 2005. The code: ServicePointManager.ServerCertificateValidationCallback = new RemoteCerti ...Show All

  • Windows Forms Treeview Issues

    I have an "afterSelect" event as so: private void activeMalfunctions_treeView_AfterSelect( object sender, System.Windows.Forms.TreeViewEventArgs e) Within this event I have: if (activeMalfunctions_treeView.SelectedNode.IsSelected == true ) Essentially what I need is this; I need a set of buttons to become Enabled ONLY when the user selects on a node within the treeview.  The method I have used doesn't seem to care if there is a node selected or not.  Any help would be much appreciated.  Thanks in advance. ...Show All

  • Microsoft ISV Community Center Forums Reading a .LBD file

    Is there a utility for reading the contents of an Access 2003 .lbd file Take a look at http://www.mvps.org/access/modules/mdl0055.htm ...Show All

  • Visual Studio Team System Error in Reporting

    Hi TFS Users, I am working on TFS with the following versions installed.. TFS -- RTM Version SQL -- SQL Server 2005 Evaluation Version Team System -- RTM Version When i try to executes Reports (TeamProject -->Reports-->Builds) from Team Explorer i am getting the following message..[There are some builds configured and executed for this Team Project] Reporting Services Error What account is being used by the datasources you can check this by going to the report manager( http://<AT>/reports ) and clicking on the datasources. Thanks, Othmane ...Show All

  • SQL Server Text field problem

    Hi, in MSDN is written reguarding WRITETEXT : data Is the actual text , ntext or image data to store. data can be a literal or a variable. The maximum length of text that can be inserted interactively with WRITETEXT is approximately 120 KB for text , ntext , and image data. I am tring to insert a text which has around 9000 charcters using WRITETEXT which is less then 10KB , but surprise: after the execution of the sql statement my field remains empty. WHY I've tested this command and found out that it only accepts 900 characters, which is 995 bytes. I execute this SQL statements sequence: USE RWIN ...Show All

  • Visual Studio Express Editions FindInFiles problem pattern matching

    I am trying to process all the files in a directory with a particular extension.  I am using the following line of code, but it is returning nothing in strMarkerFile For Each strMarkerFile In My.Computer.FileSystem.FindInFiles(My.Settings.printspoolpath, ".txt", False, FileIO.SearchOption.SearchTopLevelOnly) The printspoolpath string is a network path representng a samba share on a linux server.  By this point, the path has passed a DirectoryExists test and if I give my file handler the full path to a known file in the directory, it reads it fine. Can anyone give me a tip thanks Gareth   ...Show All

  • Visual Basic How do I get list of pc's in Active Directory

    Anybody have some sample code to query the computers in Active Directory on a domain I would like to build an array from a list of computers within Active Directory. I am building an application that checks for existing files on computers on our network to tell me whether a particular program was installed or not. Thanks, Arkman5 to get started with, read about DirectoryServices. it cannot be imported by default using Imports System.DirectoryServices so you should add a reference to it in the solution explorer. from there you can play around the DirectoryEntry Class. ...Show All

  • Visual FoxPro cannot open up a form-- BIG TROUBLE

    I have been working on this form for about two months adding new objects and manipulating databases. The last save I did was about 4 days ago. I have a few grids in it on different pages of pageframe and everything worked fine. I never added any columns to any grid at design time. At runtime VFP determines the column layout after a grid is given an alias as a record source. Today, just a few minutes ago I decided to add three columns to a grid which has always been empty at design time. After I did a save, I got an error message at runtime: Error loading file - record number 34: o_Grid2 <or one of its members>. Header Class: ...Show All

  • .NET Development How long is the Future of .Net Technology ?

    Hello Friends , I m a s/w developer, currently working on .Net technology. i m a bit confused abt the technology to continue working with Java or .Net. also i want to know whether Microsoft is coming with some new technology in near future. There are only three possibilities… 1. There is possibility both .Net and Java Runs. (As both have strong architecture) 2. There is possibility that .Net go ahead than Java. (As .Net is featured with many cutting edge technologies e.g. multiple languages support etc, support features of future platform Avalon) 3. But, there is no possibility that Java go ...Show All

  • Smart Device Development The device simulator has a japanese version

        Hi,recently I download the device simulator preview,it is a wonderful tool,but my application will be deployed to a window CE of japanese version,is there a jap version thanks Is this you are looking for http://www.microsoft.com/downloads/details.aspx FamilyID=4953d34d-692f-4c87-ac69-cb235dbdad1d&displaylang=en&Hash=Q6KDTR9 http://www.microsoft.com/downloads/details.aspx familyid=8fe677fa-3a6a-4265-b8eb-61a628ecd462&displaylang=en -Thanks, Mohit ...Show All

©2008 Software Development Network