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

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

korondy

Member List

tbiggins
Ben Weber
kingy0489
CyrexCore2k
MarkFred
Byenary
QuetzalNeTGt
Vishal Kathuria
ALeal
FergusLogic
Gaja
esselstrome
Iain M
grhodes
naskar
NeilG
Tycotrix
vjnfjvbnhjbvgfb
Webprofusion
alivali
Only Title

korondy's Q&A profile

  • Visual Studio Team System Failed team builds

      So i created a project on the TFS, put my app souce in the project and I am trying to build the project so i can associate some web tests with the project. When it goes to build the error is: failed - initializing build failed - build I do notice that in the build summary window that when i try to click the link for the build name i get an error: --------------------------- Microsoft Visual Studio --------------------------- TF42004: Team Build failed to open folder \\jmdev-tfs01\ABTestProject\Console01\Console01_20060105.1 . The system cannot find the path specified.   Any help would be greatly ...Show All

  • SQL Server XMLA and Deadlocks

    I have tested this on the RTM, SP1 and SP1+hotfixes and the problem is the same in all environments. What I am doing is using the "Analysis Services Execute DDL Task" in an SSIS package to execute different XMLA files. These files drop items in Analysis Services and then recreates them. What is happening is that in about one out of three times the package will hang at some stage in the process of running the files, Analysis Services becomes unresponsive and if I try to access anything in it using Management Studio it reports an error about a deadlock. It will remain like this until Analysis Services has been restarted. Note that ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Re-using LPDIRECT3DSURFACE9 as LPDIRECT3DTEXTURE9

    Hi! I have created a texture and as surface as hr |= D3DXCreateTexture( this ->direct3DDevice, ( unsigned int )img.sx, ( unsigned int )img.sy, 0, 0,D3DFMT_A32B32G32R32F, D3DPOOL_MANAGED, & this ->texture ); and a surface as : hr |= this ->direct3DDevice->CreateRenderTarget(( unsigned int )img.sx,( unsigned int )img.sy,D3DFMT_A32B32G32R32F, D3DMULTISAMPLE_NONE,0, true ,& this ->renderSurface0,0 ); I have render into my surface, and I would like to use the result (surface)as a texture of my next pixel shader, as "scatter" is not possible. The only form to work with the results I think is to give them as a texture and ...Show All

  • Visual C# IDE Deletes my code

    Hi, While using the Visual C# IDE to build a somewhat complex form (about 60-65 controls), I added a SplitContainer control to manage the layout of some of my controls.  After a couple of minutes of playing around with the properties of the SplitContainer, the IDE deleted all of my code from the form - ALL of it !  Fortunately, I was able to pull a copy off a backup drive.  I restarted the IDE and started making some more changes to the form, but the second time around I stayed far away from the SplitContainer control, and the IDE deleted all my code again !  Ive lost almost 2 days worth of work. I dont kn ...Show All

  • SQL Server CLR Enabled

    Can anyone tell me what this means and how to fix it I created a stored procedure in VS2005 and did a build. When I went to SQL Server there was the stored procedure but when I run it I get the error.... Execution of user code in the .NET Framework is disabled. Enable "clr enabled" configuration option I changed the 'clr enabled' property to 1 using sp_configure but I still get this error. Thanks Mike Hi. You need to run RECONFIGURE. sp_configure 'something', value go RECONFIGURE go sp_configure 'something' go ...Show All

  • Windows Forms Giving Form/Gui a MAC OS Look/Skin

    how can i give my form and controls a MAC OS X look... want to add a skin support for my app.. any kind of link/help will be useful.. thanks.. There are multiple options for adding skins, if you do a search for "skinnable applications" or similar in google you'll see many commercial products.  Here's a couple examples to do it yourself (none easy though): http://www.codeproject.com/csharp/bmprgnform.asp http://www.codeproject.com/csharp/nonRectangularForm.asp http://www.codeproject.com/dotnet/GraphicalForms.asp here's some button examples too: http://www.codeproject.com/cs/miscctrl/XCtrls.asp http://www.codeproject.com/cs/ ...Show All

  • Visual Studio 2008 (Pre-release) Dlinq Samples description

    The whole Linqsamples application is a complete and excellent practice to examine with detail if you have enough time. All the samples I have tried execute well. Sometimes I find the information very short, just the description of the sample. In: public void DLinq30() { var q = from e1 in db.Employees, e2 in e1.Employees where e1.City == e2.City select new { FirstName1 = e1.FirstName, LastName1 = e1.LastName, FirstName2 = e2.FirstName, LastName2 = e2.LastName, e1.City }; ObjectDumper.Write(q); } How DLINK infere that "e2 in e1.Employees" must use the internal Employees relatio ...Show All

  • Visual Basic Finding the Computer Id number

    How can I access the computer Id number from the Computer Is it even possible I want the Number Displayed in the System Control Panel under the User name and computer name. thanks Here is and example I found using a month back. http://www.programmersheaven.com/2/Les_VBNET_15_p1 ...Show All

  • Visual Studio Crystal Repoirt

    Do Crystal reports in vb2005 support Parameters as it appears to ignore them from my Upgrade. ...Show All

  • Windows Forms DataGridView adds two new rows on 'escape'

    DataGridView control is adding two new rows when I press escape key. Following is the scenario:   I have a hidden column in DGV.   1. I enter some characters in first column and press tab.   2. Now when I am in second column I press escape without editing contents --> This adds two new rows (so after escape there are total three rows in my DGV)   I have handled following events _CellEndEdit, _DataError, _DataError, _CellContentClick   Can anyone help me     Thanks, Amol.   What ar ...Show All

  • SQL Server connection string

    In a VB6 app, I am using the following connection string to connect with a SQL Server 2005 database: strDbConn = "Provider=SQLOLEDB;Integrated Security=SSPI;" & _ "Persist Security Info=False;Database=" & strDbName & ";" & _ "AttachDBFileName=" & DbPath & ";" 'Data Source=.\mssqlserver;" I am getting the following error message: Error No. -2147467259 [DBNETLIB][ConnectionOpen(Connect()).]SQL Server does not exist or access denied All help appreciated. SQLNCLI is the Bative Client for SQLServer which ships with the Native Client from SQL Server. You can still use the S ...Show All

  • Microsoft ISV Community Center Forums VBA Excel Module opening Access DB with Recordset

    Here is the code: Dim cConn As ADODB.Connection Dim rs As ADODB.Recordset Dim sSql As String sSql = "SELECT Table1.Field1,Table1.Field2, Table1.Field3 FROM Table1 WHERE Table1.Field4 = Yes" Set cConn = New ADODB.Connection Set rs = New ADODB.Recordset cConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source='\\path\files\folder\database.mdb'" Set rs = New ADODB.Recordset rs.Open sSql, cConn I get the same error on the rs.Open statement every time: "Run-time Error '-2147217904 (80040e10)' No value given for one or more required parameters" Any thoughts Thanks, J I se ...Show All

  • Visual C# writing images from SQL in a table...

    Hi, I would like to know if there is a way to print in a html page a table with 4 images, and it's description queryed from SQL Server... Like, I have already a page, and in the body, I have <% response.write(table) %> And in my .cs I insert all html....and together with this html I need to put the image !!! Thanks what you'll need to do is make additional http requests to another file that will retrieve the binary from SQL Server, and stream it back to the client. That's the way of the image rendering in web browsers. ...Show All

  • Visual Studio 2008 (Pre-release) WPF DataTrigger and Enums?

    I'm using DataTrigger in that way: < DataTrigger Binding = " {Binding Path=Source} " Value = " 1 " > < Setter TargetName = " tbSource " Property = " Foreground " Value = " Red " /> </ DataTrigger > But what do I have to use as value when my Binding Source is an Enum I tried its name e.g. AvalonApplication1.Status.Online and its value 0,1,2 a.s.o. but nothing worked :( Any hint for me I think you forgot the mapping:   < Mapping XmlNamespace="CodeMapNS" ClrNamespace=" WindowsApplication1 " > <Page x:Class="MainPage"     xmlns=" http://schemas.microsoft.com/winfx/avalon/ ...Show All

  • Visual Studio Fail clearing directory

    I fail in doing a very simple task. In the beginning of a target I would like to make sure that the output directory is empty. I do this with the below 2 lines that removes and creates the directory. < RemoveDir Directories = " $(OutputPath) " Condition = " Exists('$(OutputPath)') " /> < MakeDir Directories = " $(OutputPath) " /> In some rare cases it only removes the directory, but seems to forget to create it again. By Task later crashes when I try to write to the directory. Any suggestions Can you send us the output you see when you get the crash Also, try running your script with ...Show All

©2008 Software Development Network