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

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

cheekydevill

Member List

aurora123
SaurabhKhurana
EddieMu
Deutschland vor!
Vincent Reynolds
Jon Langdon
Saqib Barlas
William Bain
NitinP1
Falken359
Hintshigen
iPrakash
Andrey Egorov
Richard_Mutschler
msx86
Palkupz
almor
JJ Kane
JeffCurrier
DesperadoMike
Only Title

cheekydevill's Q&A profile

  • Visual C++ Conditional Compilation - STDC Requirement

    Programming Language: C/C++ // issue regarding Microsoft Supplied Development Headers Microsoft Visual Studio .NET 2003/Vc7/ (Include/*.h) and (Include/sys/*.h) header files have entries like: #if !__STDC__ ... various definitions ... #endif Documentation says that the expression "!__STDC__" must be numeric. Invoking the compiler with "/D__STDC__" defines the macro __STDC__ to be the value (1). What is ...Show All

  • Visual C# dataset table row into an arraylist

    How to put a list of rows from dataset table into an array I tried with this code but it doesn't help. ArrayList arrayList = new ArrayList(); foreach (DataRow dr in db.dataSetUsers.Tables["Functions"].Rows) { arrayList.Add (dr["Name"]); } Hi, Simplest option..Just call a Select on the DataTable with a blank string for filter. DataRow []arrDataRow = null ; arrDataRow = db.dataSetUsers.Tables["Functi ...Show All

  • Visual Studio Express Editions .HasChanges and .GetChanges not working?

    I have a program where I have a timer and on the ticks I want to check to see if a dataset has updated. I know the dataset is updating but the event is not firing. Can someone please show me what I'm doing wrong Below is my code. Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'TODO: This line of code loads data into the 'ChatroomlogDataSet.chat' table. You can move, or remove it, as ne ...Show All

  • Visual Studio 2008 (Pre-release) Compact Framework Support?

    We currently use .NET Remoting for our inhouse line-of-business applications. The main problem with .NET Remoting is that is not supported in the compact framework (which is really a compact framework problem not a remoting problem, remoting rocks!). This keeps us from developing applications that integrate with these systems. Will Indigo/WCF be supported from the compact framework Hi Jon, we don't currently have WCF for CF, but you can wr ...Show All

  • Visual C# Where do I declare variable which can be accessed by the whole project?

    Hi, I have couple of forms and couple of classes in my Project. Where do I need to declare variable for my project so any part of application can access that variable I used to do in modules in VB6 but have no idea how to do it in c# It is not a matter of where you’d need to declare the variable but instead how you declare it. Anywhere in your app if you define a public field, property, method as ...Show All

  • Visual C++ porting vc++ 6.0 user exit to vc++ express edition

    Hi, I want to compile a user exit that was developed using vc++ 6.0 with vc++ express edition. The compile works fine, but the application crashes. My 'trial and error' experiments with linker options, especially with manifest files, resulted in much confusion... The app itself is written (not by me) using vc++ 6.0. The user exit (written by me) is a simple win32-dll where some math is done (no MFC at all, simple standard c++ code). The er ...Show All

  • SQL Server SQL Server 2005 Express and ASP

    Hi! I have an ASP web application based on Access. I have DSN defined in ODBC Admin. I decided to upgrade to SQL Server 2005 probably Workgroup edition. Right now I am trying it with Express. I thought it will be fairly easy, because I was going to define another DSN using SQL Native Client and use it without changes to my ASP code. Not so easy. I can configure DSN and it tests fine in ODBC Manager. In ASP I am getting errors like Microsof ...Show All

  • Visual Basic Checking for a previous instance

    To check for a previous instance of your apllication (App.PrevInstance in VB6) the help file for '05 suggests you check the "Make Single Instance Application" box in the project's properties and then add an event handler for "Me.StartupNextInstance."   This is great if you're using the application framework and starting the project with a form (I don't think a "Sub Main" has a 'me' object does it ).  Anyway, I'm not using the app ...Show All

  • SQL Server Is it possible to create reports in SSRS 2005 by mining data in SQL Server 2000

    All, I have found a lot of comments on the net but nowhere was I able to have a direct answer to this question: My client has a complex database deployed on SQL Server 2000. He wishes to create reports based on this data using SSRS. Another division of the same company just implemented SQL Server 2005 and SSRS 2005. I wish to know if SSRS 2005 is able to create reports based on data from SQL Server 2000 Thank you. S ...Show All

  • Visual Studio Team System Another Initialization failed for plugin(s): "Microsoft.Pcw.wss"

    i got this when trying to create my first team system project, attached is my creation log. any help greatly appreciated! Cheers, Craig 07/20/2005 08:44:49.130 | Module: ELeadServiceMediator | URL for eLead web service retrieved as " http://dev-test1:8080/bisserver/EleadWebService.asmx " from the registration service | Completion time: 0.0200288 seconds 07/20/2005 08:44:51.023 | Module: ELeadServiceMediator | eLead web service proxy constructed ...Show All

  • Visual Studio Team System Project Creation Wizard Extensibility

    When creating a Project Creation Wizard, is it possible to have it store a string value within the project For example the PcwTEExample from the SDK has an PCW that asks the user to enter a couple of web addresses. these addresse are saved to an external xml file it would seem. Would it be possible to store these inside the project, so that the value wasn't machine dependant Code examples would be much appreciated. This sounds very m ...Show All

  • Windows Forms ellipsis button on a DataGridView cell

    I know I am missing something simple. . . I have an unbound column on a DataGridView. I want it to display some data derived from a non-visible key field of the dataTable the Grid is bound to. I want an ellipsis button on the text box, so the user can open a form to define the data that wll be set in the key field, then I will update the Unbound column. Does that make sense am I going about this the wrong way You ...Show All

  • .NET Development Problem with ThreadAbort in App_Web_dlt0v2t4.dll

    Hi, I faced a problem in ASP.NET 2.0 where the application is retrieving data via OLE-DB and then suddenly it starting throwing TheadAbortException. Even though the application continued, but it seems a problem in the future at the back of my mind so if anybody can help with the below questions it will great. And the following is the Output from Output and call stack Call Stack: > App_Web_dlt0v2t4.dll!login.initialize(Object sen ...Show All

  • Visual J# Maybe stupid question but: How to get float out of System.Single?

    What is the method to extract value from System.Single to standard float variable (defined float x = ) when using J# This sounds so trivial that I must have overlooked something when I did not find the way I have to use System.Single when I'm communicating with certain COM controls. This question is better suited for the J# forum. Please reserve the Base Class Library forum for questions related to the BCL i ...Show All

  • Windows Forms Detecting If a network file exist

    I currently run a service that tries to detect if a network file exist using the System.IO class.  It works perfectly when the file is local.  I have a drive mapped on the computer, but it still returns false when reading from the&nbs ...Show All

©2008 Software Development Network

powered by phorum