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

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

vcbugreporter

Member List

Karl Hulme
dbdog
Chimme
Kirill Tropin
monchhib
FRUSTRATED_TOO
dr.acv
mabxsi
createdbyx
mta37
XNA Rockstar
Michael Klucher - MSFT
Aiden seo
Revin11
SOAC
efriese
NeW2VB
ivl
nobodyman
ahmad.nazmi
Only Title

vcbugreporter's Q&A profile

  • SQL Server move logins from a sql 2000 server to a sql 2005 server

    Hi guys, I have tried to use the sp_help_revlogin script to move logins from a sql 2000 server to a sql 2005 server. It works for users that have a password. But if the password is blank it will fail. Is there a work around for this since I can't change the users passwords I have also tried SSIS package but that too doesn't work because of the same reason. Can anyone help... ...Show All

  • .NET Development DataView class, RowFilter property

    DataView class allows filter table rows using search mask. Example: DataView view = new DataView(table); view.RowFilter = "name LIKE '*hello*' "; In this case it is impossible to apply "he*o" filter as symbols "*" are disabled in middle of string: view.RowFilter = "name LIKE 'he*o' "; - error. My current decision is implementation custom DataView. Is it best way Do exist already implemented decision Yes, I now it. But what should I do if I want to apply "pro*duct" filter. DataView class is not match to this case. Do exist simple way to do it if I work with DataSet object. ...Show All

  • Windows Forms Routing of events in a user control

    Hi can u suggest some ways of routing events through a number of user controls embedded in a windows forms nita This should help .. // Inside First User control to go on the FirstUserControl using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Text; using System.Windows.Forms; namespace WindowsTestApp { public partial class InsideFirst : UserControl { public delegate void Reload (); public event Reload OnReload; public InsideFirst() { InitializeComponent(); } private void button1_Click( object sender, EventAr ...Show All

  • Windows Forms Tabs like VS2005

    I wanted to ask if anybody knows any control I can use in order to have the same "tabs" as VS2005. I mean the tabs which appears when we are opening a form or a class on the top of the window which is displaying the code or the form. If you didn't understand about what i am talking, i will try to draw them here :) They look like:  _________ _________ /  Form1.cs |/ Form2.cs  |_________________ And we are using them to navigate between the classes / forms which are open.   Thank you. also Look for thos tab controls TabStrips: A TabControl in the Visual Studio 2005 way! A VS2005-like Interface TabStrip control ...Show All

  • Windows Forms Inheriting the windows form from another windows form

    I'm trying to inherit one windows form (inheritForm) from another windows from (baseForm). I want to override the the baseForm's some events with the inheritForm events (let's day I want to override the form_click event). Can we really do this. I mean does the design of .net framework 2.0 support this If yes, it'd be gr8 if you can post few lines of code. Thanks, Vivek Here's the VB version: Base form: Public Class BaseForm     Private Sub BaseForm_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Click         MessageBox.Show( "Hello from base form" )      End Sub En ...Show All

  • .NET Development Web Service Unable to access Directory (Temporary ASP.NET Files)

    Question Moving web service to a production level server. This is not a new server, but is new to running an ASP.NET 2.0 web service. No other websites or services existed on this server. Installed .Net 2 and specified that ASP is registered for 2.0 using aspnet_regiis. Installed missing components such as Front page extensions. When I try to browse to the services asmx page I get the error saying that the process has a compilation error and cannot access the asp.net temp directory under the 2.0 Framework. I looked at the directory and it appears that the asp.net process and others have correct access. Note a basic asp.net page will come up as well as a basic html page. All comments are welcome. Platform .Net 2 ASP.NET aspnet_regiis ...Show All

  • Microsoft ISV Community Center Forums Saving information in a form

    Hope someone can help! i have created a form in access where the user needs to input some information. What I want to do is be able to save this information on the form so that the next time I open the form the information is displayed, and also have the ability to change any field and save the changes. I also want to be able to save the information in an access table. Thanks a lot, I really appreciate any feedback/suggestions. HMariana Hi, I wrote a blog entry about how to do this http://dsmyth.blogspot.com/2006/05/saving-user-interface-state.html Generally what you want to do is create a class that contains all the data entered/displayed on the form. Add two properties to the f ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Can you access member variables dynamically?

    I'm writing an input handler class and I'm writing a function to return true or false depending on if the requested button is down or not for the supplied player. At the moment I'm doing it like this: <code> switch (MyRequestButton) { case "A": if (currentState[player].Buttons.A == ButtonState.Pressed) { buttonDown = true; } break; case "B": if (currentState[player].Buttons.B == ButtonState.Pressed) { buttonDown = true; } break; </code> But what I'd like to do is something like this: <code> if (currentState[player].Buttons.MyRequestButton == ButtonState.Pressed) { buttonDo ...Show All

  • Visual Basic SQL Server Settings save

    Hi, I was wondering if someone could give me some guidance on saving your SQL server information so that next time you open your application you don't need to enter all the info again i.e. ServerName, Database, Username etc. I do want the user to set this up, so I don't want to hard code it in the application. I would really appreciate the help. Lawrence 007, You can also write the coeectionString in your seetings file like this: dim connectionString as String="Initial Catalog=DatabaseName; Data Source=(local);Integrated Security=SSPI;" "server=(local);database=DatabaseName;uid=sa;pwd=***;" "Provider=SQLOLEDB; Initial Catalog=DatabaseName; Data Source=(local);Integrated Security=SS ...Show All

  • SQL Server taskpad view in 2005 like 2000?

    Is the database Taskpad View available somewhere in 2005 SSMO like the old Enterprise Manager database taskpad view I'd like to check my table sizes and indexes in a viewer. I am trying to run all of my MS SQL 2000 and 2005 DBs in SMSS (SQL Server Management Studio). Since this means I am trying to wean off of the 2000 Enterprise manager, I wanted to see taskpad-like views in SMSS for SQL 2000 DBs, not just my 2005 ones. is that possible in he SMSS Or do I have to open the old tool for some tasks in SQL 2000 still ...Show All

  • Smart Device Development IContextMenu, InvokeCommand & a LPCMINVOKECOMMANDINFO

    I am trying to extend the Appointments Application Context Menu in a WM 5.0 Device. The Menu Item gets added up and my IContextMenu::InvokeCommand implementation gets called and I receives a parameter of type LPCMINVOKECOMMANDINFO. I got stuck up at this point as I wonder how to find the particular appointment on which the user 'Pressed and Holded' the stylus. LPCMINVOKECOMMANDINFO doesn't seem to contain any information regarding it. I will be happy if I could retrieve the date and time info of the specific appointment on which the user 'Pressed and Holded' the stylus. Pls Help........... please post this topic at the news groups mentioned at the below announcement li ...Show All

  • Visual C# How to convert an Object in session to OdbcConnection?

    How to convert an Object in session to OdbcConnection Thank you. the codes are here. OdbcCommand odbccmd2 = new OdbcCommand("select 查看 限 from 限信息 where 用 名='" + Session["UserName"] + "'", OdbcConnection(Session["dbcon"])); OdbcDataAdapter odbcadp2 = new OdbcDataAdapter(odbccmd2); DataSet ds2 = new DataSet(); Thank you every one. I'm sorry that I have used the .net for 5 days. I used the asp before. I'm a chinese ,so I can't speak english very well.Sorry about this. In the old asp language.My teacher teached me that I could store a database connection object to session. Another question: In different pages,I need database connection,but Should I ...Show All

  • .NET Development ICorDebugController::Stop problem

    Hello, sometimes calling the method ICorDebugController::Stop NEVER terminates nor returns S_TIMEOUT or something like that. It returns only if I terminate process manually by Task Manager. A time ago I was not able to stop my application in Visual Studio. After a minute, VS shows a form reporting that a application cannot be stopped... (I suppose Stop returns S_TIMEOUT or not :) ). MSDN tells us : " Stop is the only synchronous method in the debugging API. When Stop returns S_OK , the process is stopped. No callback is given to notify listeners of the stop. " So for example ... is't possible to execute Stop method in the second thread and if not returns after a specified amount of time, terminate a executing thread ...Show All

  • Visual C++ strange linking error with operator overloading

    Hello everyone, I am meeting with a strange linking error regarding to operator overloading. I am creating a C++ static lib, and then linking it with a C application. Here is the error message and source codes, I am using adapter.cpp, adapter.h, foo.cpp and foo.h to create a static lib called foo.lib, then link it with a C application (goo.c). There is no problem to generate the static lib foo.lib. Any comments to solve this link error error LNK2019: unresolved external symbol "private: class FooNameSpace::Foo __thiscall FooNameSpace::Foo::operator=(long)" ( 4Foo@FooNameSpace@@AAE AV01@J@Z ) referenced in function "private: __thiscall FooNameSpace::Foo::Foo( long)" ( 0Foo@FooNameSpace@@AAE@J@Z ) fatal error LNK1120: 1 ...Show All

  • Software Development for Windows Vista While loop activity

    Hello, I posted a while back on an issue I was having with a while loop in a workflow. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=656133&SiteID=1 Alex Mujar provided me with an answer, however I think this is a work around and would like to understand whether this is expected behaviour or a bug. To summarise I am creating workflows in my host by reflection. I reflect into a DLL that contains the workflow to create an instance of the workflow type. My host needs to be independent of specific workflow types, so I use reflection rather than creating types statically. If I put the workflow DLL in the application path for my host all is well. If I do not include the workflow DLL in the application path then I ...Show All

©2008 Software Development Network