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

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

Dale17677

Member List

ReneeC
lidiya
Aaron Moore
S4turno
JohnGr
infrandom
f3661
NPrinsloo
C. Hunter
Juvraj
Chris Dahl
adwins04
werwin
nojetlag
Seppe001
AndyL
jamarnkin
Brett Burkhart
Priyank Gajera
Peter Haik
Only Title

Dale17677's Q&A profile

  • .NET Development "Cannot connet to remote server"

    Hello, I am facing a bizarre problem when connection a client application to a server. I am developing a client application which connects to a server, instantiates a remote object (singleton) and makes queries to the server via the remote object. The remote object has a method which instantitates another remote object on the server side (factory remote object using interfaces). The client can successfully instantiate the remote object (using interface), because it can call a method of remote object to instantiate another remote object on the server side. However, as soon as the client uses the second instantiatied remote object (to call its methods), then an exception gets thrown stating that client cannot connect to the remote server. Wh ...Show All

  • Software Development for Windows Vista Cannot start the COM manager of the app

    We are trying our VB6 application under Vista and we are stuck with the following error. The application launches another executable, and at this point an error message pops up: "Cannot start the COM manager of the app The application will terminate!" We can click ok on the message and everything works. Any hint Thanks, Francesco See the "Is VB6 supported on Vista " thread at http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=398597&SiteID=1 for the requirements of VB6 applications on Vista. In short, it appears that you do need to be running as administrator as you found out already. ...Show All

  • Visual Studio 2008 (Pre-release) TCP error code 10061: No connection could be made because the target machine actively refused it.

    Hi all, I'm hosting a WCF service in a windows service. I can view the service test page using http://localhost:8000/myservice1 locacally. And I can view the service test page using http://mytestsite.com:8000/myservice1 remotely via internet. Now to authenticate a client with user name and password.  I added the following to the service configuration file: < security mode = " Message " >< message clientCredentialType = " UserName " /></ security > 1. Then I could only view the test page locally NOT remotely.  2. My client which is running remotely keeps getting the error " TCP error code 10061: No connection could be made because the target machine actively refused it ." I specified client's creden ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. other operating systems?

    will XNA ever be available for linux, mac, or other c'mon at least mac! Hi, I'd like to redirect you to both my blog: http://monotorrent.blogspot.com/ and Sandrimans blog: http://sandriman.wordpress.com/ if you want to read up on the Mono.XNA framework. There is also a brand new google group at: http://groups-beta.google.com/group/monoxna for discussion about Mono.XNA. If you want to participate, there's a lot of easy work to be done, so even relative newbies to c# should be able to do some work on it. It'll definately be a very interesting piece of work. ...Show All

  • Visual C# How to write to Excel file?

    I am using Visual Studio 2005 standard verison。 And I want to save data from SerialPort to an Excel file since the TXT file is not powerful... Is there any related material about realizing this I do not have the VSTO and there are few examples using Visual Studio C#... Thanks! Hi, AlexBB You may refer to : http://www.filehelpers.com/ The FileHelpers are an easy to use library to import/export data from fixed length or delimited flat files (like the CSV). Also has support to import/export data from different data storages (Excel, Acces, SqlServer) Examples on codeproject: http://www.codeproject.com/useritems/filehelpers.asp I should also read these documentation to see whether I can use this library ...Show All

  • Smart Device Development SAPI in WindowsCE

    i'm going to develop the application for the text-to-speech & the voice recognition in PDA Phone in Windows Mobile 2003. I've found that application with SAPI 5.1 could convert the text to speeech in WindowsXP. Could the SAPI5.1 be used in Windows Mobile 2003 If no, is there any API that can convert the text to speech in Windows Mobile 2003 Thanks~~~ i'm going to develop the application for the text-to-speech & the voice recognition in PDA Phone in Windows Mobile 2003. I've found that application with SAPI 5.1 could convert the text to speeech in WindowsXP. Could the SAPI5.1 be used in Windows Mobile 2003 If no, is there any API that can convert the text to speech in Windows Mobile 2003 Thanks~~~ ...Show All

  • Windows Forms negative value of custom control property: strange behavior in designer

    I have a custom control which contains a custom version of the ProgressBar. This control accepts double minimum and maximum values which define the range of the custom ProgressBar. If I set, for example, a min val of -10 the Progressbar is correctly drawn and the code runs without problem. Then, if I reload the designer, the min value is changed to 10 (positive) in the designer window, but in the code it is still -10. If then I build and run the project it behaves correctly. Then, if I modify something in the designer window forcing to reload the form code, min value is set to 10, according to the value in the designer window. Why does this happen Is it a parsing problem "Property accessors" are ...Show All

  • SQL Server Clustering with Multiple Instance

    Dear friends I want to ask something about clustering 1)We have only one Intance name in all nodes of a cluster na.So same cluster storage (SAN device) is using in all the virtual nodes.If some thing happen to this common .MDF file all the nodes will be down.So can we do in this way create different instance name different nodes .Create seperate data files also .Then make replication.I don't know whether it is a foolish question.Anyway please clarify on me this Filson ...Show All

  • SQL Server import MDF and LDF backup from SQL2000 to SQL2005

    hi, i have six files ( 3 MDF and 3 LDF) from a backup of a MS SQL 2000 server. I installed MS SQL 2005 and wanted to Restore these Dataset. but they cant be accessed. doesnt SQL 2005 support these files How can i use these files to access them with SQL 2005 Thx, Hello - The files you're talking about are the "raw" data files that SQL Server uses, not a backup. When you take a backup from within SQL Server, files are acutally packaged a little differently, into a .bak file. When you use the BACKUP DATABASE command in SQL Server, it will create these files for you, which inlcude all of the "raw" files. You can then use the RESTORE DATABASE command to restore ...Show All

  • SQL Server Different calculation based on dimension attribute?

    Hello I would like to do this in pseudo code for a calculated member: if(dim.value == 1) then measure.val else -measure.val Anyone have a suggestion For AS2005, you should include the following in the MDX script for your cube (your will have to adjust for naming): CREATE MEMBER CURRENTCUBE.[Measures].[MyCalculatedMeasure] AS [Measures].[MyMeasure] * -1, NON_EMPTY_BEHAVIOR = [Measures].[MyMeasure]; SCOPE ([MyDimension].[MyAttribute].[1], [Measures].[MyCalculatedMeasure]; This = [Measures].[MyMeasure]; END SCOPE; ... and if it's a calculated member defined at run-time. WITH MEMBER [Measures].[MyCalculatedMeasure] AS IIF([MyDimension].[MyAttribute].currentmember IS ...Show All

  • .NET Development Is it possible to connect to microsoft access database on network drive from visual basic?

    I am new in visual basic. I would like to know is it possible to connect to microsoft access database on network and perform add, delete, edit and update function. What is the correct connection string to use I tried to connect to microsoft access database on network, it show that "The database is read-only. You won't be able to save changes made or object definitions in this database.". Is there anyone here that can help Thanks in advance. yes you can connect to it via network. Just be sure that the database file is NOT read only and that you have the correct share permissions of that folder where the database is, so you can access it. the connection string should be the sa ...Show All

  • Visual Studio Team System Q about Incremental Build

    Hi, I configured my Team Build to make Incremental Build There is a way to get all the files/Changesets that changed since the last get operation (Incremental Build use an incremental Get operation – ForceGet is set to be False) Help will be much appreciated, Shmulik Hi Aaron, from my experience just setting those properties will not be enough. Eventually somebody will delete or move a directory in your source control. The next get on the build server will try to delete this directory. If this directory contains a visual studio project that has been build, the directory will then contain temporary files and directories (e.g. "obj\debug"). tf get will return a n ...Show All

  • Visual Studio Sandcastle - Please consider allowing richer formatting in documentation

    Hi there, I've seen the developers behind Sandcastle seem to be very active here so I thought I may make a request - something I'm sure is wanted by others (albeit perhaps indirectly). My employer is considering enforcing a set format for comments for each class with this  information. Class Name (covered implicitly by Sandcastle) Description (covered by <summary>) Date Created Authors (possibly list) Revision Table with these headings Date of change Issue reference number Developer whom made change Reviewer of change Summary sentence of change made I've argued for the fact that these things should be covered by the source repository - and they've agreed but want this stuff at the top of class headers too - as we are curre ...Show All

  • Smart Device Development XML Character Encodings

    Hello everybody, I am doing the following steps: 1.- I do an HTTP Post to a host 2.- I get an XML as response 3.- I read the XML 4.- I add the xml readed values into a comboBox. The response contains special characters like a , o... Where do I have to set the encoding Thank you. In 1 and 3. E.g. if you're using TextWriter/TextReader classes to read/write your XML look into Encoding property of these classes. AFAIK UTF8 would be used by default which should be able to handle pretty any character you can possibly have. ...Show All

  • Windows Forms Problem with value DataGridViewComboBoxCell

    In VB 2005 Express I have a problem, which completely do not understand. I use a DataGridViewComboBox in a DataGridView. When I change data and save it, I have no problem. But when I close the form I a repeting error, being: System.ArgumentException: DataGridViewComboBoxCell value is not valid. Can anybody help Thanks in advance, Simon Thanks for the suggestion. I have solved it by deleting the DGV and created a new one, with the same combobox. Since then I didn't have the issue anymore. ...Show All

©2008 Software Development Network