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

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

Kees1979

Member List

micromysore
vexmm
rechmbrs
Karokpa
KumarB
勇敢的心
anina79347
Forch
Rizzi Davide
Luo
Zeelia
ieuuk
benjcev
ISRA
Phil Kauffman
Hanas
alexrjs
BrunoRdaSilva
tipCSharpy
Daniel Reib
Only Title

Kees1979's Q&A profile

  • SQL Server AS actions available through RS in SQL2005.

    Hi, I'm looking for any documentation explaining how RS can use AS actions. Can someone please help me Thanks Try posting on the SQL Server Reporting Services forum. Edward. -- This posting is provided "AS IS" with no warranties, and confers no rights. ...Show All

  • .NET Development Listboxes: Configuring how it selects items as you type

    Hi I am working on an intellisense - style feature in an HTML code editor. I was hoping someone could tell me how to stop this happening: When i type "H" it goes to the first entry beginning with "H" - logical but then when i type something else (ie "T") it goes to the first entry beginning with "T". I want it to look for the first entry beginning with "HT" - how can i do this Regards James That's the default behavior of list boxes. It goes to the first entry that begins with the character you types. If you want a more advanced "typeahead" feature you'll have to code it yourself. The usual techniqu ...Show All

  • Visual C# Totally messed up IDE

    This is truly unacceptable. Besides the problem in the OTHER thread regrading the IDE and C++, the IDE cannot COMPILE nor RUN any C# applications. This is unacceptable! What the hell is wrong with this product My system is clean - I have not installed Visual Studio on this machine before (I've installed on another machine, previous, though). Eretria-chan: Can you provide any more details to help us diagnose the problem Are you getting any error messages Also, I'm moving this thread to the Visual C# IDE forum. Michael Blome - Visual C# Documentation Team ...Show All

  • SQL Server multiple instances of Reporting Services - is it possible?

    Hi there, is it possible to host multiple Reporting-Webs and Reporting-Databases on a single Server What I want is to create two virtual directories http://myserver/reports http://myserver/reports_internal and each web points to a different Database with different reports. Best regards Markus It would be very helpfull if you could tell me how this work! Thanks Markus ...Show All

  • .NET Development TableAdapter Update problem

    Hello, i have problem in my application. I create dataset with single table. In MainForm i have 2 texboxes and update button. This is code for update button: [CODE] Klient klient = new Klient(); klient.ShowDialog(); KlientDataSet dataSet = new KlientDataSet(); Serwis.KlientDataSet.KlienciRow klientRow = dataSet.Klienci.NewKlienciRow(); klientRow[0] = Guid.NewGuid(); klientRow[1] = klient.Imie; klientRow[2] = klient.Nazwisko; dataSet.Klienci.AddKlienciRow( klientRow ); int result = this.klienciTableAdapter1.Update( dataSet.Klienci ); [/CODE] I got 1 in result variable so i think that database was updated. No my dat ...Show All

  • SQL Server SET ARITHABORT OFF functionality

    Hi All, The SET ARITHABORT OFF stmt. is executed before INSERT stmt.. INSERT INTO drivers('jun','williams', 2/0 ,'f1'). A error "Divide by zero error encountered. The statment has been terminated" was thrown without inserting null value in the DRIVERS table. But, T-SQL Reference says that on setting the ARITHABORT variable to OFF and executing the above INSERT stmt. will return a error and also inserts null value in the DRIVERS table. Can anyone throw light on this Cheers, Anand. Srik answer is correct, although the syntax is actually SET ANSI_WARNINGS OFF Regards, Clifford Dibble ...Show All

  • Visual C++ Version-Resources

    Hey, are there any ways of adding an icon and an version-resource in vsc++ 8 Express Edition(like in vsc++ 7) Thank you... Resource editing is not supported on the Visual C++ Express 8.0. You can add resource files created in VC7.1 to the your project in C++ Express. ...Show All

  • Visual Studio 2008 (Pre-release) Worry about LazyLoading

    ForExample if we had a PERSON class with 50 attributeTypes and the class had compositon and aggregation relationships with 10 other classes. How will DLinQ deal with "Lazy Loading" if I only need 2 attributeTypes from PERSON class and 2 more related attributeTypes Can it create an optimized SQL sentence that I get the FASTEST result from my RDBMS Or does it load all the 50 attributeTypes and relations what about the primitive attributeTypes PS: I would be really disappointed if it loads them all without asking the developer... ...Show All

  • Visual Studio 2008 (Pre-release) Bind Scale to Slider

    I'm dabbling with Avalon and I've come across a problem. As a test, I want to bind the scale of a TreeView to a Slider, which has a Minimum and Maximum of 1 and 10, respectively. Now, I found out that I could not bind via the LayoutTransform property on the TreeView itself ("scale {Binding ElementName=slider, Path=Value}" does not compile). Instead, I tried this: < TreeView.LayoutTransform >    < ScaleTransform ScaleX = " {Binding ElementName=slider, Path=Value} " /> </ TreeView.LayoutTransform > This time, it was complaining that ScaleX needed a double value, which it was not getting. So I lo ...Show All

  • Windows Forms Versions

    I must say the ClickOnce publishing system is great.  I do have a question however.   I noticed that when you publish an application it'll auto-increment its publish version.    The program itself also has its own build version as well.   Is there a way to synchronize these two   If I publish an application to a web site, can it automatically update its own build number as well without having to do it manually     Thanks Click Once is pretty slick and glad that you like it!   You probably have noticed that there is an "auto-incre ...Show All

  • Visual Basic Visual Studio 2005 Pro Ed. Cannot do a Release Build - solution

    Whew, thanks Neil! I did select the VB Profile - is that what disabled the Config Mgr by default Now I get to ask the question that brought me to this thread in the first place. Feel free to tell me to post another topic if that's appropriate. I have three projects in my solution. Sometimes when I set a breakpoint in one of the projects, the breakpoint indicator "ghosts" (for lack of a better term) and I see a tooltip that says (words to the effect) "this BP will never be reached because symbols haven't been loaded for this project." I could understand this behavior if that project was a Release build, but they're all Debug builds, so I'm p ...Show All

  • Visual Basic third-party installer for choice and security

    Does vb.net express offer a way for the developer or user to decide where an app would be installed or is a third-party installer necessary If so, any recommendations   McWhirter wrote: Thats good to know I was just whining to myself yesterday that the product comparison listed clickonce for the Basic Edition. I didn't wanna have to fork out the money for Pro. Now i might be happy :) Yes, I was pleasently suprised to find that out too. If you noticed (and unless it has been changed, haven't checked lately) the product comparison page, shows that the Express Editions don't have a depl ...Show All

  • .NET Development Accessing files in a folder in the server

    Hello all... I have to creat a VB.NET application that has to access a folder in a server (needs full access to the folder contains), but I have to take into account the following conditions: - The folder cannot be shared or - If the folder is shared, no existing network user may have any right to it (browse is ok), so when my application accesses the folder it has to change to another account (account not known by the application user), modify the files and then return to the account of the user executing the application. Anyone has any clue Thanks! Albert, this will need some more explanatio ...Show All

  • Visual Studio A datasource instance has not been supplied - again

    I am using the pre release version of VS. Could someone answer a question for me   I have a grid and I am trying to add a subtotal for an amount field. I have found a way to do this but only after some trial and error.  The way I finally go it to work was to add a group and in the field where I wanted to sum, I typed in (manually) =Sum(Fields.!Amt.value).  This worked. What didn't work was dragging the Amt column from the datasources flyout and dropping it in the same place.  It dropped alright, and the syntax looked the same, but for reasons I do not understand, doing it this way produced an error.  When I ran ...Show All

  • Visual Studio vss label history

    We want to achieve cmmi level 2 compatibility using VSS. The baselines once created should not be overwritten as per CMMI. When the label command is used for baseline creation, these labels can be overwritten. I checked the history and there was no information about the overwritten baseline. Now I want some labels of some specific format not overwritable or atleast when overwritten, I want to have a history of such overwriting. Is it possible Thanks  for the reply in advance.Best regards. Hi Suba, I tried this out in both VSS2005 and VSS6 and though the labels are overwritable, there is a history of the label changes when ...Show All

©2008 Software Development Network