voguy's Q&A profile
Smart Device Development Deploying a .net2/sqlce app
Hi! note: new in mobile development but experienced .net developer Can you give me a guidance on what do I need to install in a wm2003 device to deplory a .net 2.0 app which also uses sqlce 2005 Are some specific dll's enough I would like to create a complete CAB with all the necessary files so that end-user can easilly install/uninstall the application. Unfortunately, you can not do that. License does not allow you to break NETCF/SQL Mobile CABs apart and you can not have CAB in a CAB as only one instance of CAB installer is allowed. You can install SQL Mobile, NETCF and your application CABs one by one via AS: http://msdn.mi ...Show All
Windows Forms Handling Exceptions
Does anyone know what mouse event is thrown or why the application crashes when you double click a datagrid when the pointer is in row change mode. (ie the double arrow pointer to resize rows) It throws an exception in the main which can be caught but it still crashes the entire application any ideas Well Funny enough this cr ...Show All
Visual Studio Express Editions Strange behaviour when accessing Excel VBA after installing VB 2005 Express edition
Hi, I recently installed VB2005 Express Edition to try to learn the new features of VB under the .net environment. The installation and registration went like a charm and the program is working as I expect. However, I am doing a lot of development work using VBA running under Microsoft Excel and since I installed VB2005, whenever I access the VBA IDE in Excel, I get a message box telling me that VB2005 is trying to install something. At first, this installation stopped, saying that it could not find the vbsetup.msi file. After providing it with the location of this file, it kept going with its alleged installation and after a minute or ...Show All
SQL Server Question about service configuration on SQL Server 2005 IA 64....
While perusing Configuration Manager, I noticed on the properties for the services there is a parameter to indicate whether or not the service is running on a 64-bit operating system. If I'm running on a 64 bit Itanium server, shouldn't this be checked "Yes" I'd ask the server admin who did the install, but he is currently awol. Yes, it should be, assuming you 64bit Itanium server is running a 64bit OS, and the IA64 version of SQL was installed...you'd need to verify those 2 things... What version of SQL is running (run select @@version to get this) What Edition is running (run select ser ...Show All
Visual Studio Team System Snippet manager missing
Anyone know where code snippet manager is hidden in the VS 2005 team suite edition (trial). It should be under tools but I can't see it anywhere under there. The Code Snippet Manager hotkey is Ctrl-K, Ctrl-B. This key combination works for me even if the command is not listed on the Tools menu. You can get more CodeSnippets here: http://msdn.microsoft.com/vstudio/downloads/codesnippets/default.aspx After adding them in, stop and then restart the IDE, then the snippets become active. - Charlie ...Show All
Smart Device Development Is it possible to trigger KeyPress event manually?
can anyone tell me is it possible to trigger KeyPress event manually if yes can tell me how Private Sub textbox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles textbox1.KeyPress MakeAcceptDecimalOnly(e, textbox1.Text) End Sub above is my own code which is use to trigger user keypress and let the textbox accept integer only if user key in character the MakeAccpetDecimalOnly function will do nothing (i use e.Handled = True). i want to create a button so when user click on the button, system will a ...Show All
Visual C# cannot expand Server node in vS 2003 in windows 2003 server
i have a problem opening the server explorer's node in vs 2003. i am using windows 2003 server. please help. i get the error message: "The requested name is valid, but no data of the requested type was found". that does not work... i entered (local) in the servers' name and also tried entering the server's name. i log in as admin and i use windows 2003. it works fine with windows xp. ...Show All
SQL Server How to access report parameters in custom code
Hi, Below is a custom code function for my report. At bottom is the expression that calls the custom function. When I run the report I get an error message: "There is an error on line 3 of custom code: Reference to a non-shared member requires an object reference." If I take out the lines that try to access the report parameters then there is no error. Can report parameter be set/read from the report's custom code Thanks! Public Function FormatColorFirstName(varFirstName) As String Select Case varFirstName Case "John" & ...Show All
Windows Forms WinForms Markup Language
Not sure if the correct place...But this is cool... Does it have a future Will it act as a stepping stone to XAML http://www.windowsforms.net/articles/wfml.aspx Marc Clifton has written an <a href="http://www.codeproject.com/dotnet/vgclock.asp ">article on CodeProject</a> describing how to create and animate a vector graphics clock using VG.net and MyXaml: <a href=" ...Show All
Windows Forms Email from app
How do I setup a linklabel in my Windows form to use outlook to send email I'm assuming this is much different than doing from a web page. Robert Have you added the reference to System.Web.dll This involves more than the Imports/using directive at the top of your code file. Under the solution explorer there is a category called&n ...Show All
.NET Development iSeries managed provider - where can I download from?
Can anyone please tell me where I can find the iSeries .net managed provider for downloading. I've not had any luck in finding it between microsoft and ibm. thanks. Hi, I think this is what you are looking for: http://www-306.ibm.com/software/data/db2/runtime.html Regards, Vikram ...Show All
Windows Forms How to add Controls to ListView Control??/
Hi Im trying to develop a calendar control that is similar to outlook. Initially I was planning to use a listview and add the controls on the listview whenever an appointment is created. But the control is exactly not added to the listview but to the form. When I change the size of the form then the controls obviously are out of place. I was wondering is there a way to add a control to ListView. Or is there any other control than listview that fulfills my requirments. Your help wil be appreciated. I'm using C# windows Forms. Maybe you can find something useful here: http://www.windowsforms.com/Default.asp ...Show All
Visual Studio Express Editions Program flow - order of execution.
As a real novice I am writing a small application to measure a persons reaction time by presenting a prompt on screen and then measuring how long before a key is pressed. My problem is understanding the program flow. When run the form is presented and then when the Start button is pressed there is a short, random delay and the prompt presented. The clock stops when any key is pressed (sub EndTimer) and the time presented - all as expected - but then the prompt is presented again and again and again..... The app works as intended except for the cycling. I do not understand why it is looping. The relavant code follows. I thought it would ru ...Show All
SQL Server Clustering Resource depencies
Hello, With SQL2000 configured with MSCS, we had to stop the SQL service to add additional disk in the SQL Cluster group (in order to use these disks for databases for example).. this was due to the dependencies between the resources. Do we still have the same issue with SQL2005 running on the cluster Does the new mountpoint support help in this scenario Thanks Jerome Yes, the same issue does exist with SQL Server 2005 when adding disks. The new mountpoint support does not really help in this scenario as the mountpoint disk should also be added as a dependent disk to the resource group. It is possible to ad ...Show All
Visual Studio 2008 (Pre-release) non-generic types
I got the error "the non generic type System.ServiceModel.ServiceHost cannot be used with type parameters." in the line Public static void main() { ServiceHost<ParcelService> servicehost= new ServiceHost<ParcelService>(); Can anyone suggest how to fix this error In the newer versions of WCF the ServiceHost takes a type instead of a type parameters. Try: ServiceHost host = new ServiceHost(typeof(ParcelService)); and that should work. ...Show All
