Software Development Network Logo
  • Windows Forms
  • SharePoint Products
  • Visual Basic
  • Visual FoxPro
  • .NET Development
  • Visual C++
  • Game Technologies
  • Smart Devicet
  • Windows Vista
  • Audio and Video
  • SQL Server
  • Microsoft ISV
  • VS Team System
  • Visual C#
  • Visual Studio

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

Bigmo

Member List

AE_Cory
zot166249
TonyByers
Gentledepp
bryanedds
MichaelEber
Paul Bradley
Tom De Cort
Gigi69
Hassan Ayoub
MarissaM
thinkfreeto
spelger
Maurice Pelchat
Enlikil
Michel Paulissen
haryindsfjdbf
paulixml
LuisMendes
Petchey
Only Title

Bigmo's Q&A profile

  • Visual Studio Problem checking out items

    Hi I've been trying to checkout items using the _applicationObject.SourceControl.CheckOutItems(ref ItemNames) method, but this do everything except check out the items. My code looks like this List < object > GeneratedFileList = new List < object > (); // where GeneratedFilesList is actual a list of string ( Full File path name .e.g C:\Test\Test.cs if (GeneratedFileList . Count > 0) { // Check them all out (did the check above already) object [] arrFiles = GeneratedFileList . ToArray(); _applicationObject . SourceControl . CheckOutItems( ref arrFiles); } It works using " _applicationObject . SourceControl . CheckOutItem(Filename)" however this takes ages as there is abo ...Show All

  • Visual Studio ASP.NET Session has expired, why ?

    Hi, I have an aspx with report inside, in the ide (VWD) I can see the page and the report with data on it. When I deploy the page on the web srv I can see the page but without data on the report, instead I see one error inside the report, the error is: "ASP.NET Session has expired" Exception Details: Microsoft.Reporting.WebForms.AspNetSessionExpiredException: ASP.NET session has expired Maybe ther is something to set in the ObjectDataSource wich I use as datasource of the ReportViewer I don't know any more wath to do, please if somebody had same problem, please help me. Gioking         I have also the same trouble. For the moment I have corrected this in II ...Show All

  • .NET Development New to XML and want to learn.

    I am currently on a developing team for a game. I know many codes, such as C++, HTML, PHP, and C#. My team leader was asking me, if I knew XML, I said no I do not. So I wish to learn it. Are there any recommended books or tutorials that you suggest Also, what is used to edit XML Thanks, Tyrael Hi, Following are some valuable resources from many many written for XML... Apologies to other writers whom I forgot to mention. Applied XML Programming for Microsoft .NET By Dino Esposito - Microsoft Press, publisher XML in a Nutshell by Elliotte Rusty Harold and W. Scott Means - O'Reilly, publisher Effective XML: 50 Specific Ways to Improve Your XML By Elliotte Rusty Harold - Addison-Wesley, pub ...Show All

  • Visual Basic Dataset does not update more than once during runtime.

    Hi there, I have a dataset that i am updating during runtime of my program. To do this, I first delete all of the data in a datatable using "DELETE * FROM Table1" command, and then update the dataset. To initiate this process, i double click on a datagrid. The first time i double-click on the data grid, the program works exactly as planned--i step through the code and verify that first all the records in the datatable delete, and then is updated with all the new records. The problem i'm having is that the next time i double-click on the datagrid, the table doesn't delete! And then i get an error that i am updating a table with a non-unique record. If my table deletes like its supposed to, i shouldn't ever get this error...why ...Show All

  • Visual Studio 2008 (Pre-release) When to use windows browser app?

    Hello, I'm wondering when is it beneficial to use a winfx browser app, as oppose to the regular winfx windows app I have a list of questions/concerns...sorry about the lenght of this posting :-) I'm playing with xaml at home, and I think it is the best way of developing ui. It really seperates the roles of the designer and the programmer. But, in my work place, even for intranet applications, business people are really attached to thin clients (ASP.NET). I think most businesses are like that. I was thinking if the middle tier is developed using web services (wcf) then I could develope a rich client that runs in the browser (winfx browser app). a) So should I develope a rich client as a browser app b) Is that what brow ...Show All

  • Visual Studio Team System Auto-levelling in Project and integration with Work Items in Team System

    We have a scenario where we have constructed a project plan where single resources are allocated to tasks in MS Project (due to a limitation with integration to team) and using the auto-levelling feature so that resource assignments can be determined in line with priorities etc. We have published the initial project plan 'tasks' to team, so that each person is able to see the tasks that have been assigned to them and roughly when they have been scheduled to start them as pre-determined by MS Project. When the resource begins a task, they are able to enter the ''Actual Start'' date in a customised field against the task in MS Team as well as 'completed' and 'remaining' work number of days. When this is subsequently refreshed in MS Projec ...Show All

  • Visual FoxPro How to manipulate BROWSE NAME objects?

    I am trying to manipulate a browse object. I'm doing a browse nowait and then I make changes to some properties of the object. But then, I can't set focus to the browse window. The following runs through the code all the way to the 'Done'. How can I activate the browse window Thanks. CREATE CURSOR tmprug (rugno c(6) ) INSERT INTO tmprug VALUES ("000001") INSERT INTO tmprug VALUES ("000001") GO top define wind rugs from 06,0 to 18,90 font "Tahoma",10 grow brow fields item=recno():4:w=.F.,rugno NAME oBname wind rugs nowait oBname.AllowAddNew = .T. oBname.column1.setfocus() ACTIVATE WINDOW tmprug WAIT "Done" wind Marcia; I understand that a grid in a form would solve t ...Show All

  • SQL Server Question about by Import oracle data and field is null

    Hi, I've a question about importing Oracle data and some fields are null. I get an error 'Conversion failed because the data value overflowed the specified type'. When i look in preview query result, via OLE db Source editor > Preview, this field contains '<value too big to display>'. What do i do wrong Can somebody help me Thanks in advance Olaf As I mentioned, you'll need the latest drivers on your SQL Server System for Oracle. Also, you can check the data you're about to import using the OPENQUERY statement in SQL Server. Look in Books Online for more information on how to use that statement. ...Show All

  • Visual Studio Tools for Office [Word] Runtime error on loading custom add-in

    Hello, I have a problem with loading my own add-in after I deployed the setup and installed the add-in. When I run the add-in directly out of visual studio it all works fine. However when I generate the setup.exe and use it to install the add-in it won't display in Word. When I go to the COM-addins dialog in Word I can see that it is indeed installed. When I click on it, i see the message: "Not loaded. There was a runtime-error ...... ". My guesses are that it has to do with security or something. I already put the macro's security to the lowest level, and followed the directions on http://msdn2.microsoft.com/en-us/library/aa537179(office.11).aspx to add something for the security. I allready spent hours searching google for this ...Show All

  • SQL Server fn_virtualfilestats doesn't work

    Hi everyone, Primary platform is Sql2k. I'm trying this sentence: SELECT * FROM::FN_VIRTUALFILESTATS and from our production server doesn't return results. Why the hell not However from other servers it returns data. Is needed to enable any feature for that Thanks for your time, No, both own the same. The same OS (2000 Advanced Server) and running with Sp3 Microsoft SQL Server 2000 - 8.00.760 (Intel X86) Dec 17 2002 14:22:05 Copyright (c) 1988-2003 Microsoft Corporation Enterprise Edition on Windows NT 5.0 (Build 2195: Service Pack 4) I'm totally stuck ...Show All

  • Visual Studio Decorator for Compartments

    Hi, I would like to know if there is any way to have something like an IconDecorator on a Compartment (Microsoft.VisualStudio.Modeling.Diagrams.Compartment) The result should be similar to say the Icons that are used to represent the different kind of Decorators in the Dsl Tool itself. Regards, Rasmus Oudal Edberg Thanks Rasmus, it was very useful for me, but ... Do you know how to show the image decorator only when the compartment element has a property set to true I mean, in your example all compartment elements show a image/icon, I want to show the image only if it has a property with a specfic value. Regards ...Show All

  • Visual Basic map string value to a variable name dynamically?

    Hi, I'll use a really simple example to describe what I want to do. Say I have a Class Person, with members being Name, Height, Age, Sex. I want to be able to call a function say person.NextValue, and it will return the value of one of the member variables. So if it is called the first time, it will return the value assigned to Name. The second time the value assigned to Height and etc... Any ideas on how to do this I have had a crack at it and have done the following. In my class I have created an arraylist containing the names of each member as a string. When .NextValue is called it steps to the next string in my arraylist and returns the Name of the member. For my approach to work what I need to do now is return the Value associa ...Show All

  • Smart Device Development directshow issue

    Hi, I am using directshow graphs in my application for accessing the embedded camera(PPC and SPs). I am not using a graphmanager; I contrust the graph manually, by adding the required filters. An overview of my Graph: To the VideoCapture filter, I connect the SmartTee. The Render Output pin of the SmartTee is connected to the VideoRenderer; The Capture Output Pin of the SmartTee is connected to the input pin of my custom NULLRenderer filter. In this filter, I register a custom app callback function in which I perform my image processing operations on the frames received. Ok. Now the problem I am facing is changing the camera / viewfinder properties. In varying lighting conditions, I need to be able to adjust the properties like ...Show All

  • SQL Server MSDE 2000 Set-up: Invalid instance name

    Thanks in advance. I installed SQL 2000 Client Portion in my local computer: No server functionality. I selected my computer name as an instance name. Installation went OK. Now, I am trying to install MSDE in my computer. Error comes in early part of installation: It says, "The instance name specified is not valid" Please, any advise and suggestion. Yes, presumably MSDE tries to use the same instance name already in use by SQL 2005. Why would you want both versions on one machine Well, you can do it, but check the MSDE readme how to configure a different instance name. In the connection string you will use servername\instancename to access the named instance. -- S ...Show All

  • SQL Server query output into xml file

    I want to create a package that will execute the sql and the output will be store in some file. Following are the steps I took in SSIS package. Please advice if this is the way to do and what I am missing. How should I retrieve the output into a file In Execute SQL task, In General following are the selections Connection Type: OLEDB Coonection: src1.dbTest SQL Source Type: Direct Input SQL statement : Select fname,lname from employees for xml auto ByPassPrepare: False Resultset: XML In Result set I created a user variable Result Name: 0 Variable Name: User::Variable Thanks! ...Show All

©2008 Software Development Network