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

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

Rasim_Yilmaz

Member List

C10
Mark Starr
VBCoder13
fermo111
EHoward
RichSide
Luis D. Rojas
Gilles Lafreniere
Chinese KongFu
steve17
mairead
THaines
Vinayak Kamat
micxba
Burtraskkutaren
Dmitry Okonov
blueray
2005User
berndku
aLee89
Only Title

Rasim_Yilmaz's Q&A profile

  • .NET Development HttpListener supported on Windows 2000 or no?

    The docs are confusing.  They say this: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 Platform Note: Service Pack 2 or later is required to use this class which implies Win2K is not supported but then they say this: Development Platforms Windows 2000 , Windows XP Home Edition, Windows XP Professional, Windows Server 2003, Windows "Longhorn Which is it Nevermind.  I see via the IsSupported property on this class that it *isn't* supported on Windows 2000.  Bummer. ...Show All

  • Visual Studio Team System Reports in Team Explorer : 403 error

    Hello~ I'm able to create team project and view the report in the browser /Reports">http://<reportserver>/Reports   and /ReportServer/ReportService.asmx">http://<reportserver>/ReportServer/ReportService.asmx  . But, I couldn't view the report in the team explorer in the VS.NET 2005. -- 403 error happend -- Why does it happen How should I do to fix this problem Help me, please.. Thank you. Hello, The page that does the report rendering is done by the /ReportServer/Pages/ReportViewer.aspx">http://<tfs>/ReportServer/Pages/ReportViewer.aspx part. This is a sample fully constru ...Show All

  • Visual Basic Pardon my ignorance.. Visual Basic ".NET" ?

    I've been out of the development loop for over 4 years. What is this Visual Basic ".NET" Is it a different version of Visual Basic I've seen Visual Basic 6 and Visual Basic 2005. What is the latest version, and how does Visual Basic ".NET" fit into all of this I didn't see a ".NET" version of VB for sale.. Clearly I'm missing something. Any help or links to more info appreciated! .NET is a framework for writing applications, any Visual studio past 6 is .NET by definition. Both C# and VB since VS2002 target the common language runtime, which means that they can use each others cl ...Show All

  • Visual C++ Windows Forms

    Using Visual C++ 2005 Made a windows forms application using Visual C++ 2005, but when i run it I get a console window popping up while my form is running. Guessing one of my project settings is messed. Anyone know which setting is causing the console window to appear when I run my windows form I didn't use the form designer either. You could create a new project (make sure you choose New Windows Forms Application) and move your code into the new project OR Project Properties -> Linker -> System -> SubSystem -> set to "Windows". ...Show All

  • Visual FoxPro SELECT - SQL COMMAND again

    In a situation like this where the first field is of type " C " and the second -- " M " SELECT RTRIM (field1), LEFT (field2,20)... INTO ARRAY arr1 The first function < RTRIM > appears to be ignored (the result has trailing blanks regardless) but the second < LEFT > seems to be doing fine. I am wondering if anybody has similar experience and how such needs should be handled. Greetings Your code should work, only the result is converted to a field with the same type as field1. You can see that it works by adding something to RTRIM (field1) like RTRIM (field1)+'-' for instance.... You need a ...Show All

  • .NET Development how to use MAXSCANROWS=0 in ADO.NET

    There are few extended properties i found from microsoft site in that i came to know using MAXSCANROWS to re-write the Registry Key values TypeGuessRows from default 8 to some other value between 0-16.. How can we write this property in the Connection String Eg: myConnection = New OleDbConnection("provider=Microsoft.Jet.OLEDB.4.0;data source='" & txtXlsPath.Text & "';Extended Properties=""Excel 8.0;HDR=No;IMEX=2;MAXSCANROWS=0;""") is this correct or is there any modification is required I am also very curious as to the answe ...Show All

  • SQL Server Remote Database Deployment

    We have an application using a SQL 2005 database which we need to deploy to a client. The only we can find of deploying the structure and the data is to perform a backup on the source server and a restore on the destination server. Is this really the best/only way to deploy a database I'd appreciate any pointers.   Thanks in advance   Hey you asked for a better way of doing it. Think of the time that it would take to backup and restore a large database. Compare that with detaching it, making a copy, and attaching that copy on the other end. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Sample Framework

    I've been looking over the sample framework (empty project) and I can see a lot of useful things in there that would be great if I didnt have to reinvent the wheel, mostly in terms of handling input and GUI code, but... Even though the sample framework code has a lot of comments, it's still very hard to follow and feels like it's all over the place. I realise we all have different coding styles but I was wondering if anyone has some kind of tutorial breakdown of the way it works so that we can learn from it. Might be usefull to look at the empty project and see what methods are called from there, then g ...Show All

  • SQL Server problem to set properties on a subfolder if no access to the home folder

    Why a user needs to have access to the root to set properties of a subfolder   Details:   A user can manage the content of a specific folder. This user has no access to the home folder (the root). Using the Report Manager, this user is able to browse the content of this folder directly (using ItemPath argument on the URL). But when he selects Properties tab for this folder, he gets the rsAccessDenied error. Giving him the right to browse the root corrects this problem. Thank's Eric We decided that the most secure model for showing the contents of the rep ...Show All

  • .NET Development Mutiplayer game using Remoting

    some body tell me how to handle multiplayers in remoting using TCP channel i mean how i can identify clients on the server side. Don't use remoting for this! It is never designed for outbox connections and suddently not for multiplayer games ...Show All

  • Visual C# Global Object?

    I've got a project (ASP.NET) that utilizes a couple of objects (DataAccess, User, etc.) and what I'd like to be able to do is when the user logs into the website , the User Object would be populated (from the DB based on UserID & Password) with all information regarding the user. Question is, how (or I should say where) do I create this variable so that I can access it from all pages within my project Right now it's just in the BasePage Class that I created: Protected ASI.DataAccess.Customer.SiteUser oSiteUser = null; Then I instantiate it in the page load event. But this fires with every new page, so it basically creates a new oSiteUse ...Show All

  • Windows Forms C# runtime question? (general question)

    I have a more general question:     Has anybody seen ore heard of any issues with the .net runtime as far as disrupting other applications or dll's when installed .  The reason I'm asking is becasue I developed a c# app for my dept and want to install it in about 20 pc's, when I asked IT for this, they flipped over and made&nbs ...Show All

  • Windows Forms No Touch Deployment for files other than assemblies?

    Hi, I've got a simple vb.net windows form app. that consists of two forms and a chm help file.  I want to deploy it over the web.  My first form is my exe that gets my app. running.  The second form is a dll that the first form references.  Both of these work fine from a link on my web page to the exe.  My p ...Show All

  • Windows Forms How to do indeterminate progress bar?

    Sometimes you know when a task begins, and when it ends, but you don't know the increments. In such situations you want to display an "indeterminate" progress bar, which basically means the progress bar doesn't fill from left to right, instead a few segments move from left to right and starts over from left, and this repeats. How do you do such a "never ending" progress bar I have seen it in Microsoft applications, but I don't see a property on the progressbar class to turn this mode on. i need help i want to know how to add the progress bar on my web browser i have built, i added the progress bar, i have ...Show All

  • Visual Basic Reading Files in a Folder

    I have 'combobox1 inside my 'groupbox1' I also have a couple of documents in a folder on my desktop called 'docs' What code do i put in so the combobox lists all the docs that are in the 'docs' folder Imports System.IO Dim desktopDir As String = Environment.GetFolderPath(Environment.SpecialFolder.Desktop) Dim dirName As String = Path.Combine(desktopDir, "docs") Dim dir As New DirectoryInfo(dirName) For Each file As FileInfo In dir.GetFiles("*.doc")     comboBox.Items.Add(file.FullName) Next   ...Show All

©2008 Software Development Network