Software Development Network Logo
  • Visual C#
  • Microsoft ISV
  • SQL Server
  • VS Express Editions
  • Windows Live
  • Visual J#
  • Visual FoxPro
  • Windows Vista
  • Visual C++
  • .NET Development
  • Game Technologies
  • Architecture
  • Visual Basic
  • Visual Studio
  • Smart Device

Software Development Network >> MJT7's Q&A profile

MJT7

Member List

Liren Zhao
thea.umali
Limin
daniboy120
kegerdal
Leijtens
Tor Langlo
jadeice
TekRichy
Ngoc Luu
JBond007
Aryam
Amby
Cobra300
A C# fan
Mike12345678
carlisle
Anand Kumar S.R
tjolig
Dmitry N. Oleshko
Only Title

MJT7's Q&A profile

  • .NET Development how to set regional and language setings in control panel from vb net

    I need this to solve the problem with decimal separator in diferent cultures I found in MSDN Public nfi As NumberFormatInfo nfi = New CultureInfo("ro-RO", False).NumberFormat nfi.NumberDecimalSeparator = "." nfi.NumberGroupSeparator = "" my numbers are saved as string in my database with this format 4512545,56 i tried to send such value to cristal reports and it doesn't accept that with something like "4512545,56".ToString("N", nfi) a managed to send 4512545.56, this is the format CR accepts. i'm from Romania and my standard nr format is 4.512.545,56 i don't realy know where to begin to solve this. an option i ...Show All

  • Visual FoxPro reading html file in foxpro

    Hi I want to check an .html (or TXT if thats easier) file with foxpro for this line: src="cid:image001.jpg@01C67F47.26775C40" and replace it with src="image001.jpg" how can I do this, I can't figure it out :( look at using : STRTRAN() with filetostr(), append from\type or alines() Dave M. ...Show All

  • SQL Server Upgrade from June CTP to Sept CTP - BKM

    I am upgrading to Sept CTP from June CTO. Should I completely uninstall the June version before proceeding towards the new version Any experiences Pls share. I've had hassles on a 64-bit platform that also has SQL 2000 installed. The Sept CTP install errors due to a DLL already registered as a 32-bit proc (MSMQTask). This CTP doesn't seem to work well with the June CTP either, I get errors when trying to object browse and cannot get any SQL Agent info on servers running the June CTP.  It may be related to the DLL problem--or not.  I used the uninstall tool prior to loading this CTP, so I don't think ...Show All

  • .NET Development How to append xml files

    Can anybody tell me that how to append xml files You may want to distinct XML document and XML fragment. XML document has just one root element and append doesn’t have much sense for it. The best you can do is load first document into XmlDocument and then add nodes from the second document somewhere in this XmlDocument. Fragments may contain multiple root elements so you can append one to another. Fragments can't contain XML declarations < xml ... > so you should be sure that both of them use the same encoding. ...Show All

  • Visual Studio Document Explorer crashes

    Thought I'd start a new thread, since I'm using Visual C# Express, rather than full VS2005. Windows XP Pro SP2, Visual Studio 2003 Pro, SQL Server 2000 Developer Edition, Visual C# Express, Visual Web Developer Express, SQL Express 2005, MSDE. I also have Virtual Server 2005 SP1 beta installed. Problem just started this weekend. Whenever I click on any topic in the Index, Document Explorer crashes. I've tried Repair on Visual C# Express, Visual Web Developer Express and MSDN 2005 Express. Same problem. It was working fine last week, I'm not sure what's changed. I have previously had VS2005 beta2 installed, but I removed that by following the ...Show All

  • Visual Studio Team System Subscribable server events?

    I read http://blogs.msdn.com/buckh/archive/2006/04/10/event_filtering.aspx with great interest. Although I dont fully understand how to enumerate the events I'm happy to know this list. I have downloaded the March version 2006.03 of the SDK. Herein I cant find a description of these events - "only" a description of the eventing service and the BisSubscribe tool. Could somebody help to understand these events a little better - e.g. could I use one of them to get a notification every time somebody added an iteration Thanks Yes, you can get a notification every time someone adds an iteration. Create a subscrition to ...Show All

  • .NET Development NegotiateStream problem?

    I have this code where I would like to authenticate before starting to accept communications from a client. After I add the authentication code, I stop getting the actual data. Here is the code. What is wrong using System; using System.Net; using System.Net.Sockets; using System.Net.Security; using System.Text; using System.Threading; namespace TestApp { class Class1 { [ STAThread ] static void Main( string [] args) { try { ThreadStart threadStart = new ThreadStart(StartServer); Thread processThread = new Thread (threadStart); processThread.Start(); ClientTest(); ...Show All

  • Visual Studio 2008 (Pre-release) WPF Nov 2005 samples hit-rate

    With November CTP of WinFX and VS2005 RTM, I'm having roughly a 50% success rate running the various WPF samples - mostly due to compilation errors. Does this sound about right, or is it more indicative of some problem with my system setup This is a CTP which can mean very minimal testing and docs/samples out of date.  Most of the changes were cosmetic in my code, but there were about 100 changes required to compile clean.  I have not tried the samples, but that would not be overly worrysome for a CTP. ...Show All

  • Windows Forms DatagridviewBand

    Hi This is a very small question I want to know wat is datagridview Band Wat is use & significance of this within Datagridview How & where we can use this. Thanks in advance DataGridViewBands is the common class for a DataGridViewColumn or DataGridViewRow. You do not create or use a DataGridViewBand directly but instead use a DataGridViewRow or DataGridViewColumn. -mark DataGridView Program Manager Microsoft This post is provided "as-is" ...Show All

  • Visual Basic convert 1-dimensional double array to string array ?

    How do I: convert 1-dimensional, double array to string array thanks They added a new function in VS 2005 to address this. Just use the ConvertAll function like so: Module Module1 Sub Main() Dim a() As Double = {1, 2, 3, 4} Dim b() As String = Array.ConvertAll(a, New Converter(Of Double, String)(AddressOf MyCStr)) Stop End Sub Private Function MyCStr(ByVal d As Double) As String Return CStr(d) End Function End Module ...Show All

  • SQL Server Interfacing with SQL Server 2005 EXPRESS

    hey howzit guys! I am very new to SQL Server 2005 Express, my question is simple, can I only view and add database tables etc through VS 2005 when using SQL Server 2005 EXPRESS, since it does not seem to have any facilities in the Config. Manager to do this directly in SQL Server Did you try the managment studio express which is downloadable for SQL Server Express http://www.microsoft.com/downloads/details.aspx FamilyID=82AFBD59-57A4-455E-A2D6-1D4C98D40F6E&displaylang=en HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Studio Team System How to install sharepoint/team system in production server?

    Hi, all. We have one server that many existing web application are running on. We have to install team foundation server and sharepoint on the server. The problem here, is that it disable all other web applications when I install sharepoint. Here, We don't need to consider team foundation server. Sharepoint itself gives me trouble. I don't want to dedicate new server to sharepoint. Is there any way I can run sharepoint (also team foundation server) with other existing web applications. Team Foundation Server runs is configured to use port 8080 by default. I'm pretty sure depending on requirements that port can be ...Show All

  • Visual C# Lock "controlBox" for userinput

    Hi there, is there a possibility to lock a "comboBox", so the all a user can do is choose out of the items shown, but cannot manually type something into it Thanks, Finch. edit: Sorry for mixing up combo/control... :-) ...Show All

  • SQL Server Full-text indexing backup and mirroring

    Hi, We are trying to develop a backup and restore plan that will include our full-text indexes. Our question is in regards to how the full-text indexing will fit into our schema. Detailed question: ------------- We will be mirroring our primary database to a secondary server in high availability mode. How are the full-text indexes dealt with in a mirrored scheme Is the full text index on the standby server updated as transactions are streamed to it Or does it have to be repopulated when the standby becomes active Also, If a database is restored, but the change-logged full-text index isn't up to date with the current da ...Show All

  • Visual Studio ReportViewer in Firefox version 1.5.0.1

    I have problem rendering the ReportViewer in Firefox version 1.5.0.1. The width of the ReportViewer is much smaller than expected and the data is just messed up. But the ReportViewer works fine in the early version such as 1.0.7. Any clue on that Thanks. I am not aware of any rendering issues unique to the version of Firefox. Will you send a simplified RDL that shows the problem We will investigate it. ...Show All

©2008 Software Development Network