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

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

Rogue1

Member List

Daisycutter
Scott L
Star Green
valeneo
de_henny
Sondra Webber
LHERMITTE
Daliah
Randhawa
George S.
Kurt Yue
Bill R.
Shinigami
V VICTOR
Perro
Ryo M
Ian Bavey
Lex1957
GreatMinds
tatero
Only Title

Rogue1's Q&A profile

  • .NET Development bug in Int32.Parse

    In Visual Studio 2005, the following throws a FormatException and it definitely shouldn't.  The same code works fine in Visual Studio 2003. This is the version that I am seeing the problem, running on XP:     Microsoft Visual Studio 2005     Version 8.0.50727.42  (RTM.050727-4200)     Microsoft .NET Framework     Version 2.0.50727     Installed Edition: Professional int x = 0; x = Int32.Parse("0")        // throws FormatException x = Int32.Parse("00")       // works fine x = Int32.Parse("000") & ...Show All

  • Visual Studio Team System TFS Beta 3. When?

    When TFS Beta 3 will be released I read Somasegar's blog that points TFS Beta 3 will be released simultaneously with VS2005 RC1. At this time VS2005 RC1 already is released but TFS Beta3 is not. new blog, TFS Beta3 will be out about 14 days out... still in September ^^ http://blogs.msdn.com/rickla/archive/2005/09.aspx Thursday, September 15, 2005 5:37 PM Currently I think we're about 14 days out on those bits so we're very close. ...Show All

  • Visual FoxPro i use ado access MS Access mdb,i need some help

    hello all I use mdb as my app's DB file, when my app(exe) run, a ".ldb" file the name as same as my DB file appears in my app current folder,when i exit the app the ldb file still stay there ,so I wrote the code  to del the .ldb file when my app exit. but i open the app(exe)  it appears again . below is what i want : Now i just want this ".ldb" stay in windows temp folder not in my app(exe) current folder. Is there any way can do this. thanks   http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=191930&SiteID=1 ...Show All

  • Software Development for Windows Vista Custom Activity Approach

    I am working on a custom activity that will provide the following functionality: 1) Allow user to enter a usercontrolurl as a property 2) Allow user to enter a resource/roll as a property 3) Execute invoke method and pass the above parameters 4) Execute event sink to wait for the user to complete the page I have finished 1-3, I am stuck on 4. How could I make my eventsink trigger based on a identifer that was sent to the host in step 3, instead of a predefined event that was defined in the interface service at design time Thanks in advance. Mardo Mardo, There isn't a way to dynamically choose which event will be listene ...Show All

  • SQL Server Unable to access MSDB on Integration Services

    Hi all I have a little problem with my IS Server. I am using Windows Server 2003 64bit and IS 9.0.1399. I have two named instances for databases. I am able to connect to Intergration Services just with the Servername (no Instance Name) and I see the folders in there. When I try to open the MSDB Folder (under "Stored Packages") I get the following exeption: "Failed to retrieve data for this request ...." and Additional informations: "Login timeout expired ....." I am of corse administrator, so permission will be ok ... Any ideas Thanks for any comment!! Best regards Frank Uray ...Show All

  • Visual Basic How do I navigate to a folder and capture the path?

    How do I navigate to a folder and capture the path I've searched the documentation and all options seem to require you know the path in advance. I'd like to have a button on a windows form that allows me to navigate to a folder and capture the path to a string. Is this possible dennist685 edit:  is there also a way of capturing the properties of a file by selecting it It's very easy to store a path in a string once you know what the path is. dim a  as string = path There are several way to get file and directory attributes. Check out the Fileinfo class and also at times I use the microsoft scr ...Show All

  • Windows Forms AppUpdater Not Working

    Anybody else had any troubles getting it working   I've got the folder in IIS set to allow directory browsing, but after AppUpdater.DownloadUpdate() is called, I get this error... 5/10/2004 6:02:47 PM:  UPDATE FAILED with the following error message: System.Net.WebException: The remote server returned an error: (501) Not Implemented.    at Microsoft.Samples.AppUpdater.AppDownloader.Download() &n ...Show All

  • Visual Basic Object design question

    In my situation, I've a header table and a detail table. Naturally, I create objects for each them let say Header and Detail. In Header object, I need to hold a number of Detail objects. So, I create a collection object of Detail. The collection object is inherited from BindingList(Of Detail) as I need to data bind it later on. I would like to know is that a common or good design If not, what's the better way The reason that I've this question is because I found that I need to make a search function for the Header now. So, I think I need to create a Search object and the search object will contain a collection of Header objects. The probe ...Show All

  • Windows Forms DataTableAdapter Update

    Hi, I tried the following. I added a SQLExpress Datafile to my app. Therein a simple table and then I built (with the desinger) a DataSet. After draging one Edit to my form and databinding it I can change the values in the table of the dataset. With EndEdit() it marks the row as modifyed. Till now it works fine. Now to the update. I can iterate through the modifed rows and use the generated Update(Field1, Field2, OriginalKey, NewKey) method. The rows are marke as unchange, the data is changed in the SQL Table. When I try the Update(DataSet) or Update(Table) nothing happens. Only in the sourcefile of my Dataset 2 methods are called (more ...Show All

  • Windows Forms Any problem with using nvarchar field as primary key for a small table?

    Hi, i'm developing a Winform Application. There is a small table (which contains no more than 1000 records anyway) that I need to use string as primary key. Given that each string is absolutely unique, is there any problem to do this I don't care about performance problem because this is just a small table and it is not used regularly. Actually, I'm thinking about if it is used in different collation of SQL server or anything relating to localization and encoding, will it cause any trouble in string comparing Is it enough to define this field as nvarchar so that unicode will not cause any problem I am not particularly familiar w ...Show All

  • .NET Development .NET 2.0 Framework overriding .NET 1.1 Framework for apps written for .NET 1.1

    Hello It appears when the CLR is loaded it always loads the latest version of the framework, since it makes it so hard for me to debug COM+ applications written in .NET 1.1 with 2.0 installed side-by-side. How can I have it run the 1.1 CLR instead of the 2.0 CLR. Is this even possible Will I be force to uninstall the .NET 2.0 Framework The application is not in a position at this time to be rework to fit the .NET 2.0 Framework. Thanks for your help... You'll need to use the .exe.config to force the entry point of the application to use the v1.1 runtime.  So if your Delphi app is delphi.exe, you'd want t ...Show All

  • Visual C# Batch processing

    Hi I heard "windows workflow foundation" provides the Batch Architecure. If any body have the code and sample in batch processing pl send it.... Thanks in advance ravi It looks like all you need is the sort of functionality offered by any batch processing software, including the one built into SQL Server. Why would you want to consider a cutting edge tool to do something that has been around for decades ...Show All

  • Windows Forms Creating a shape for a window

    I know how to make a window a certian shape and dissable the title bar but how do you allow it to be moved in the same way as a normal window.  Like lets say i make a window that is shaped like a cd and it has no titlebar but i would like to click anywhere on the cd and move it on the screen i agree ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Multiple objects

    Hi all, If I need let us say 10 objects that are doing different things (one is rotating around the z axis, one is rotating around the x axis, another one that is moving in the y direction...and so on). Can I put all objects into a single vertex buffer or do I need to make 10 buffers for the 10 object If you know of any tutorials that deals with this subject you are more than welcome to give me a link to that. thanks, Anders You can put them all in one vertex buffer if that suits you, or you can create 10 different vertex buffers... For such small numbers it won't really matter, but as you scale up ...Show All

  • SQL Server cannot connect to sql 2005 with management studio

    Hi , I install sql 2005 CTP but cannot connect to the server with management studio installation was successful and was named instance and under local system account in event viewer mssql service is running ok, I see even it connects to master db I can start and stop server with my old sql agent 2000 and I see only 1 error saying in event log: The SQL Network Interface library was unable to register SPN. Error: 0x54b. I  have for OS 2003 server running on my laptop :-) any help thanks just ZoneAlarm firewall was too good - it works fine now ...Show All

©2008 Software Development Network