onur6n's Q&A profile
Smart Device Development Native C/C++ embedded development in Visual Studio 2005 - supported Windows CE versions
I understand that Visual Studio 2005 will replace eMbedded Visual C++ for native code development on Windows CE. Will any CE version prior to 5.0 be supported This means that for win ce 4.2 standard C/C++ dev, you still need EVC4 TIA ...Show All
.NET Development How to access webservices using soap protocol from javascript?
I cannot access web services using http get and post so only option isto use soap Please help in this regard.. Thanks in advance http://www.webreference.com/js/column97/index.html ...Show All
Visual Studio Express Editions database saga
I am at my wits end. I am trying to create a program that will add users to a database. I have read the various posts regarding the output file and have changed the Copy To Output File to Copy Never. I have also tried Copy If Newer. The database still does not retain my changes/additions. The code I have used is shown below. Code Here... Private Sub AddUser_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AddUser ...Show All
SQL Server From DataSet To SqlDataReader in a CLR Stored Procedure
Hi all, I'm writing a CLR stored procedure that just execute a query using 2 parameters. SqlContext.Pipe.Send can send a SqlDataReader, but if I've got a DataSet How can I obtain a SqlDataReader from a DataSet Dim command As New SqlCommand(.......) ..... Dim ds As New DataSet() Dim adapter As New SqlDataAdapter(command) adapter.Fill(ds, "MyTable") ... 'manipulating the ds.Tables("MyTable") At this moment I have to s ...Show All
Visual Basic Help!!! Send Email with Authentication
Hi. I need help!!! I'm trying to send a email with smpt basic authentication (username and password) with Visual Basic 2005... but...!i can't! Can anyone please help me I need to use ICredentialsByHost Thanks a lot and sorry if my english is not very good! Maybe this will help someone. I had the same problem with Kerio mail server and this fixed it. It was the UseDefaultCredentials property that ...Show All
SQL Server Queries dependent on results from other datasets.
Hi, I need data from two datasources. From the first datasource a get only one row. Then I need to use one of the values in this row to filter the next query. I couldn't make it to work. Is it possible Suggestions on how to do this Tomsi One possible solution is to create internal parameter that will take default value from 1st data source. When you can use this parameter in the second data set. ...Show All
Visual Studio 2008 (Pre-release) An Existing Connection Was Forceably Closed by the Remote Host
I've just gotten WCF to begin working. I have about 15-20 different services - all of these were previously running as web services without a problem and I've just finished converting them all to run under WCF. All of the services except one are running fine under WCF. The one that is not running is giving me an error that says: System.ServiceModel.Communications Exception: An error occurred while receiving the HTTP response to 'http:// ...Show All
SQL Server array as parameter for IN statement
Hi, I thought TSQL of yukon would have a way of passing an array of values to a SP which can be used by it in an IN statment. ie: List<int> idList = new List<int>(); idList.Add(5); idList.Add(7); SqlCommand cmd = new SqlCommand("sp_Core_GetDetails"); cmd.Parameters.Add("@idList", idList); cmd.ExecuteReader(); ... SP would look like (fragment) select id, name from DetailsTable where id in (@idList) is there such a feature in yukon ...Show All
Windows Forms SelectedIndexChanged in C# WinFrms databind listbox
I am having a problem with coding the SelectedIndexChange event on a listbox that's bound to data from a database. When I code the SelectedIndexChange event, it is fired when the listbox is populated with the data from the database, which resu ...Show All
SQL Server Upgrade from SS2005 GA to Service Pack 1-how critical is it?
Hi all, Our company has been using SQL Server 2005 GA version for some time now. How critical is it to upgrade from the GA version to the recently released service pack 1 of SS2005 I could not find any recommendations by Microsoft on that. Is it a must Highly recommended What are the main reasons to such upgrade Thanks, L. I'm not aware of a formal recommendation from Microsoft at this time, though it might exist. I can tel ...Show All
.NET Development SslStream and AuthenticateAsServer
I'm trying to create authenticated SslStreams, with a certificate created with OpenSSL (which is read from file). I can read the certificate without a problem from within C#. The problem is my code hangs whenever I call AuthenticateAsStream(). My question is, I'm creating (and signing) the x509 certificates myself. Will this cause problems with AuthenticateAsStream What exactly does AuthenticateAsServer do Thanks, Josh ...Show All
Architecture Business Logic Question(s)
Hi, I believe this is the right place to post this query. I'll give you some background first. I have an asp.net application that accesses business objects which in turn accesses a data access layer to read information from a database, pretty standard stuff! Most of the pages are simple in that the user can either edit the data or they can't so in the business objects there is a base method that returns a bool for whether to disabl ...Show All
SQL Server Trouble connecting to a remote server using SQL Server Express
Here is the information that I have... ( ps all information is not the actuall information ) 1) URL abc.somehostingcompany.com IP: 211.11.111.1 PORT: 1433 ( NOTE: if I go to a cmd promt and type in ping abc.somehostingcompany.com I get a response ) 2) dbname = mydatabase 3) userUid = sa pwd = sa Inside SQL Server Configuration Manager --> SQL Server Network Configuration --> Protocols for SQLEXPRESS, I enabled TCP/IP and S ...Show All
Software Development for Windows Vista problems communicating with the host
Hi, I am trying to get host communication working because I need to communicate back to the host if for example, a process will be long running. I've set up a very simple example which raises an event on the host and every time I run it, I get an error: Done Exception has been thrown by the target of an invocation. Press any key to contine The code for my test harness is as follows: #region Using directives using System; using System.Colle ...Show All
Visual C++ Hyperlink to a dll on a website
I'm making a Car Auction program based on eBay where I can Buy, Trade and so forth on eBay but I have an easy question, how do I make link going to the signin dll on ebay This is the address that I need the link to go to: http://signin.ebay.com/ws2/eBayISAPI.dll SignIn in order to sign in to eBay. Check out the matches at http://search.msdn.microsoft.com/search/results.aspx view=msdn&st=b&na=82&qu=redirect+C%2B%2B+hyperlink If t ...Show All
