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

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

jslapp

Member List

Ronnie Yates
Saikalyan
ShawnReed
Wokoek
clevijoki
Martin Jensen
Jiaozi
Olly127863
digitalmercenary
Rakesh_Gunijan
The Dwarf
1v1jo9sm
Nikolaus Brennig
tanha
A.M
UKChris
KonMan69
Jason Whatever
Pebble_Stud
Deo M.
Only Title

jslapp's Q&A profile

  • Visual Studio Express Editions Build a Program Now Book...VB Express version

    I purchased the Build a Program Now... VB Express version by Patrice Pelland After the install of VB express & SQL, she talks about companion content in the book that was suppost to be installed in 'My Documents' folder.  Neeedless to say, MSPress did not include the files on the CD that came with the book.  I would like to complete the projects in the book, if possible.  Does anybody know where I can get a copy of those missing files Thanks for your time. G'day Deanrm You can get the code samples from here: http://www.microsoft.com/mspress/companion/0-7356-2213-2/   &nb ...Show All

  • Visual Studio Team System UseLiteralsWhereAppropriate ?

    FxCop emmit a warning for this code : public static readonly string UPDATE = "UPDATE"; FxCop output --------------------------------------------------------------- Target : UPDATE (IntrospectionTargetMember) Resolution : "Field 'UPDATE' is declared as 'static readonly' but is initialized with a constant value 'UPDATE'. Mark this field as 'const' instead." Category : Microsoft.Performance (String) RuleFile : Performance Rules (String) Info : "Prefer literals over InitOnly fields if values do not have to be calculated at runtime." ------------------------------------------ ...Show All

  • Visual C++ Where do I?

    Where can I find good tutorials for how to use this compiler and how to write C++ I am looking to get into programming but I don’t have much a programming background dose anyone know where the best place to start is and any good tips I should know before learning. Also I wanted to know something. People tell me that you don’t need the .net framework to use C++ applications but some people are telling me that you need the framework to to see programs created with this program... could someone tell me. Well thanks Mates ;) I would get a good book on C++: my favorites are "Accelerated C++" and "The C++ Primer". If you write plain ...Show All

  • Windows Forms ComboBox filling available space in toolstripbar

    Hello, I updated my application to .NET2 and replaced the old toolbars by toolstripbars. My application does contain an addressbar similar to that  of Internet Explorer with some buttons left and some right of the combobar. The right buttons are right-aligned and are automatically positioned at the right border at runtime. I now want to fill the space between the left and the right buttons with my combobar. But when sizing the combobar in the ToolStripBar Resize event, the combobar gets a bit too large (as the right buttons seem to not yet have been repositioned) and the right buttons are shown as drop down menu. How to prevent this or ...Show All

  • Visual Studio Tools for Office Office Document Customization in not available Excel 2003

    I get the above message when I tried to launch my excel 2003 project, that was built in .net. I am not sure how it happened; I had made some code changes during the day. I checked it into Source Safe to update my project. Then when I tried to check it back out it gave me the about message. I had not deleted anything form the project. Help... I don’t want to have to re-create my project, my excel sheets have too may named ranges on them to have to do over again…I have tried to undo check out form source safe and that isn't working... Hi Alisa, Do you get this error when you run the project ...Show All

  • .NET Development Retrieving data in fields in dataset or ADO.NET

    Who knows the codes for retrieving data in a database field in a dataset and inserting it into a textbox   How do i move the arrow in the database through codes in VB.net pls email me at francis_himura@yahoo.com ASAP please! Thanks! Ok, ADO in VB6 and ADO.Net has a very different approach. ADO .Net adapts the principle of a disconnected recordset in VB6. If you want to create a ForwardOnly cursor, just like in vb6, You'll need to use DataAdapters. if you want a disconnected recordset (I think it's adOpenKeyset in vb6) then you'll have to use datatable or dataset. BTW, in ado.net you don't nee ...Show All

  • Visual Studio 2008 (Pre-release) Problem with ListView when maximize the window

    The Problem is that the GridView of my ListView doesn't resize when I maximize the window. The ListView resizes to the correct size, but the GridView keeps its size. Maybe I have to add something to Grid in which the ListView is. Here's a simple example of the problem: <Window x:Class="BorderWin.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="BorderWin" Height="300" Width="300" Loaded="OnLoad"> <Grid> <ListView Grid.Column="0" Grid.Row="0 ...Show All

  • Visual Studio SQLServer 2005\ Visual studio 2005

    Can someone tell me exactly which versions of SQLServer 2005, and Visual Studio 2005 I should use so that I can develop a web page with a reportviewer control on one machine and use Reporting Services on a different machine. Any links to downloads (i know files will be big). At the moment I have Visual Studio 2005 Standard Beta 2. I also have SQLServer 2005 Beta 2. The cds/dvds have no mention of ctps etc... By the way the error I'm getting is ''[MissingEndpointException: The attempt to connect to the report server failed.  Check your connection information and that the report server is a compatible version.]" Thanks   Proble ...Show All

  • Visual Basic How to Read, Write, Modify & Remove Application Settings From Config File Using VB 2005?

    .NET Framework 1.1 provides System.Configuration Namespace which exposes methods for reading information from the config file, but there are no methods for modifying the contents. Is there anyway this can be done using Visual Basic 2005, without implementing a custom class I have already set it up to use this sort of settings setup and I have used the My.Settings.Save() command after having made a series of changes. I set it up so that there are 18 button name and link settings and 5 user name, password and limits (eg is admin sort of things). I get the user name things to work perfectly, which can be changed by an admin. ...Show All

  • Visual Studio PowerToys for the Visual Studio 2005 Class Designer and Distributed System Designers

    We’ve published a set of set of add-ins which augments existing functionality in the Visual Studio 2005 Class Designer and the Distributed Systems Designers. The Design Tools Enhancements add-in provides a common set of features that can be used by both the Class Designer and the Distributed System Designers , such as pan/zoom window and rich formatting commands. The Class Designer Enhancements add-in provides additional functionality for the Visual Studio 2005 Class Designer, such as HTML export and nested type creation commands. This download includes all necessary source code and a Visual Studio project template for creating your own a ...Show All

  • Software Development for Windows Vista OnExecuting....

    We've built our own tracking service, and need some user data from activities that are about to be executed (EventSinks). So I'd like to call TrackData(somedata) when the activity goes to an "Executing" state. This event is somehow triggered as an Activity Event, but I can't find any activity event like OnExecuting... Any one... I am not entirely sure since I am still TRYING to learn the WWF as well, but I think that if you create a custom activity, then you can override the Execute implementation and make your TrackData call there. Make sense -- /chris ...Show All

  • Visual C# A C# Program Failed to initialize on friends computer, please help

    Hello all, I know this maybe a stupid newbie question, but I need help with it all the same, so please bare with me. I'm a graduate student in psychology who has a BS in computer science. I am currently writing a program in C# that I need to be able to give to other researchers to use. I wrote a beginning sample and when I sent the release .exe off to a colleague to check it out an error appeared when he clicked on it that said the program failed to initialize. Is this because he does not have the .Net framework installed on his computer If so, is there a way around this that I don't have to have all these different researchers go to wi ...Show All

  • SQL Server Problems with OraOLEDB.Oracle

    Good day everyone.... I have installed the OraOLEDB.Oracle Provider on 3 different servers, and have made a link server on all three. On two of the machines, I am successful in retrieving data from the Oracle database. But, on the third machine, I receive this error: Server: Msg 7399, Level 16, State 1, Line 1 The OLE DB provider "OraOLEDB.Oracle" for linked server "employee_prod" reported an error. The provider did not give any information about the error. Server: Msg 7303, Level 16, State 1, Line 1 Cannot initialize the data source object of OLE DB provider "OraOLEDB.Oracle" for linked server "ti ...Show All

  • Visual C++ Tips for speeding up debugging (stepping through code)?

    I've got one particular large C++ project that, in VC 2005, when stepping through code in the debugger, it takes approximately 2 seconds for each hit of the F10 key (i.e. each line of code) to be executed. I've tried many things to attempt to speed it up: disable intellisense, renaming feacp.dll, removing all additional output windows, watch, breakpoints, etc, removing navigation bar from text editor window, disabling anti-virus on the machine, closing all other apps. It's always the same speed. Running on a dual P4 2.8 gig with 1 gig of memory, and hyperthreading enabled. Are there any other tips for speeding up debugging in the ...Show All

  • Windows Forms DataGridViewImageColumn new row image

    I have a DataGridView - the first column is an unbound DataGridViewImageColumn.  The purpose of the image is to allow the user to click the Image - go to "lookup" form - select data - come back - and it programatically fills out (most of) the new row - based on what was selected in the "lookup" form.  I s there a way to replace the 'null image' (box with an 'x') with my image for "lookup" (binoculars in this case) in the row being added     Personally I would use a button column, but yes you can replace the null image two ways. 1) you can handle the Defa ...Show All

©2008 Software Development Network