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

Software Development Network >> Øyvind Habberstad's Q&A profile

Øyvind Habberstad

Member List

Jtbingham
Anshul Tandon
Mick Lang
marco.ragogna
9999999999999999
RaptorTech
Eric Bergman-Terrell
KonstantinR
sqlster
clecke
Zealousman
Tom_Miller
Suman_g
Tony Hudson
Jian Hu
MMV2007
lbGURU
etorres
David Hearn
Brent Williams
Only Title

Øyvind Habberstad's Q&A profile

  • Visual C# But customErrors-mode IS "Off"!!!

    This is not the first times this happened... I am developing and debugging a website. I can run the site from Visual Web Developer without problems, there are no errors. However, whenever I want to see the result from a "remote computer" (or simply through another browser using the URL), I get a "censored" error message. On this page I am requested to set the CustomErrors-mode to "Off" in the web.config file if I want the error message to be visible remotely. Done this. But the problem persists! What is going on! < xml version="1.0" > <configuration xmlns="http: //schemas.microsoft.com/.NetConfiguration/v2.0">  &nb ...Show All

  • Windows Forms Saving datatable to database

    I am working on an inventory application using the .net compact framework and Visual Studion 2005 I have created a dataset with the following tables from a SQL Mobile database tblItems tblUPC tblSalesCallItems I've also created two additional table adapters by joining the above tables with a query viewSalesCallItems viewItemUPC The portion of the application I am working on right know consists of two forms: the first form has a textbox, OK button, datagrid, and a save button. The user types an UPC in the textbox, then clicks the OK button. This brings them to a second form (item details) where they can add additional information abo ...Show All

  • Windows Forms Any 3rd Party 'Compile As win32"

    Does anyone know if any products exist that let you compile as "windows forms" application as a "Win 32" application. I've heard this is somewhat possible by compiling the .NET libraries (or atleast the ones used in the application) into your application, and creating a Win 32 app from all of it.   I still don't like the fact that s ...Show All

  • Windows Forms ERROR INSTALLING TERRARIUM CLIENT...

    Hi All! I'm Italian. When I try to inall terrarium (i tried 5 times) i meet an error. code of error is 2350. before this error, that appear whe i click on "Continue" button after clicked 5 times on "try again" , the real message error say: "TH CABINET FILE _C9F1883... USE DOR THIS INSTALLATION IS corrupt and cannot be used...." WHAT I&nb ...Show All

  • Visual Studio Express Editions BalloonTip

    Can someone please explain to me why no matter what value I set the timeout value to for the BalloonTip of a NotificationIcon in my project, it always shows for the same length of time Below is the line of code to call the BalloonTip: nfyNotify.ShowBalloonTip(1000, "SubSelect Watchdog" , _ "SubSelect watchdog will remain in the notification " & vbCrLf & _ "bar until it successfully allocates you to your first" & vbCrLf & _ "preferences or you cancel the operation." , ToolTipIcon.Info) ...Show All

  • Visual C# Interop in reverse

    I am currently trying to upgrade the user interface of a project that was written in unmanaged C++ under VS6. The project is in MFC. The application handles computing Takeoff and Landing information for a variety of cargo aircraft. The UI is a Single Document template using the CDocument-CFormView template. What I have done so far is to use a StrategyFactory pattern to abstract the current UI so that the user will be given the current UI for all aircraft except the ones we are customizing the entry form for. This way we can customize data entry and calculations for each airframe (one at a time) without affecting all users. Now that we ha ...Show All

  • Windows Forms Custom HostDesigner Implementation

    .NET 1.1 Ok, I got a custom host designer implementation. I have run into an issue. I have a form with controls in it, I save the form as a dll and I use it as a template in my host designer. When I load it up, and when the code hits the designer(intialize) bit then all the controls seem to hit the designerhost.add() routine and they all get added to the designer. When all is done, I see the buttons at the bottom, but whats the problem is that they are unselectable, I can select them and see the property browser change and I can move them via the property browser, but I can not move them around on the screen via the mouse and it never puts g ...Show All

  • Windows Forms Intellisense, tooltip description.

    I don't know if it has a specific technical name. Let's take an extremely simple example. When I have a button click event handler, it passes the 'sender' as an object. Later in the handler, if I type sender then a '.' intellisense pops up that long list of one method; 'GetType'. When I select GetType, out to the right, a tooltip comes up and tell ...Show All

  • Windows Forms Has anyone changed IssuVision?

    Is anyone that has a changed verion of IssuVision running Is there really no documentation for this product Can someone explain what I need to change if I want the staff list to read different datatable. Hakon you have to look into the IVData class of the IssueVisionWebCS project. you will notice that it uses a StoredProcedure named GetStafferList  ...Show All

  • SQL Server debuggin T-SQL

    How do I debug my T-SQL in SQL Server 2005 I think I saw an article from Niels Berglund notings that I need VS.NET to do this -- is this true If we're not a .NET shop (well, it's there in pockets), but using SQL Server, is there another way other than getting this IDE for my power DBAs that build the business logic Thanks... Hi Learningdba,   In SQL Server 2000, the debugger was included with Query Analyzer. But in SQL Server 2005, it was moved to Visual Studio, and you can't debug with only SQL Server installed.   If you, like me, prefer to see the debugger r ...Show All

  • Visual Studio Express Editions const_cast of std::string::c_str() for winapi?

    For some winapi structs and functions a non-const char (or wchar_t) is required. If my code uses the stl std::string, would it be acceptable to use const_cast on the c_str() member function Or is copying to a TCHAR array the best solution The situations I might envisage using such a const_cast would be where I'm fairly certain the system only copies the string (to a listbox, combobox or comboboxex list, for example) , rather than alters it . Would this be an acceptable use of const_cast or should I prefer using a temporary array to store a copy of the stl string and pass that instead to those windows functions or structs that mig ...Show All

  • Windows Forms sorting a datagrid that is bound to an XML doc

    hiya,   I am databinding a datagrid to an xml file..no problem. However, I am curious to know what happens when I click on the "sort"  columns of the datagrid.I realise that the datagrid is "sorted" but I don't know how the framework manages to do it. Does the datagrid / framework somehow manipulate the xml dataSource under the covers..perhaps&nbs ...Show All

  • Visual C# How to get system icons and descriptions

    Hi, Would anyone tell me how to get the system registered icon and description of a file For instance: *.doc (Word document, [MS-Word icon]) with tanks. 1. Icon.ExtractAssociatedIcon() really solve your problem this time 2. any handle easy used in .NET related classes by call to method like FromHandle() and Icon class also have ToBitmap() method that can help you to convert it to image if you need it. ...Show All

  • Visual Studio Conditional formatting c#.NET "Unknown Query Engine Error"

    I have a report I created in Crystal Reports 8.  It has VERY simple conditional formatting which works fine in the stand alone Crystal Reports designer. The formula is: If Mid ({Field}, 1, 4) = "BOLD" Then     crBold That formula is a conditional format formula on the style of a database field. Now the application is a c# fat client.  When I call that report it gives a "Unknown Query Engine Error". If I remove the conditional formatting, and call the report with the identical selection criteria, it will populate and display correctly. Does anyone have any thoughts/ideas as to what is occurring ...Show All

  • .NET Development Urgent:Add,Edit,Delete,Modify an XML document in vb 6.0 using DOMDocument

    For Example XML document is shown below: <emps> <emp> <ename>Srikanth</ename> <empno>1</empno> <sal>6000</sal> </emp> </emps> The values of ename,empno and sal are displayed in textbox control. Add: If I click on the add button i want to add new node to the xml file. example to add : To add i have written code, this is working fine... Dim objperson As IXMLDOMNode Dim objchild As IXMLDOMNode Set objperson = xml_document.createElement("emp") xml_document.documentElement.appendChild objperson Set objchild = xml_document.createElement("ename&q ...Show All

©2008 Software Development Network