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

Software Development Network >> Fox Me Up's Q&A profile

Fox Me Up

Member List

LearnToRock
bjkaledas
wanderingbob
mr_superlove
Shankar K
Dan Mikkelsen
JUNJIE.HONG
errolian
Son_seph14
ahmedilyas
nalini
Kevin Dente
Dottj
tenchyz
kinny_k
Bravo_00
Brainsponge
Shrek.NET
VizCoder
CJ1983
Only Title

Fox Me Up's Q&A profile

  • Windows Forms Basic Web Browser

    Ok, I'm very new to C++ and would like to start building my knowledge by example and repetition. I have been getting myself used to working with the the Visual C++ 'designer' and would like to try making a basic web browser with 1 Textbox, 1 Button, and 1 WebBrowser control. I've done everything that I know to get the WebBrowser's Url to be set with the Textbox's value. I've tried this 'syntax', which works with other events (on other projects). webBrowser1->Url=String::Format("{0}", toolStripTextBox1->Text); error C2664: 'System::Windows::Forms::WebBrowser::Url::set' : cannot convert parameter 1 from 'System::String ^' to 'System::Uri ^' I've tried other things, trying to get around the errors...with no luck. webBrow ...Show All

  • Windows Forms Prevent a forum from taking the focus

    Hi there, I have an application that has a main form and several child forms that are disguised. By that I mean they don't look like separate forms (no borders and no title bar etc). I want people to not be able to click on these forms to allow them to steal the focus from the main window. Is there any way to achieve this Many thanks in anticipation of your help, Ady You could set set Me .Enabled = False for the form. This will prevent it from getting focus. ...Show All

  • Windows Forms Differing number of rows in datagridview and the dataset it is bound to

    I have a datagridview bound to a dataset based on a query of a table in an Access database. When the query returns three or fewer rows, the process works correctly. However, if there are four or more rows, the dataset includes all the rows, but the datagridview will only display two rows and the code throws a subscript out of range error. I have searched my code for anything that might limit the number of displayed lines, to no avail. I know this is a very particular problem, but if someone could help me, I'd greatly appreciate it. Thanks in advance. Trevor Very curious - I made your recommended change and the index number noted in the error dropped from 3 to 2 - and the error moved to the allowusertoaddrows line.  Other ...Show All

  • Visual Studio Team System Label reports

    Hi, I have some problem for generate some query, I want to do a report from my labels, but on this report I want to add all documents and code that belongs to my labels, any idea how can I do this G'day, What you can see in reports is the data from the OLAP cubes. As far as I know, source control cube does not expose label data (see MSDN link for details). I am not MS, but I would say that label data is not accessible in reports. Cheers, ...Show All

  • Visual Studio 2008 (Pre-release) Making custom user control as root of xaml

    i'd like to create a class that inherits from a WPF control say UserControl or Grid and then have another XAML whose code behind in turn inherits from that class. On using the name of the custom class in the Root element of the XAML, get an error saying this is an invalid root element. Is there a way to get around this Here are the classes and XAML files: Get an error in View1.xaml saying that the root element is invalid. Window1.xaml <Window x:Class="WindowsApplication1.Window1" xmlns=" http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x=" http://schemas.microsoft.com/winfx/2006/xaml " Title="WindowsApplication1" Height="300" ...Show All

  • .NET Development Default Credentials not working for Basic Authentication from IIS server to IIS Server

    I have some .NET 2.0 Objects hosted inside of IIS that are accessed via .NET remoting. The Primary Website that the objects are hosted in is part of an application pool that logs on as a specific identity (e..g a Domain User) and the website is configured use Digest Authentication.  The objects on the Primary Website access another set of .NET 2.0 objects via a single remoting uri that points to a network load balance that represents two web servers.  The two Load Balanced web servers are not on a domain and they are configured to use Basic Authentication. My problem is that when the objects on the Primary Website attempt to communicate with the Load Balanced web servers they are not sending username and password infor ...Show All

  • Visual Studio [Native to Managed Transition] in Call Stack

    I do a lot of debugging of mixed native/managed code. On VS.Net 2003 when stopped in managed code the Call Stack in the debugger would display the stack for both the managed and unmanaged calls on the stack. In VS.NET 2005 I get a couple of entries in the Call Stack window [Appdomain Transition] and [Native to Managed Transition], but no native frames underneath. How do I get the full stack displayed like it is on 2003 Thanks in advance. (I assume you've got interop-debugging enabled, and are seeing native frames in other cases). This may be a known issue that we're exploring a fix for. If you call from native code into managed code, and the managed code is not in the default appdomain, then t ...Show All

  • SQL Server Transaction

    how can with in transaction execute statment1 and statment2 then rollback transaction but statment2 not rollback You are asking for something like autonomous transactions which is supported by Oracle. This is not possible to do in SQL Server currently without establishing different connection to the server via loopback mechanism. So in your case, you would execute statement2 in a different loopback connection using extended SPs or CLR SPs (in SQL Server 2005). Note that the transaction semantics depends on what you are doing in the statements and your current logic both server-side & loopback mechanism. Alternatively, from SQL Server 2000 onwards you can use a table variable to hold some state information during the transa ...Show All

  • Visual Studio Team System RACI Questions

    In MSFv4 each Activity is associated with Participating Roles. Those roles are divided into four categories: Responsible, Accountable, Consulted and Informed (RACI). Where are these categories defined What specifically is the difference between Responsible and Accountable Martin Danner Arrowrock Corporation Boise, Idaho Thanks Randy. Please bear with me here, as I am coming from a traditional, plan-driven project management background. I know that MSF incorporates agile project management techniques that are radically different. Frankly I find this new approach extremely fascinating. However, I'm still trying to get a handle on this new world order. So, with that in mind I'm going to risk ...Show All

  • SQL Server Running multiple versions of the Framework in ASP.NET

    I am getting the following error: ******************************************************* "It is not possible to run two different versions of ASP.NET in the same IIS process. Please use the IIS Administration Tool to reconfigure your server to run the application in a separate process." ****************************************************** All i am doing is from my project which is developed using VS 2004(Framerwork 1.1) i am calling reports via webservices using reportexecution, calling it force download of a pdf report, which is developed using reportserver 2005 (framework 2.0) I am using it on my development machine which has xp professional using IIS 5. version and runs fine. Now my production serv ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. System.TypeInitialization exception.

    Hi. Ive made a small game with XNA on my computer. It runs fine on my pc. When i try and run in on a friends computer (ive installed XNA Framework and .Net 2.0 aswell as Direct X 9 on his computer) i get a System.TypeInitialization exception. Any help Add these files to the directory with the exe. XNA_10.zip ...Show All

  • Windows Forms Datagridview scrolling bug? due to invisible row's height adjust

    I have a datagridview, setting its datasource to a dataview which is over an datatable in memory. AutoGenerateColumns = false; AllowUserToAddRows = false; EditMode = DataGridViewEditMode.EditProgrammatically; MultiSelect = false; AutoSize = true; SelectionMode = DataGridViewSelectionMode.FullRowSelect; RowHeadersVisible = false; AutoSizeRowsMode = DataGridViewAutoSizeRowsMode.AllCellsExceptHeaders; AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill; ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.DisableResizing; ColumnHeadersDefaultCellStyle.WrapMode = DataGridViewTriState.False; DefaultCellStyle.WrapMode = DataGridViewTriState.True; RowsDefaultCellStyle.WrapMode = DataGridViewTriState.True;   T ...Show All

  • SQL Server 1 million insert stored procedure or 1 million insert statements?

    I have a SQL statement that generates 1 million stored procedure calls (this sproc has the insert statement into tableA), on the other hand, i generated 1 million sql insert statements to insert into tableA, which method would be faster if i choose to run them in batches of say 1000 each Thanh: When you say "... generates 1 million stored procedures calls ...", how is that being done How are you generating these calls Dave ...Show All

  • Visual Basic t USB DRIVE Detection

    I have an ALL in 1 Card Reader - for mobile multimedia card such as MMC - that I want to monitor from my program it connects to the computer through a USB port and the computer assignes a four drive letters to it you can think of it as multiple USB Stick Drives 1 - how I can obtain the drive letters associated to it when it connects to the usb port 2 - how I can monitor the insert/remove of any card I think there is a soultion arround Win32_VolumeChangeEvent but I've failed to find it and I've tried a piece of code based on Win32_DiskDrive and it didn't give me the desired result can any one help me please Mr. Lau Han Ching can you explain how I want the program to make that automa ...Show All

  • .NET Development Oracle not listed as a data source

    Hi, I am running Oracle 10g express and Visual C# express. I am trying to connect to an Oracle database but when I select Add Connections, I do not see Oracle listed as a data source. I have the Oracle .NET data provider intalled but again, nothing seems to work. I have been banging my head against a wall for the last 3 nights trying to connect to the Oracle database (on the same server). I have done a TNSPING and everything is working with the database. Please help. I am new to .NET/ODBC etc. so please keep answers simple although I do have a lot of C experience from years ago. Thanks. ODP.NET does not show up in the list of data providers in VS2005. This is apparently something they will add in the next ...Show All

©2008 Software Development Network