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

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

ToddGibbs

Member List

vectorvictor
TLJohnson
Beginning Debugging
kuponutcom
varomix
MetallicDream
vasu4us
HCF
Josh C
pradjini
mdlagdguy
Eric Sch.
Popa
Timothy C Hughes
Vitali Greenberg
JMT23
YanickA
JSF
PhilipLanier
Offir
Only Title

ToddGibbs's Q&A profile

  • Windows Forms Can't update my data!

    I have a piece of code like this:  DsContactos1.Contactos(0).Contacto = txtContacto.Text  then I pass it to my webservice, but the data isn't updated. I'm sure the dataset leaves to the webservice and I quick watch it to see and the text from the textbox was there. But the data wasn't updated :(((  Suprising is that I tryed like this:  DsContactos1.Contacto ...Show All

  • SQL Server SQL Server 2005 Database Tuning Advisor DTA tuning SQL Server 2000 FAILS

    Hi all, I am using the SQL Server 2005 Enterprise Database Tuning Advisor to try to tune an SQL Server 2000 Enterprise Edition database. I created a .trc file uning the SQL Server 2000 Profiler. I ran this for 24 hours. I chose the template SQLProfilerTuning. In the Gui, for workload file, I entered the name of my trace file that I captured over the last 24 hours. In database for workload analysis I chose: tempdb. In select databases to tune, I put a check mark next to the name of my production database. On the toolbar, I clicked the button representing "Start Analysis" In the Progress Tab, after 5 minu ...Show All

  • .NET Development Loading Access DB in Memory, efficient way ?

    Hi, I want to load three ~150 Mb sized Access 2000 DB's in memory to perform a lot of operations. Loading ONE complete DB in DataTables will result in an out of memory exception. The memory of the DataTables blow up to 1,400 Mb. Is there an memory efficient way to hold tables in memory, the tables have around 8 million entries and work with them fast Has anyone sample code or a hint what mechanism to use Thx.... Use the ODBC (or OleDb) driver with the Jet provider. Let Jet take care of figuring what to load and cache depending on the queries you execute. Don't preload everything into ...Show All

  • SQL Server SQL Server Mobile tutorial and getting proper mobile DB installation

    Hi folks, I'm new to Windows Mobile progamming, and new to this forum. Apologies in advance if I'm asking a boneheaded question, but I've done searches and can't find anything directly applicable to my problem. I'm currently walking through the published MS tutorial in setting up an SQL Server 2005 Mobile application that subscribes to a publication on SQL Server 2005 to exchange information. I've gotten almost all the way through... successfully set up the server components, creating the publication, etc. On the mobile side, I've been able run the cab files to install the SQL Mobile components and to create the project, add the reference t ...Show All

  • Visual Basic Returning Private Sub Name In Error Message

    I have a command button on a form to delete the current record.  The corresponding subroutine is called Private Sub cmdDelete_Click().  I'm looking for a way to display "cmdDelete_Click" in an error message if an error is thrown.  I want to have the the statment be the same for each subroutine I have so I don't have to hard code the name for each one.  Is there a way to return the name of the current subroutine as I described   I found something like form.module.name but that wasn't it. Here's an example - which will display the Assembly and function name that the exception wa ...Show All

  • .NET Development App.Config Schema

    I just uninstalled Beta 2 yesterday and installed VS 2005.  I have been updated my Beta 2 projects to RTM and seeing if anything has broken or just generally seeing if anything is different.  One thing I noticed was when I build a project with an App.Config file that has been generated by the Settings.settings designer I get warnings and comments about realating to the App.Config not matching the schema.  The Schema it is referencing is DotNetConfig.xsd and some of the warnings and comments I get are: Warning 1 The 'requirePermission' attribute is not declared. Message 2 Could not find schema information fo ...Show All

  • Visual Studio Team System Difficulties in getting Code coverage information

    I am testing ASP.NET web controls and am facing difficulties in getting code coverage information from my tests.  For testing our web controls, I am using the [HostType("ASP.NET")] and [UrlToTest(" http://localhost/TestSite ")] attributes in my test projects to either test a website that has these webcontrols, or dynamically add these controls to a empty test website and test their properties and methods. So my project structure is like this  c:\>     - InetPub         -wwwroot            -UnitTestWebSite   & ...Show All

  • Visual Basic How to use a Byref variable in Property

    I want to do soemthing like  Str = "ABCD"      ItemVal(2,Str) = "X"          which replaces the 2nd character in Str to X so that after this value of STR would be "AXCD" in VB 6 I could do this by  passing ByRef variable to a Property Property ItemVal(byval Index as integer, byref Str as string) Set(Value as string) End Set.......... Any ideas how can we do it in .net now that we can't have byref varaibles in property. Why not try simply using a function for this... You have two versions one that persists the change to the loca ...Show All

  • Visual Basic Save\Load values as text file

    Hello In VB6, I was able to save and load values as text file, it saves them like this form: "V1","V2","V3" I was using this code: Dim A As String, B As String, Op Op = FreeFile A = "Value1": B = "Value2" Open "D:\File.txt" For Output As Op Write #Op, A, B Close Op How can I do it in VB2005 Thanks & Regards The following code will do the trick in VB Express/2005 making use of the My.Computer.FileSystem.WriteAllText method Dim A As String, B As String Dim Content as string =A & B My.Computer.FileSystem.WriteAll ...Show All

  • Visual C++ moving around the client area using arrowkeys instead of mouse moves

    Hi, I am new to C++ and have I have written (using MFC) a small program that displays a maze and has a man in side it in the form of a bitmap.  I want the man to move round the maze when the arrowkeys on the keyboard are selected however I can only see functions for mouse moves in the help.  Can anyone guide me as to how I might achieve this Thanks in advance. The arrow key codes are as follows: VK_LEFT  (25) LEFT ARROW key VK_UP  (26) UP ARROW key VK_RIGHT  (27) RIGHT ARROW key VK_DOWN  (28) DOWN ARROW key ...Show All

  • Visual Studio Express Editions GACUTIL

     === Edited by AdeptBlue @ 19 Jan 2006 4:04 AM UTC=== Me again ... I think this is a bug in VS2005 Express ! I just added my DLL to GAC manually without any problem. (Don't ask why I didn't try that before -- sometimes I am so dumb I scare myself) Will the VS205 team pick up this bug report here or should I post it some other way (Maybe a silly question, but I'm a newbie) ====================================== OK ... I admit it ... I'm in W a a a y   over my head now! I don't even know which Forum to use for this question, but since the problem occurs while I'm working in C#, I guess I'll start h ...Show All

  • Visual C# Adding Windows Media Player

    I was looking in the References and seen i can add a Windows Media Player...So i was woundering what is needed to add it to my Project Other than the References http://msdn.microsoft.com/library/default.asp url=/library/en-us/wmplay10/mmp_sdk/samples.asp there is a sample here showing how to use the activex control in C#. Cheers, Greg ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Adaptive, temporal Anti-aliasing

    Hello, how do I enable ADAPTIVE or TEMPORAL anti-aliasing modes in the Direct3d API I dont think you do - the various AA modes seem to suffer hugely from various PR and marketting spin when it comes to naming. It might be possible to request a particular combination that the driver can interpret as being one of the special modes, but what (if any) such combination is going to be IHV-specific. The Direct3D API sees multi-sampling as a combination of samples and quality levels - resolving those combinations to specific names/modes/formats in "Marketting Speak" is not straight forward. At best gu ...Show All

  • Visual Studio Tools for Office Error when add control in the actionsPane

    Hello! I'am creating a project wordDocumet with Visual Studio 2005. When I add a control DateTimePicker to Action Pane: this.ActionsPane.Controls(new DateTimePicker()); And run my application, results this error: First, I show a popup that say: "Choose expansion XML package": Microsoft Actions pane or nothing Expansion XML pack . I choose any but not work. After show this error: System.Runtime.InteropServices.COMException (0x80004005): Error HRESULT E_FAIL has been returned from a call to a COM component. at Microsoft.Office.Tools.IActionsPaneSite.SetClient(Object control) at Microsoft.Office.Tools.ActionsPaneInternal.HookupSmartPane() a ...Show All

  • SQL Server Unable to install sql server 2005

    I got the following message when I try to install the SQL server 2005 June CTP. "SQL Server 2005 CTP Setup has detected incompatible beta components from Visual Studio or SQL Server. You must run the build cleanup wizard from the CD to remove previous SQL Server 2005 components and .NET Framework components, and then run SQL Server 2005 CTP Setup again. For detailed instruction on uninstalling SQL Server builds, see the SQL Server 2005 CTP readme file" I have run the build clean up tool, and uninstalled all VS 2005 Beta 2 related programs. Is there any register value that I need to delete, so that I do not get the error message. ...Show All

©2008 Software Development Network