Software Development Network Logo
  • Smart Devicet
  • Visual FoxPro
  • Audio and Video
  • SharePoint Products
  • Visual Studio
  • Windows Forms
  • Windows Vista
  • Microsoft ISV
  • Visual C#
  • .NET Development
  • Game Technologies
  • VS Team System
  • Visual Basic
  • Visual C++
  • SQL Server

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

mikewo

Member List

RAB36
mepatuhoo
ron nash
BAZOOKAMEGATRON
Mateusz Rajca
ljames28
Gonzales234
HowardCarr
Yeshia
pimmy21
enric vives
sydes141
.net sukbir
flash.tato
Shells
jongas
james_cline_
Little Duck
Zhou Yong
dn8
Only Title

mikewo's Q&A profile

  • SQL Server Question about Database Mirroring and Possibly NLB

    OK since my company really would not prefer to spend the money for Windows 2003 Enterprise and MS SQL 2005 Enterprise I was thinking about this idea... Server1 - W2K3 Std - SQL2005 Std - Primary Server2 - W2K3 Std - SQL2005 Std - Mirror Server3 - W2K3 Std - SQL2005 Std - Witness Server4 - W2K3 Std - SQL2005 Std - Processing OK So we have Server1 & Server2 doing the Database Mirroring. Then I have Server3 as the Witness to say who is the Primary and so forth. Now Server4 I thinking to us to create jobs that will run on a Schedule to pull data from our Ticketing system and import it into Server1 & Server2 (Yes this is a Datawarehouse).. So what I am wondering... We really wish to not have to change our connections to the DB wit ...Show All

  • Visual Studio Team System Can't install KB919156

    Error: Product: Microsoft Visual Studio 2005 Team Foundation Server - ENU -- The application pool identity required by Team Foundation Server (TFSWSS) for the content virtual server is not using the Team Foundation Server service account. To proceed, you must exit setup, set the application pool identity (TFSWSS) to use the Team Foundation Server service account, and then run setup again. 1. In my case the TFSWSS-pool is running as: SE\TfsService 2. SE\TfsService is a member of the "Service Accounts" group in TFS 3. SE\TfsService is local admin om the server 4. The TFS-installation is working fine 5. When the server was installed a while ago the domain was FYLKE ( now changed to SE) -> can that have anyth ...Show All

  • .NET Development dot net framework 2.0

    We have an application running on Dot NET Framework 2.0 Local it is working fine. From the network it will not work. In systemadministration only the dot net framework 1.1 configuration is showing nothing with 2.0 so I cannot configure the application to be trusted over the network. I have a XP Pro SP2 machine with Dot Net Framework 1.1 and 2.0 installed on it I just deinstalled all and tried different configurations but still no 2.0 configuration possibilities Kind regards Erik Rijsdijk IT Firstly you can't load the v2.0 MMC addin at the same time as v1.1. You'll have to pick one and use it. However they will both appear in MMC. Secondly the tool is not installed as part o ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA doomed?

    XNA may be the greatest thing since sliced bread, but I don't see it getting a lot of support until you make a simple web page that explains what features the XNA framework supports and why I would want to use it. I'm not going to download the thing just to figure out what it is. You might also check the FAQ . I've seen videos of XNA being talked about on major news networks, there's an XNA GSE ad in one of my son's issues of Boy's Life, it's been talked about in gaming magazines... It's far from doomed. Once the Dream-Build-Play competition gets into swing (hint, hint guys! ) it's going to explode I think. ...Show All

  • Visual Studio The type or namespace name 'IProxy' does not exist...

    downloaded Visual Studio 2005 SDK 3.0 (August 2006 CTP), the latest VS SDK with VSTA. followed the walkthrough instructions to create a proxy then a proxy DLL. but the project will not compile C:\ShapeAppSamples\ShapeAppCSharp\ShapeAppCSharpLib\Proxy.cs(17,99): error CS0234: The type or namespace name 'IProxy' does not exist in the namespace 'Microsoft.VisualStudio.Tools.Applications' (are you missing an assembly reference ) i searched but could find no similar topic so far...perhaps someone has already encountered this problem and knows the solution Hi, These classes are part of the VSTA installation. In the VSTA help there is a topic for creating proxies that should help you with this task. Pre ...Show All

  • .NET Development About the retry mechanism of Remoting

    Hi, I am using .Net remoting in my app. and there some socket errors, such as "Invalid handle" or "the target is not a socket", etc., happen during remoting. I can use the try...catch mechanism to avoid the fatal exception and realize the error processing. I wonder if some retry mechanism is available in .NET. I intend to implement a mechanism to retry the same remoting process for serveral times before quit it completely. Will this work it out Thank you! Thanks a lot for your reply. I will take a thorough look at your suggestion and consider some ipmrovement to my program. Up to now, I just intuitively suspicious of Remoting itself and your reply made me confident . ...Show All

  • Visual Basic help on database

    i m using vs2005.i m unable to insert data in table.it always insert data in dataset & not in database.i m using this code Dim dt As DataTable Dim dr As DataRow Dim d As New Date dt = SmDataSet.sm1 dr = dt.NewRow dr(0) = ListBox1.SelectedItem.ToString If RadioButton1.Checked = True Then dr(1) = DateTimePicker1.Value End If If RadioButton2.Checked = True Then DateTimePicker2.Value.AddHours( My .Computer.Clock.LocalTime.Hour) DateTimePicker2.Value.AddMinutes( My .Computer.Clock.LocalTime.Minute) DateTimePicker2.Value.AddSeconds( My .Computer.Clock.LocalTime.Second) dr(2) = DateTimePicker2.Value End If If ListBox1.SelectedItem = "Launch Applicat ...Show All

  • Visual Studio Team System Unable to connect to the Windows SharePoint Services

    Hi, I had originally posted "TF30059: Fatal error while initializing web service ". We went ahead, rebuilt the server and reinstalled TFS. Installation went fine and I can create a project on the server using Team Explorer. On the client machine I can connect to TFS and access the project, but cannot create a new project. The wizard completes almost all the steps, then bombs on: Unable to connect to the Windows SharePoint Services at servername.ucr.edu. I have added myself as a WSS administrator on the server. I have checked the RegProxyFileCache.xml file on my local machine. The logfile is lengthy, so I've only include the exception towards the end. ***************************************** ---begin Exception entr ...Show All

  • Visual C# Picture + Text in One richTextBox

    Dear All I want to create a RichTextBox, and then i want to show picture and Text at a time, suppose Welcome to MSDN Forum how can i accompalished this task. Thanks jehan, there is an example on codeproject that might help. HTH --mc ...Show All

  • Visual C# how to get current line number ?

    Hi, is there any way to obtain current line number in C#. looks like a __LINE__ in C++.. thanks. No there is not. Can you explain what you want it for and perhaps someone can provide an alternative solution Presumably you want to be able to generate a message containing the current line #. This is not really doable other than through a call stack trace (which can't be done in C++). The call stack trace will give you all the information you'll need like the filename, method name and line #). However this information is dependent upon having the PDB file available. Michael Taylor - 11/10/06 ...Show All

  • Visual Studio Team System Problem with running Continuous Integration

    I am going to be running CI, and I forsee some problems that are going to arise. I am going to be having approximately 26 team build projects that are going to be running on CI. If each of those are run say 3 times a day - that will leave me with almost 80 entries in the "integration build", "found in build", "resolved in build" fields. I would like to have these builds ignored, as I have a main build which will "sweep up" all of the work items and change sets. What is the best way to do this fyi, I tried to rename my build to CI but you can't overwrite one with the same name once it has built... Thanks Jason, In particular, I would like a filter that would only dis ...Show All

  • SQL Server call C++ ATL COM from C# SSIS

    Hi All, Is it possible to call methods of C++ COM ATL component from C# SSIS component I did try to call methods of C++ COM ATL component and C# library inside my SSIS but without success :-( Regards, Svilen Varbanov Sure, but you have to build the interop assembly with tlbimp.exe. http://msdn2.microsoft.com/en-us/library/1w557csx.aspx Kirk Haselden Author "SQL Server Integration Services" ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. ViewPorts - Splitscreen

    I am trying to get a splitscreen to work and it does sort of. The problem is the models drawn now look messed up, like the zbuffer is messed up or something. Here is what I'm doing: protected override void Draw(GameTime gameTime) { cameraPosition.Z = 5000; graphics.GraphicsDevice.Viewport = topViewport; Draw(); cameraPosition.Z = -5000; graphics.GraphicsDevice.Viewport = bottomViewport; Draw(); } In the Draw function I am clearing the viewport to CornfolowerBlue and drawing the models. What am I missing here. you have to set your viewport's minDepth and maxDepth according to the values you used in the projection matrix. Like this: viewport.X = 0; viewport.Y = 0; viewport.Width = thi ...Show All

  • SQL Server data are not allocated in the properly NDF. Why?

    Hi everyone, The followings actions works fine. But only the first NDF (PRIMERO) is growing up. I don't get the point at all, I though that SEGUNDO would store February, TERCERO March and CUARTO April to December (according RANGE LEFT) I feel that there is something very important that I did not in all of this... I'm stuck. --Definition table CREATE TABLE [dbo] . [DatosMensuales] ( [Id] [int] NOT NULL, [Concepto] [varchar] ( 50 ) COLLATE Modern_Spanish_CI_AS NULL, [FechaAlta] [datetime] NULL ) ON rangoMesFE ( FechaAlta ) CREATE PARTITION FUNCTION rangoMesFP ( datetime ) AS RANGE LEFT FOR VALUES ( '200601' , '200602' , '200603' ); CRE ...Show All

  • SQL Server Can't Create cube

    Is there is a way to create cube against database which tables get new records every few seconds I get these errors Thanks in advance Warning -2128674815 : Errors in the OLAP storage engine: The attribute key cannot be found: Table: dbo_Log, Column: InsertDate, Value: 2/23/2007 9:22:32 AM. Thanks in advance You'll need to update the time dimension and your data incrementally and "lock" the database updates while the update is being performed (to maintain consistency). This'll take some careful consideration of your partitioning scheme, to make sure you maintain a reponsive system. How often do you need to update the cube Could you consider doing the following steps: a) materials the dimension informati ...Show All

©2008 Software Development Network