the_developer_cali's Q&A profile
Visual C# Setting default language
Hi, How can I owrk with dates in different system languages.. Cos I have this problem... My Application was built in a Portuguese system, when I run it in an English system I got date problem, is there a way to avoid it without reconfiguring the windows system Thnaks Depends on what you are doing and what your 'date' problem is. If you are parsing a DateTime, make sure you pass CultureInfo.CurrentCulture to one of the Parse overloads. ...Show All
Windows Forms VS 2005 RTM WINFORM DESIGNER BUG IS DRIVING ME CRAZY
I have a project with various forms but when I try to view the designer for one of the forms I get the following error messages -even though the project atually compiles : I Have looked around and if you type "Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information. " IN GOOGLE you gets loads + a notification by Microsoft that says that they could not fix it before release http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx feedbackid=d863064b-04e0-4b54-8f2e-55a43ba29163 now this leaves me STUCK. I wonder whether somebody has found a stable workaround!!. i get this silly ...Show All
Visual C# virtual method or virtual class?
Hi In order to override any method from a class i have to set it virtual or just the class virtual Thanks... ...Show All
Visual Basic How do you read a web page in VB express?
I would like to use VBExpress to read a webpage online in html. Anyone has any idea what code to use to Open a web page online I intend to get links from the HTML code and have them placed on a buttons for easy selection (for hyper jumping). Thanks. Maybe the code is not there because it is not a VB Sample. I think that you will find useful the help topic "WebBrowser Class" http://msdn2.microsoft.com/en-us/library/system.windows.forms.webbrowser.aspx Luca Dellamore Visual Basic Test Team ...Show All
.NET Development What happens underneath the BulkCopy Object of ADO.NET 2.0
Hi , Does someknow how does new Bulkcopy work in ADO.NET 2.0 What happens underneath because of which the performance gets better with BulkCopy Regards, Anjana There are a number of reasons why bulk-copy is faster. Here is a summary: No per-row statement execution. When you do multiple inserts without bulk-copy, each insert is a statement in itself (regardless of whether it's batched together with other statements). With bulk-copy, we don't incur the cost of executing a statement for each row, the whole copy operation is a single thing. No multiple network round-trips. Once the bulk-insert operation is setup, w ...Show All
Windows Forms dataGridView; force to uppercase
How can we force uppercase characters in a dataGridView control ...Show All
SQL Server Licensing for a web server
What kind of license do I need to run a single web site on a web server that needs SQL server to operate it's a public site that runs DotNetNuke but it's the only site on that box. *BUMP*.. Still need to know what kind of SQL license I need to run a web server with one website that requires a SQL server. ...Show All
Visual Studio Express Editions Catching multiple buttons in one function
I'm creating a windows form application with an awfull lot of buttons. 81 to be precise. I have set an event on all these buttons to one function: changeButtonToTextbox(object sender, MouseEventArgs e) This works fine, but the program needs to know which button really is clicked. I can do this with a simple if(sender == button1). But I don't feel like making a switch statement with 81 possibilities. It wouldn't be efficient too. Suppose I want to change one property of a button; visibility. How would I do this How can I determine which button is clicked and respond on that by making the button invisible TiA, MaximusBrood ...Show All
.NET Development Can't get a new table into my dataset
Can't get a new table into my dataset I created a new table Person in my Access 2003 database. However, I can't get it into my dataset. I tried refresh, the designer, and confiqure with the wizard, however the table Person doesn't appear. Is this a bug Or am I just being an idiot, as usual dennist Paul, <g> A copy of the .mdb was in the body of the project. How I missed it I don't know. I copied the database from /bin/debug to the project folder and all was well. Thank you very much. I also had help from the Office/Access/Queries newsgroup in creating a delete and append query. In the ...Show All
Smart Device Development Thread Syncronization
Anyone know what means are provided for thread syncronization in .NET CF Thanks, Jeff. They are almost the same as in the "big" .NET. Monitor or lock statement, WaitHandle, etc... ...Show All
Visual Studio Team System Notification receiving problem
Hi, I'm trying to subscribe to WorkItemChangedEvent event and receive the notification in my custom web service. Subscription code runs perfect and return valid subscription id (I can find it in tbl_subscription table), but I didn't receive any notification . Subscription code is based on “Team Foundation Services Sample.zip” from extensibility cit beta2. Here is the code: namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> TeamFoundationServer tf = TeamFoundationServerFactory.GetServer( "server" ); IEventService evt = tf.GetService( typeof (IEventService)) as IEventService; DeliveryPreference pref ...Show All
Visual Studio Express Editions serial port
Is there a way to controll the serial port at this level, i need outputs to trigger transistors/relays/triacs (not sure yet) can i create my own hardware/ software interface to control my hardware which would control other things. thanks, average joe I am not quite sure whan you want to do. Do you want to trigger the transistors/relays/triacs by means of a UART and some hardware connected to the serial port, or do you want to use the modem control signals as output signals In the knowledgebase on our homepage you may find a small sample program including source code for communication with the serial p ...Show All
Visual Basic Getting Specific cells in Data Grid
I have a datagrid loaded with an Excel sheet. I would like to programmatically look through the cells in the DataGrid, to see if I am getting the information that I desire. I have a couple of focused questions: How do I specify which cell to focus on in the datagrid How do I read the value (text) that is in that datagrid Input is much appreciated. Me . Datagrid1 . CurrentCell = New DataGridCell ( Datagrid1 . CurrentCell . RowNumber (), 0) Dim DGValue As String = Me . Datagrid1 . Item ( Me . Datagrid1 . CurrentCell ) ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Beta for XNA Studio?
Does anyone know if there is a beta planned anytime soon for XNA Studio, or if it will have a public beta My primary line of business is not game development, but I am interested in seeing/experimenting with this product. Hi. I'm really interested in XNA Studio, too, but I understand that it's not for casual developers (I'm a hobbyist). Is there any screenshots showing XNA Studio And by the way, nice forum. I really like the toolstrip-look above the rich-text edit box. Howeve, I've noticed that the toolstrip (toolbar) didn't change depending in the color of the theme (but I will end here since this is off-topic). ...Show All
Windows Search Technologies WDS Query from VBScript or COM
I'm looking at integrating WDS functionality with an existing application and have been trying to call the ExecuteQuery from VB6 but am having problems. Does anyone else have some example code that they've managed to get working I've worked out that passing empty strings seems to case issues and am passing null references instead but am getting some errors raised ("Inv. Proc. Call"). This is for a small quick research project to decide between WDS and GDS so any suggestions would be very gratefully accepted! Many Thanks, John I'm not really a VB6 or VBScript expert, but I think this ...Show All
