lizzy64's Q&A profile
Visual C# Focus() problem
I want to open a windows form and set focus to the first field. There are many panels, group boxes, controls and event handlers in this form and they are apparently interfering with setting focus, which leads to three questions. 1) Is there a sure fire way to set focus to a particular control on load. This particular control is a form being loaded as a showdialog from another control. I've tried calling [control].focus() as the last item ...Show All
Smart Device Development TCP Socket in pocket pc
Hi, I want to create a TCP Socket in pocket pc and test it with a TCP server and TCP client on my device. Is there any tutorial, link, advice, code about that More generally, Where can I have more documentation about embedded C++ Thanks a lot, Hi, The best place to look out for documentation is MSDN. Have a look at the following link that talks about networking and communication with win ce. http://msdn.microsoft.com/library/defau ...Show All
SQL Server Need help with filtering fields with null and more
Requirements: 1) Cannot have results in which both m.homephone & d.homephone are both null, or both m.workphone & d.workphone are both null in the result set 2) We also do not want to see any combos where one homephone is null and the other has only the char 0....same for workphone...no null & 0 combinations. e.g. m.homephone d.homephone null ...Show All
Visual Studio Express Editions Scaling arrays
I would like to know if there is a more rapid way to multiply an array with a number in Visual Basic than the one presented below. I haven't found much on vectors in the help and seems that the only possible way would be to use the matrix class. e.g. {1,3,4}*2 = {2,6,8} I know this way to do that looping through the array: Dim a() As Integer = {1, 2, 3, 4} Dim b As Integer = 2 Dim c As I ...Show All
.NET Development how to develop heavily access website?
Hello, I want to create website. This website will have heavily access and a huge number of transaction per day. I expect to have between 1500 to 2000 transaction per day. Can anyone help me in that Thanks Thanks a lot you for your help I found on msdn library a useful link i would like to share it with it also conation a book for performance issue this book is available for download. http://msdn.microsof ...Show All
SQL Server Copy database Wizard error: "Class not registered"
Hello, I use Management Studio (SQL 2005) on my desktop wich contain also Enterprise Manager (SQL 2000). The SQL Server 2005 is on a server in our network. When I try to use the function "copy database wizard" to transfer a database SQL 2000 to SQL 2005, the wizard stop with this error: "Class not registered Program Location: at Microsoft.SqlServer.Dts.Runtime.Application.SaveToSqlServerAs(Package package, IDTSEvents eve ...Show All
SQL Server Value method of xml data type not deterministic, xml column not accessible in 'deleted' table
I am presently taking my first, tremling and insecure steps in Sql Server as a whole - specifically Sql Server 2005. I am involved in a proposal for a huge data convserion project (banking) here in Denmark and presently trying to present small mockups to illustrate the potential of XML in general and specifically promote Sql Server 2005. I have studied tons of documents on msdn including 'XML best practices ...' and found them very helpful. Stum ...Show All
Windows Forms Where can I find some free icons
Does any one know where I can download a free set of icons for business application for use with the buttons and menus Wow, These icons are great. Thanks for the tips. ...Show All
Visual Studio Team System How to develop my own dll with rules to append to fxcop
Dear fxCop Team, I am new with FxCop and i'd like to know how to develop a class in vb.net to build as a DLL I have a list of own rules that a need to implement to FxCop but, I do not have any idea how to build this class. Is there code examples of class in vb.net to see Or some tutorial to take me step by step on this process regards, Marcelo I should have also added that you can ask us questions on this forum if you’re having trouble ...Show All
Visual Studio Express Editions Data Format
The data in my Access DB is a long time like: 02:06 PM After I fill the data into a DataGridView by using DataAdapter, it shows :12/30/1899 02:06 PM. Where I should go to control this format Thanks for any help! Cici ReneeC, The actual datatype is long time. Thanks. Cici ...Show All
SQL Server Programmatically create a Data Conversion Transformation
Hello, does anyone know of a good example of how to programmatically add a Data Conversion Transformation to a package I have come so far that I have the component in my dataflow task, but I don't know how to set the properties of it. That is, how to determine the columns that should be converted and to what data type etc. I (as far as I understand) need a data conversion transformation since I have not managed to create (via the d ...Show All
.NET Development occasional "Cannot generate SSPI context"
Can any of you experts help me out on this error “System.Data.SqlClient.SqlException: Cannot generate SSPI context” The weird thing is that this only happens occasionally, about 20 times per day [1] Client side: 1. What is the connection string in you app or DSN (please specify) "server=mydbserver; database=mydatabase; uid=; pwd=; trusted_connection=yes; Max Pool Size=10; Connection Timeout=60; Packet Size=4096; ; ...Show All
.NET Development How to tell if a specific CultureInfo designates time with post meridiem or "military time?"
Hello, I'm looking for a boolean somewhere which tells me whether a specific CultureInfo object requires the meridiem notation (AM/PM) or uses a 24 hour designation Should I check the DateTimeFormat.PMDesignator for null There should be a better way.... I hope. Thanks! Kevin So then, it would be something like this public static bool UsesMilitaryTime(DateTimeFormatInfo dateTimeInfo) { return str ...Show All
SQL Server since uninstall of ADAM service does not start anymore
hideho, since the uninstall from ADAM and delteting the VSTFS databases and reboot the sqlserver cannot be started anymore, not after many reboots and trials with whatever.... does anyone have expirences on that problem already Irie Mikky Hi Thanks buddy! You have to just rebbot the machine then turn off the VIA protocol and start the database service. Regards, Satyadev ...Show All
Visual C++ compiler error while converting vs c++6 project to vs c++ 2005 ... error C2065: 'DWORD_PTR' : undeclared identifier
After converting my c++6 solution into c++8, i got these errors from visual studio header files... Somebody knows how i could fix it Here's a list of what's been done : Output Window Compiling... StdAfx.cpp c:\program files (x86)\microsoft visual studio 8\vc\atlmfc\include\afxv_w32.h(228) : error C2065: 'DWORD_PTR' : undeclared identifier c:\program files (x86)\microsoft visual studio 8\vc\atlmfc\include\ ...Show All
