magbel29's Q&A profile
Smart Device Development Problem with setup and use a GPRS RasEntry...
Hi everyone, Does anyone has already played with a PocketPC with GSM cellular I’m with a Eten P300B and I’m having some difficults to create and manage DialUp accounts (RasEntry). When I’m creating an Entry trough the Windows Mobile UI, I have to select the "Cellular Line (GPRS)" device and enter a access point name ("tim.br"). I always used the RasGetEntryProperties and RasSetEntryProperties functions to create and manage RasEntry, but I don’t know how to specify value to fill the "Access Point Name" option. If I create the dialup and call the RasDial() function, it connects without problems, but if I need to c ...Show All
SQL Server message: Login failed for user 'NT AUTHORITY\NETWORK SERVICE'. (severity 14)
Hi Im getting the following error when trying to connect to a php page...any ideas message: Login failed for user 'NT AUTHORITY\NETWORK SERVICE'. (severity 14) Hi, seems that you tried to impersonate the WebUser at the SQL Server database. The question would be what you want to use, wheter Windows Authentication or SQL Authentication HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All
Smart Device Development Sell Pocket PC programs ? eVC EULA
Hi, is legally possible to sell Pocket PC applications made with Embedded VC++ 4.0 is it legally possible with applications made with Visual Studio C++ .NET 2003 Standard Edition or Visual Studio C# .NET 2003 Standard Edition (if the standard editions could be used to program Pocket PC applications) Thanks It's not possible to made applications for devices with VS 2003 Standard. As to eVC 4.0, please consult this product EULA. ...Show All
Visual Studio Team System Testing Policies for Check in with SourceSafe
I can create a testing policy that uses one test list that I have created. If I try to create a Policy with two test lists only the second test list is used. I understand that it should be possible to do this, here is the Config String that I have tried: /testmetadata:"C:\Team Systems\Unit Testing\AuthCode Algorithm.vsmdi" /testlist:Standardise Tests 1, 2 /testlist:Tests 1 to 14 Can anyone see what I am doing wrong or is this a bug Interesting. I've got a repro with the Beta2 build. However, in our current builds this issue is fixed implicitly because of the way you can now select test lists (It's no ...Show All
Visual Studio 2008 (Pre-release) Message not being processed
I had this porblem crop up yesterday when I tried to move my application off of my development machine and onto test servers. However I now have the problem everywhere including my machine. When I call an operation my code never gets executed. There is no error or exception or anything. It simply never runs. I created another method called Ping that returns a string and that works fine. In addition the debugger is never able to cross over into the operation, but it does for Ping. Have I broken something in the configuration I know that this worked in the past. I can see the messages reaching the service using the logging and tracing. ...Show All
Visual FoxPro Container 'when' method?
Hi; I don't see a when event for a container. I am using 'gotfocus' but if there is a command button in the container, and I want to prevent the user to click it (in some cases), gotfocus is too late bacause the button's click method already fires. Any ideas how would I conditionally prevent a user access to everything contained in a container Thanks, Aleniko Dave; If I use the .enabled property, How would I tell the user that he needs to click "Clear" prior to being able to select something from the container Using the MouseEnter event would do it everytime he hovers over ...Show All
Visual Studio Express Editions Formless Application?
Is there anyway to create an application that (when created) doesn't have a form For example, I would like to create an application that has an icon in the notification bar and have it so that when I double click it a settings form is created. I would prefer not to have the form exist all along and just have it invisible because to my understanding that uses more memory then creating it on demand and the goal of this application is to make it as unobtrusive as possible. Thanks in Advance, Nick Dancer. I'm not sure what this application will be doing but what you're describing sounds like a Wind ...Show All
Visual Studio 2008 (Pre-release) foreach or yield on a 'stream' instead of an IList?
I'm a recent exile from Java land and would like to know the following for C# (2.0 ... can't use LINQ in production yet :( ): What is the best way to not just iterate through a list, but keep track of new entries to it and 'process' those as wel. In other words, I would like to do something like this: foreach(Data d in myList) Console.WriteLine(d.somevalue); The above line will just go through the list and display the 'somevalue' attribute of the list. I want the foreach loop to keep 'listening' to 'myList' and each time a new value is added, WriteLine that as well. The reason I"m posting this in the LINQ forum is because I wo ...Show All
Smart Device Development could .netcf 2.0 serialport component not support windows mobile 5.0 ?
Hi everybody : I read many articles in forum ; there are many people having this problem. could anyone have solution in this problem What problem Please be very specific, see this: http://www.danielmoth.com/Blog/2005/03/please-read-before-posting-to-ng.html ...Show All
Visual Studio 2008 (Pre-release) LINQ support on deployment
Hi to all. I am a new in the LINQ. So I have a basic question: I downloaded the LINQ and installed it on my developer machine running VS2005. Used some LINQ code in my application. Now I need to deploy it on the production machine. Do I need to install some LINQ support besides the .Net 2.0 framework Thanks FWIW, the LINQ CTP is not for production use per the EULA. If you want to try it out for prototyping, you will need to have the DLLs in the /bin directory of the CTP on the machine you are trying it out on. For code-behind, you will need the compiler(s) as well. By default ...Show All
Windows Forms Problems with WinForm Components height
Hi, I'm not sure I'm posting this in the right section but I hope so. The font I need to use is 8pt, Arial but with that font, the DropDown component has a minimum height of 22 and textbox component has a minimum height of 20. I need to get the height to 18 and there are plenty of room in the component to get that height and still view the text correctly(I have no problem with DataGridView for example). I also have that problem with the web component TreeView nodes, I want to set the background color and reduce drasticaly the height of each nodes because it's ugly otherwise but changing the height style for any type of nodes do ...Show All
Visual Studio Express Editions read write serial port
I have found several classes online that say they make using the serial ports easy. I am never able to get any of them to compile. Is there a bare bones example of how to read/write to a serial port all bundled in a project for Visual C++ Express Edition Hey!! I looked at the same place with the window app that worked. It was blank and had the check box below checked. (Inherent from parent or project defaults.) Now it compiles!! Would you suggest a different setting ...Show All
SQL Server Get Stored Procedures parameter names and types...
Sorry if I haven't choose appropriate forum for this question. I have MSSQL05 beta. I know how to list all stored procedures in selected database (everything is in localhost). I need to list parameter names and types for selected stored procedure(s). How can I do that or anything that can return parameter names and types It's windows application. You should move to a non-beta version as you are breaking the EULA with using the old version, but anyway, the parameters can be views with the INFORMATION_SCHEMA.Parameters view. SELECT * FROM INFORMATION_SCHEMA.Parameters HTH, Jens Suessmeyer. --- http: ...Show All
Visual C# Get Time From Remote Server Using C#?
Is it possible to get the time of a remote server using C# The .NET Framework does not have a built in SNTP client however you can easily find one or build your own. I would suggest looking at this one on Code Project . It should be mentioned that in order to use an SNTP client you must have a time server you can connect to. ...Show All
Windows Forms How to clear the datagridview?
this .tblSPFCompanyDataGridView.DataSource = null ; this .tblTestResultsDataGridView.DataSource = null ; this .tblInspectionTestDataGridView.DataSource = null ; this .tblSPFCompanyBindingSource = null ; this .tblTestResultsBindingSource = null ; this .tblInspectionTestBindingSource = null ; this .tblSPFCompanyDataGridView.DataSource = this .tblSPFCompanyBindingSource; this .tblTestResultsDataGridView.DataSource = this .tblTestResultsBindingSource; this .tblInspectionTestDataGridView.DataSource = this .tblInspectionTestBindingSource; I have three datagridviews in a form, what I want to do is to c ...Show All
