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

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

AhmetBolac

Member List

ommy
Sumek
myNameIsRon
Futzy
BillAtP.A.S.
dzn
Ripsin
Johnny Aywah
mg123
ToreL
michielonline
jepherz
KamranAmin
Tomáš Pajonk
Rur
#LS
Mike at MSB
itmatters
Ronan_g
Chau Tran
Only Title

AhmetBolac's Q&A profile

  • .NET Development csc user rights

    What user rights does csc (the c# compiler) require in order for it to run properly (create files) I know, silly Q. But I am trying to do something for a lecturer of mine. Basically he has (dont know why) apache service. He is making an online editor where the learner types in C# code, when "submitted" it will compile it and run the code. Thing is, he obviously does not want the user account to be under admin or power users. The csc shows a "Could not create file" type error when running under a local account which is a member of vs debuggers and users as well as aspnet. If we give the user account power users group - it compiles fine and ...Show All

  • Visual Studio Express Editions referencing files in application dir

    Hi, Some help please I have the following line of code which sets the path to the xml file Dim datafilepath1 As String = "c:\settingsdata.xml" In VB 6 I could use the folllowing so that the path to the file will be in the directory where the application files reside so I don't have to worry about where the program resides on the computer. =App.Path & "\" & "settingsdata.xml" I have tried the folllowing but the path seems to have invalid characters = variabletext.My.Resources.settingsdata Try: = AppDomain.CurrentDomain.BaseDirectory & ...Show All

  • Visual Studio Express Editions how to test snippets of code

    hi, I'm new to VC++ express edition. I just want to know that, if I have a snippet of code and I want to compile it and run it. How can I do it with out making a full project. is there any way to compile and test short programs. This is not possbile through the VS2005. Nevertheless, that is something that we are considering and currently investigating. Thanks, Ayman Shoukry VC++ Team ...Show All

  • Visual Studio Express Editions How to: Multiple tables of a DataSet in an XML-file

    Hi all, I've created a DataSet and use xml-files as my database. The principle is outlined in this article: http://www.devx.com/dotnet/Article/28678 So for every DataTable I have an XML-file containing the data for that table. If the dataset contains a lot of tables I also get a lot of XML-files that way. I've found examples of reading/writing the complete dataset in one file and reading/writing datatables on a per file basis. Now I wonder: Is it possible to store multiple tables of a DataSet in one XML file E.g. Store the large data tables in seperate files and store the small tables in one file All members of the same ...Show All

  • Software Development for Windows Vista WF and WSS (Windows Sharepoint Services) 2003

    Hi, I have to make a document's workflow that host in Sharepoint 2003. Can I use Windows Sharepoint Services 2003 with WF If not, then, must I use partner products like K2.NET Thanks in advance Ignacio You can use WF with pretty much any current Microsoft technologies -- it's not so much a 'is it possible' so much as it is a 'how much work is it.' You might consider hosting WF in a windows service on your host machine that receives messages from a document library event handler. You can also add smart doc capabilities to the documents that communicate with the WF windows service as well ...Show All

  • Windows Forms Try powerful .NET reporting on line!

    9Rays.Net apprises of Report Sharp-Shooter Live Demo now available. It nicely illustrates some basic features of Report Sharp-Shooter while used in ASP applications for report previewing via Web.  Using Report Sharp-Shooter on the Live Demo page, you will see the final results of generating reports of different types and export the final documents into the most widespread ...Show All

  • Visual C++ MFC CDaoDatabase Class upgraded or not between c++ 6.0 and MFC(7.1)

    I'ld like to know the reason why an old c++ source code attempting to connect via the CDaoDatabase MFC class to an Access 2003 database was throwing me this connection error : "Format de base non reconnu / Unknown database format". Furthermore, the fact that I rebuilt the source code under Visual Studio 7.1 2003 has resolved this problem... Is it due to an upgrade of MFC libraries between these 2 versions of IDE oder is it due to an improvement of the C++ compiler Thanks for your comments... This forum is for C++ language issues, not database programming questions. I doubt that the C++ compiler was the cause ...Show All

  • .NET Development VB.Net and Access - running a stored query, putting it in a dataset then updating it!

    Hi there. i am very new to vb.net and am using a simple MS Access Database. i have a table with user names in Access and a stored Query in there which will pick out the username and password if correct. In vb i have a simple logon form which should get the user's input in the username and password text boxes, then it calls the stored query in Access and checks the information for a correct user. Once it has done this it then should update the dataset and the database table with the current time for their logon and set a value to 1. It doesnt and i need some help and possible explanation on why it does this ! ! here is the cod ...Show All

  • Visual C++ Unmanaged / Managed Code Integration

    I know for alot of us developers it would be nice to have a forum for integration between legacy c++ code and new managed c#. Or vice-versa (calling managed code with legacy code)....... Good idea If you are looking for more information on C++/CLI, I put together a list of resources back in January at: http://dotnetjunkies.com/WebLog/jhaley/archive/2005/01/18/45686.aspx Unless you are looking at production code right now, I wouldn't suggest using the current version of the __mangaged extensions (but if you have to, you have to).  There is A LOT of new stuff in C++/CLI. The most current l ...Show All

  • Visual C# Toggle Button

    Hi, I am trying to create a toggle button in Visual C# but I do not see a menu for that except under toolbar button option. Is there a way to create create a toggle botton just by itself Any help will be appreciated. http://www.akadia.com/services/dotnet_user_controls.html includes a quick example of a basic toggle button (inherits from button and adds a but of functionality the example uses colors to toggle but other methods can be used as well). Cheers, Greg ...Show All

  • Visual Studio Add-in TextEditor with syntax coloring and content assistance

    Hi all! I have a big and very urgent problem, and I need Your help: I need to make an add-in to Visual Studio .NET. It should be a simple editor, with syntax coloring and content assistance. The problem is I don't know how to start. I can't find anything like TextEditor class or something like that.. I think that there should be some class, like TextEditor, which should use something like RuleBasedScanner, for detecting specific token in text, and changin their colour. If someone doesn't understand me, let's say that I need to make an TextEditor, for some new programming language, with syntax coloring and content assistance. How to do t ...Show All

  • Visual Basic Prefilling a textbox with the contents of a file

    I am attempting to prerefill a textbox with the contents of a file. When I set Me.RichTextBox1.Text = My.Computer.FileSystem.ReadAllText("C:bob.txt") It gives me an error, but if I write Me.RichTextBox1.Text = "Any old text" It works... Is there anyone who can enlighten me on this Steph Do you get a Fil Not Found exception I see in your code that you put C:bob.txt as the file name. This does not point to a file on your C Drive's root dir named bob.txt. It points to a file in your program's root dir name bob.txt. If you want it to read the file from your c drive's ...Show All

  • Visual Studio Team System Problem creating a new Team Project

    I have seen similar posts on dual server setups, but we are using a single server for TFS.  The error is: Error:  TF30004: The New Team Project Wizard encountered an unexpected error while initializing the Microsoft.ProjectCreationWizard.Reporting Plug-in. Explantion: TF30171: The Microsoft.ProjectCreationWizard Reporting Plug-in used to create the new team project could not be initialized and returned the following error: TF30222: The New Team Project Wizard could not find the data source TfsOlapReportDS on the SQL Server Reporting Services server myserver.  What do I need to do on a single server set up to correct t ...Show All

  • Visual C++ service not starting???

    i am migrating a module form vc98 -> vc2005. the executable is working fine in the vc98, the executable is background service. when the same code is migrated to vc2005. it is producing the executable. but the service is not starting. there are some evenlogs, saying 1. couldnt register the class objects 2. incorrect function. ************************ hr = _Module.RegisterClassObjects(CLSCTX_LOCAL_SERVER | CLSCTX_REMOTE_SERVER, REGCLS_MULTIPLEUSE); if (hr != S_OK) { LOG_E_WIN32_EVENT_0(hr); LOG_E_GENERAL_EVENT_0( RERR_OLE_RCS32_DISP_SERV_REGISTERCLASSOBJECTS_FAILED ); } ************************ ...Show All

  • SQL Server Problem installing SQL Express

    SQL Server 2005 Setup has detected incompatible components from beta versions of Visual Studio, .NET Framework, or SQL Server 2005. Use Add or Remove Programs to remove these components, and the run SQL Server 2005 Setup again. Loaded DLL:C:\WINDOWS\system32\msi.dll Version:3.1.4000.2435 Product "{2AFFFDD7-ED85-4A90-8C52-5DA9EBDC9B8F}" versioned 9.00.1187.07 is not compatible with current builds of SQL Server.Expected at least version: 9.00.1399.00 I used Add/Remove Progs and used the list in the order suggested to remove all beta versions of VB, SQL, .NET and etc. Nothing is listed. I do have VB6 PRO. I have looked for d ...Show All

©2008 Software Development Network