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

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

spillai

Member List

antoan
JCMeyer
RickHolc
JSerge
KoKoNassar
rumrunner
Chris R Jones
Jirka Nouza
LynnOoi
wwei48
sacrosancttayyar
nataliyaTT
Kyaw.
John J. Adams
Sebastien Donche
lucho16209
allenmpcx
Garon Line
Maxwell0star
pyrodouthat
Only Title

spillai's Q&A profile

  • SQL Server server problem occurred during deployment of vb.net application with MSSQL db

    I use .net 2005 and server, the application i developed connects to a locally hosted mssql db, I want to deploy the application together with the db to client machine. when i installed the application on the target machine, and run the application, it gave me this message : "an error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 - could not open a connection to SQL Server) I didn't quite understand this message. because in the "S ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Direct 3D

    How to use particles in Direct X Manager   Minh wrote: They seemed to have removed the PointSprites sample from the June SDK. I remember it was in both the managed & unmanaged sides prior to that. I'm not sure why the decision to remove samples while not replacing them with something similar. The PointSprite sample was removed a while ago.  For those interested in particle systems in Direct3D, you might search the web.  A quick trip to my favorite search engine returned some possibilities: http://www.gamedev.net/reference/list.asp categoryid=72#225 http://www.codesampler.com/dx9src/dx9src_7.htm Note, howe ...Show All

  • Visual Studio Express Editions Cannot Access Free Registration Materials via Thank-You Emails

    Hi everyone. I'm trying to access the free downloads that come with registration, but I only see the Web Developer downloads listed. I don't see the icons, components, or book that come with C#. I assume they would all be listed on one page, but they aren't there. How can I find them Thanks, John Salerno P.S. I don't understand how to download what *is* there either. The link to the Web Developer book says it's a pdf, but when you download it, the file is an aspx file that won't do anything when opened in WD. When opened in an internet browser, it just tries to download itself again. Maybe the site will be updated and fixed tomorrow. ...Show All

  • Visual Studio Express Editions Newbe question, incrementing a value

    I'm trying to increment a value every time button_1 is clicked. Can someone tell me why the following code doesn't work. Thanks in advance. Ken Public Class Form1 Dim number As Integer = 0 Public Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click number = number + 1 End Sub Ken, I do not see any errors in you code as listed. You might try adding this: number = number + 1 MsgBox("Number = " & number.ToString) ...Show All

  • Visual Studio VSS extremely slow over internet

    hi. i have a setup with several local clients to the database and a remote client that is connectected over a 2mbit dsl line. now, i know that 2mbit isn't _that_ much, but is it really necessary for a 'get latest version' to take up to 20 minutes the ss database is only 10 mb in size... what options do we have in order to make this thing a little faster WM_THX thomas woelfer http://www.die.de/blog Hi, That comparison has been posted on this forum, too, but it seems that you have to read it "cum grano salis" http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=21541&SiteID=1 Alin ...Show All

  • Visual C# no My object in c# ?

    i saw a demonstration of the My object in visual basic.net i think this is not present in c#. is that right it's a pity it seems handy. Same here, guess I should have tried it myself before posting. Sorry. Another google came up with That : http://blogs.msdn.com/danielfe/archive/2005/06/14/429092.aspx ...Show All

  • Windows Forms Listview with ContextMenu problem

    Hi everybody, I have a context menu associated with ListView. I have some predefined height for the listView. For a particular row, on contextmenu popup I am checking the underlying row's value and based on that I am showing the context menu items. Now as I have predefined height for the ListView and the contextmenu is associated with the listView. Even if& ...Show All

  • Windows Forms Open .exe from network

    Hello, I have created a simple data entry application that I would like the users to open from the network. I have tested this on another machine besides mine and was able to get it to work fine. I'm just wondering if there is some more info on this type of thing   I have setup a deployment project, because if I'm not mistaking, the  ...Show All

  • Software Development for Windows Vista simulating workflows

    Hi We are a chemistry research company building solutions with Microsoft technology. We're interested in MS's Workflow framework. My specific question is: If you build a workflow with the workflow designer in VS 2005, can you run or debug the workflow (visually ) In other words, if my workflow is a document that flows from INPROCESS to READYFORSIGNATURE to SIGNED to COUNTERSIGNED to READYFORARCHIVE, will there be a way to "simulate" a real run of the workflow thru the workflow designer Thanks! If you want to display the path of execution you can do that by building on top of the tracking infrastructur ...Show All

  • SQL Server Cube aggregations stop unexpectedly

    I am trying to design agreegations for all the partitions of my MOLAP cube. The aggregation calculation process starts but stops at 2% performance (about 20MB). I have tried to re-argregate so many times by selecting all the options :- Estimated Storage reaches (100 MB) / Performance gain reaches (30%)/ I click Stop But, in all these cases it just stops at 2%. I cannot understand why And its not one particular partition. Rather all the partitions (eight of them) stop at 2%. There is enough free hard disk space as well (27 gb) Any, clues could be of great help. Thanks. The problem is that no ...Show All

  • Smart Device Development DateTimePicker appears above msgbox when msgbox opened from ValueChanged event

    Hi, I've got an smart device application that when a value is changed in a datetimepicker needs to show a message box if the value selected is less than another date.  The problem is in both the valuechanged and textchanged event handlers for the datetimepicker if i get the messagebox to open it is shown behind the datetimepicker calendar and the calendar will not close.  Has anyone else managed to work around this The code looks like this Private Sub dtpEstMaturityDate_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles dtpEstMaturityDate.TextChanged          &nb ...Show All

  • Visual C# help with string!!!

    ok i have a project, in my poject  i have a client and a server the client send data to server over tcp/ip on a socket My data arrives as a bytes and then they are converted to chars.. Here`s the code a little bit CSocketPacket theSockId = ( CSocketPacket )asyn.AsyncState; //end receive... int iRx = 0; iRx = theSockId.thisSocket.EndReceive(asyn); char [] chars = new char [iRx + 1]; // decodes the bytes System.Text. Decoder d = System.Text. Encoding .UTF8.GetDecoder(); int charLen = d.GetChars(theSockId.dataBuffer, 0, iRx, chars, 0); System. String szData = new System. String (chars); c ...Show All

  • Visual C# access database which located in different PC

    Hi, i write a program with C# and debug it with Web Matrix. I have problem in accessing to the particular database. the database was store in a shared drive (in another CPU). So how do i write the connection string i cant manage to do it.. >> conQues = new OleDbConnection("PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA Source = \AvagoHR\Staffing\" + Server.MapPath("AvagoHRSystem.mdb")); << Without actually knowing the path to the file, I can't tell you exactly, but here's an attempt: Assuming "AvagoHR" is the server, that should be written as " \\AvagoHR ". And Server.MapPath onl ...Show All

  • Visual Basic VB.NET ISAPI Filter / IHTTPModule

    I am trying to create an ISAPI filter using VB.NET. (In IIS, right click a website, click properties, click the "ISAPI Filters Tab). Maybe I am barking up the wrong tree but this is what I want to do. I want to filter ALL requests to a website (including images, pdf, word docs, EVERYTHING) and then perform authintication on it. From what I have found, IHTTPModule is the way I want to go. I do not want to create an ISAPI Extension because I do not want to map extensions to the aspnet_isapi.dll because I do not know what extensions might exist. I have found a few example of the IHTTPModule but none tell me everything that I need to know l ...Show All

  • Visual Studio Report Designer and Report Item

    Hi all I'm very new to Reporting Services in general. I have played with some samples and even successfully created my own custom Data Processing Extension.  Though with some troubles, I managed to published some reports to the Report Server using this Data Processing Extension. However, I wonder if I can reuse my extension when adding a Report Item in a non-Report project in VS 2005.  For example, I have a C# project and it uses the Report Server Web Service to publish rdl files to Report Server.  Now my question is how to generate such rdl files   I know there is a sample of how to programmatically generate rdl files.&n ...Show All

©2008 Software Development Network