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

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

darkfriend34

Member List

cssjm
Rafael Mores
CodePfo
IrisFresco
ec
Edward1
Messs17
Matt Lin
jack563
Wasim
FPSt
Marcio Sete
giftgirls
shafiqm
LiamD
imed-deborah
markand
davidlks
kool_kan
BradC4000
Only Title

darkfriend34's Q&A profile

  • SQL Server MDX Sample Application...

    Does anyone know where you can download the MDX sample application from if you are running Analysis Services 2005, SQL Server Management Studio is the new query tool. You can connect to Analysis Services 2005 and write MDX queries here. HTH Thomas Ivarsson ...Show All

  • Visual Studio Team System Get specific version tells me file is being used by another process

    Sometimes when I select a folder and run the get specific version (I choose latest and check both boxes to force get), TFS will show a message box telling me that some file could not be processed because it was being used by another process. I am assuming this is because another user is either checking a file out or in or is also pulling the latest version. That is, TFS is the "other process". Why doesn't TFS simply retry pulling the file or files instead of waiting until I come back to the office to push the freaking button so the fetch will finish Then to get the file, of course I have to do a get again. Is this a bug or a feature Sometimes I see that the file in the message box has "Latest" marked as "y ...Show All

  • .NET Development The 'Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine.

    I just installed Visual Studio 2005 today and I'm already getting an error. This code worked fine on 2003. I am running Windows XP 64 so I definitely have the latest MDAC. Anyone know why I would get this error Dim strConnect As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & GetWorkingPath() & "db.mdb;Persist Security Info=False;" conn = New OleDbConnection(strConnect) conn.Open() I'm getting the same problem, but when I do the x86 option it doesn't help, either in C# or VB. I've run CompChecker and got the following, everything is cool: <cc> <releases> <release name="MDAC 2.1 SP2"/> <release name="MDAC 2.5"/> <release n ...Show All

  • SharePoint Products and Technologies Where can I download the wss12.xsd file?

    I am trying to edit a .webpart file and would like to add the schema to the properties for the file in VS 2005. However, in my 12 hive directory there is only a wss.xsd file and no wss12.xsd or anything resembling that. Several forum posts make references to the wss12.xsd file but I can't find it on the web anywhere. Also, I have installed SharePoint 2007. I looked there and I do not have the file. I have the wss.xsd filebut not the wss12.wsd. I saw all the posts that imply the file should be thre, but I don't have it. I need to know where I can download it from. Thanks. ...Show All

  • SQL Server constraint view

    Hi, I want to know which table my foreign is reference to for instance I have this statement ALTER TABLE BANK ADD CONSTRAINT BANKING_R_154 FOREIGN KEY ( COM_CODE , ACCOUNT_CODE ) references BANK_GLT I want execute ine select * from information_schema.I_don't_know to get the table BANK_GLT from constraint BANKING_R_154 How can I do this cheers, Alessandro Select * from INFORMATION_SCHEMA.Referential_Constraints RC INNER JOIN INFORMATION_SCHEMA.Constraint_Column_usage CCU ON RC . Constraint_Catalog = CCU . Constraint_Catalog AND RC . Constraint_Schema = CCU . Constraint_Schema AND RC . Constraint_Name = CCU . Constraint_Name Where Table_Name = 'SomeTable' --for a ...Show All

  • Visual Studio Express Editions set error number

    hi all: i am use vc++ express 2005 edition, just one question to ask. i need to set up vc , so it will stop, if there are x number of compiling or linking error. for example, if i set error number to 2, then, if my souce file contain 2 errors, the vc will stop compiling. regards, anru ...Show All

  • Software Development for Windows Vista directshow and opengl

    I have a window setup in opengl and I want to use directshow for avi.the window can be both fullscreen and windowed mode with prefence to fullscreen. do I need direct show to be windowless for it to work in the fullscreenor will it work by just sticking it in a fullscreen already setup for my opengl. and I also so a graphbuilder component for fullscreen doI need that ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. how to apply custom effect to mesh?

    1. I just import tiny.x from directx sdk to my project 2. Just add test.fx from xna to my project uniform extern float4x4 WorldViewProj : WORLDVIEWPROJECTION; struct VS_OUTPUT {     float4 position : POSITION;     float4 color : COLOR0; }; VS_OUTPUT Transform(     float4 Pos  : POSITION,     float4 Color : COLOR0 ) {     VS_OUTPUT Out = (VS_OUTPUT)0;     Out.position = mul(Pos, WorldViewProj);     Out.color = Color;     return Out; } void PixelShader(inout float4 color : COLOR0 ) { } technique TransformTechnique {     pass P0     {      &n ...Show All

  • Visual C# Copying Files

    Hi Everyone, I needed a little help with copying a certain file type from one folder into another. For instance copying all the .dll files from one folder into another . All help is appreciated I know i can use the System.IO.File.Copy to do it but how do i specify just a certain file type not a file Copy Method: public static void CopyDir2Dir( string sourceDir, string desDir, string searchPattern) { DirectoryInfo dirInfo = new DirectoryInfo (sourceDir); foreach ( FileInfo file in dirInfo.GetFiles(searchPattern)) { file.CopyTo(desDir + "\\" + file.Name); } } Usage: CopyDir2Dir(@" C:\dir1 ", @" C:\dir2 ", " *.dll " ...Show All

  • Visual Basic SplitContainer without the splitter

    How do I remove the horrible dotted line that the SplitContainer has when it is selected If I'm not completely mistaken, the dotted line is the focus rectangle. If you don't give any visual clues as to when the splitter is selected, it makes it very hard to use the keyboard to change its position (the user wouldn't get any feedback that the splitter is the currently selected item) The focus rectangle shows up for pretty much every control that can currently has the focus. Best regards, Johan Stenberg ...Show All

  • .NET Development exception streamwriter.writeline

    Hi all, i dont know why this exception occurs can some body throw light tia sahridhayan i checked the following, but still error occurs 1. i checked whether the string value is null or empty string, if so i add a default "NO message" 2. i am doing a concatenation of System.Environment.NewLine inside my logger code is below. wSW.Write(message + System. Environment .NewLine); Message: Server was unable to process request. ---> System.ArguementOutofRangeException Count cannot be less than zero. Parameter name: count at System.String.CopyTo(Int32 sourceIndex,Char[] destination,Int32 destinationIndex,Int32 Count) at System.IO.StreamWriter.WriteLine(String value) at SI.Logger.Web ...Show All

  • SQL Server Snapshot Size Limit

    Hi, Has anyone tried to create and view a snapshot 2 Mb or more in size Is there a rough estimate on the limit before either the server or the client machine that is browsing the snapshot hangs So far from our tests, a 1.4 Mb snapshot loads after 5 minutes, and a 3 Mb snapshot loads indefinitely (so far, it's 2 hours and running, with the client machine's page file being maxed out). And besides reducing the data for the snapshot, what else can be done to avoid this Any information is appreciated. Thanks! Thanks Brian, although I apologize for not being a bit clear in my initial post. Actually, I don't have problems executing the snapshot. It's just that after the snapshot is executed and is "recorded,&quo ...Show All

  • .NET Development Download Zip File from Sql Server

    I have been working on storing pdf documents in to a sql server database and retrieving them. This is all good working great. My users now what to be able to zip files up and perform the same task. Uploading the file and storing into a sql server database==this to is all good. THE PROBLEM: When I run the download on my dev machine I get a dialog to save or open the zip file. And that works but once I deploy the solution I do not get the dialog box to save the file. Popups are not blocked on either machine. CODE: Dim myData() as Byte mydata= odpUser.OpenFileFromDatabase(iDocID) Response.Buffer = True Response.ContentType = sDocType ''this case "application/x-zip-compressed" Response.BinaryWrite(myDat ...Show All

  • Visual C# Forbidden 403 error

    HttpWebRequest webr = ( HttpWebRequest ) WebRequest .Create( "http://en.wikipedia.org/w/index.php title=Wikipedia:Articles_for_creation/Today&action=submit" ); WebResponse response; webr.Method = "POST" ; byte [] bytedata = Encoding .UTF8.GetBytes(poststring); webr.ContentLength = bytedata.Length; Stream rqstrm = webr.GetRequestStream(); rqstrm.Write(bytedata, 0, bytedata.Length); rqstrm.Close(); response = webr.GetResponse(); *****I get a 403 error here***** When I try to run this code, I get a 403 error - is there something with the code which is causing this Thanks Hi, I've just discovered that the problem was server security r ...Show All

  • SQL Server Nullable fields when using SELECT...INTO

    Hi, Could anyone tell me what governs whether a column is set as nullable or not nullable when creating a table using SELECT...INTO. It just seems to pick at random for me! I'm quite sure this is not the case. Is there a way to force a column to be non- nullable I seem to be wasting a lot of time going through and altering the schema so I can use the columns in keys and indexes. Dave Normally the meta data from the original table is retrieved, did oyu check that HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

©2008 Software Development Network