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

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

sniwas24x7

Member List

a.s.viswa
Leonid B
pershing
RickAtKnowWare
Douglas Nakamoto
Renan Souza
Phil Gould
imed-deborah
Jeanne P
herbjörn
cplusplus1
Louise Ege
BrianFerguson
foobarX
Guns
PeacError
Sen_p_kumar
yfradkin
bradw2k
Chris DeHart
Only Title

sniwas24x7's Q&A profile

  • Visual Studio Express Editions Web Broswer - Detect the Title of Website

    Ok, so I am creating a simple web browser, and I would like my window's Title to display {WEBSITES TITLE} + Web Express. For example, if I were at this site , I would like my browser's title to display "Visual C# Express Edition - MSDN Forums - Web Express". But the problem is, I dont know how to detect the Title of the websites :(. I dont even know if its possible, well...it must be if Interent Explorer can do it :), so i guess my question is: How do I detect the "Title" of Websites Try this:           Form1.ActiveForm.Text = webBrowser1.DocumentTitle;   ...Show All

  • Visual Studio Team System Sharing issue in VSTS Source control

    Hello guys, I'm trying to migrate our VSS database to VSTS Source Control and I don't really understend how can I make "sharing" happen at VSTS For example we have next VSS source tree: $root |-DummyProject |-Includes |-ProjectA |-ProjectB Both of them have shared files from <Include>. My question is: What is an alternative for us in VSTS in terms of do not re-organize our current code Thanks a lot guys. I have different qusetion about TFS SCC. How can I map two different projects to one local folder Example: $-| |_Project_1 |_Project_2 Map to C:\Common Project Thanks, ...Show All

  • .NET Development How to deal with multiple tables and dataAdapter

    I am working on an application where there are around 8 related tables. I am using a dataAdapter for filling the dataset with all these tables. I am doing the folowing: SqlCommand cmd1 =new SqlCommand(" Select * from table1"); SqlDataAdapter sda = new sda(cmd1); try { conn.Open(); sda.Fill(ds,"table1"); cmd1. CommandText = "Select * from table2" ; sda.SelectCommand = cmd1; sda.Fill(ds,"table2"); conn.Close(); } In this approach, when I do some update on the table1 then there will be errors because the adapter's select command is pointing to table1. I then need to be cautious to set the adapter's select command before doing any update to a specific table. Is this a good aprr ...Show All

  • Smart Device Development create is not a member of system.xml.xmlreader

    I try to develop an application on smartphone 2003 I have a create is not a member of system.xml.xmlreader when I code this Const DOC_XML As String = "D_Overlending.xml" Dim DocXml As New XmlDocument() DocXml.Load(DOC_XML) Dim readXML As XmlReader = XmlReader.create( "D_Overlending.xml" ) Someone can help me XmlReader is an abstract class and can not be instantiated directly. You've to use the concrete implementations of this class e.g. XmlTextReader. In NETFX 2.0 version it is recommended to use create method. SmartPhone 2003 should have compact framework version 1.0 and therefore you should use the concrete implementations of this class to create t ...Show All

  • Visual C++ Accessing Image resource (bitmap)

    Hi, I tried but without success to access a bitmap file which I added in my application resource file as following: "resource.h" #define IDB_LOGOBWVISU 107 "app.rc" IDB_LOGOBWVISU BITMAP "Dessins\\LogobwVISU.bmp" How do I access this resource from within managed C++ code taking into account that I want to assign it to following Image object: System::Drawing::Image* Logo_Visu; Many thanks in advance, Stephane Hi again,   I try two things.  I first add user32lib in "Configuration properties\Linker\Input\Additional Dependencies" as first try and, in a second shot, I removed user32lib from "Additional Depend ...Show All

  • SQL Server how to include the nulls??

    Hi, I have the following query stored: SELECT dbo.OrderDetails_Retail.ProductID, dbo.OrderDetails_Retail.ProductName, SUM(dbo.OrderDetails_Retail.Quantity) AS ProdQtyPerWeek, DATEPART(wk, dbo.Orders_Retail.OrderDate) AS SalesWeek, YEAR(dbo.Orders_Retail.OrderDate) AS SalesYear FROM dbo.OrderDetails_Retail INNER JOIN dbo.Orders_Retail ON dbo.OrderDetails_Retail.OrderID = dbo.Orders_Retail.OrderID WHERE (dbo.Orders_Retail.account = @Account) AND (dbo.Orders_Retail.OrderStatus <> 'Deleted') AND (dbo.Orders_Retail.PayStatus <> 'Pending') AND (dbo.Orders_Retail.OrderStatus <> 'Refunded') AND (DATEDIFF(d, dbo.Orders_Retail.OrderDate, @StartDate) <= 0) AND (DATEDIFF(d, db ...Show All

  • Visual C# Interfaces and Abstract Classes

    Hi, I am hoping someone can explain this to me. Lets say I have an abstract class called Employee, from Employee, the following classes are inherited, Manager and Cleaner Can someone explain to me how to incorporate an Interface for this scenario so my application can tell which type of object "Manager or Cleaner" its dealing with Thanks Thats exactly what I was thinking of, I just cant think of a place to put the authentication method since I am using the abstract class , how can i get the information from the abstract employee class see my code in my previous post thanks ...Show All

  • Visual Basic pls give me the simple source code for vb progress bar

    thnks edel There are several ways to control the value of the progress bar...drop one on your from from the toolbox and then: Me . ProgressBar1 . Maximum = 100 Me . ProgressBar1 . Minimum = 0 Me . ProgressBar1 .Step = 1 Me . ProgressBar1 . Increment (10) Me . ProgressBar1 . PerformStep () Me . ProgressBar1 . Value = 20 ...Show All

  • Visual C++ "make depend" from .NET gui ?

    Hi, I build from gui (F5). My foo.cpp depends on foo.h which depends on bar.h. I modify bar.h and VC++.NET doesn't rebuild foo.cpp (actually received from updated file from source control through ClearCase) This sounds like a newbie question but no-one can answer around me, and I can't believe there is no replacement to traditional "make depend" that unix users trust. How to change default behaviour to force .NET to "detect" dependencies in include statements and build accurately projects (instead of rebuilding all everytime of course) Thanks, J-Paul Gabrielli Maybe your problem is caused by incorrect include sequence like this: #include "foo.h" #i ...Show All

  • SQL Server Upgrade query

    I wish to know if it is possible to upgrade SQL Server 2000 Standard Edition to SQL Server 2005 Enterprise Edition. I'm not sure what bit version I have of SQL Server 2000. I have just downloaded the X86 executable for SQL Server 2005 from the msdn downloads site. Thanks Vik Hi buddy U can upgrade from SQL2000 Std edi to SQL 2005 Ent Edi. Any way if U wish, can check for the upgrade path from : http://msdn2.microsoft.com/en-us/library/ms143393.aspx Thnks nd Rgrds Rahul Kumar Software Engineer ...Show All

  • Visual Studio Team System Need a silent mode for MSTest to run unattended.

    Is there some (undocumented ) way to run mstest silently from the command line Currently if a test raises an unhandled exception, mstest will open up an "Unhandled Exception" dialog box. This essentially prevents me from being able to run unattended through a list of tests via the command line. There is no dialog box coming from the test or app under test. Upon further inspection, the dialog appears to be coming from vstesthost and not mstest: =-=-=-=-=- VSTestHost.exe has encountered a problem and needs to close. Sorry for the inconvenience Debug | Close =-=-=-=-=- This still has the effect of preventing unattended test execution. If I catch these exceptions, then Visual Stud ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Engines that are compatibility with the XNA Framework?

    Hi there, I got some questions about the compatibility of the XNA Framework with 3d or game Engines. By now where are a Team of 7 Student of the Games Academy producing our game with the trinigy Vision Engine and the Standard Visual Studio 05. -> www.project-barcode.com My main questions is if its possible to combine the trinigy vision engine and the XNA Framework Our Programmers got experiece with c# are are not used to create games on it. Whats the overall state of campatibility with engines and the XNA Framework Thanks a lot, Greez. I'm not familiar with that engine, but if you consulted the MDX -> XNA migration guide, you should be able to port most, if not all, of the engine over ...Show All

  • Visual Studio Express Editions making the form occupy whole screen

    hello there! can i know how can i program the form to occupy the whole screen when loaded. or if there are properties of the form then what is it thanks in advance!   Or   Me.Size = New Size( Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height) Me.Location = new point(0,0) And it depends on whether you want to cover the toolbars. If you don't want to cover the tools bars, use WorkingArea ...Show All

  • Smart Device Development SSL

    Hi, I posted this once before but until now I haven't found any solution. I need secure socket in Compact Framework and I have found www.mentalis.org but this library isn't for CF. Thanks for any help. ...Show All

  • Smart Device Development What kind of server required?

    I am a newbie in WM5 application. I have a problem: My company needs me to setup an application so that the smartphone can constantly access the server and retrieve data... I have explored many about WM5, but it said little about the system archeticture... I may need to retrieve data from database and file... What kind of server do I need Is Microsoft Server 2003 suitable Do I need to install IIS Is Web Service the only method for the mobile to retrieve data from server What hardware / software I need to pay attention Pls advice... I have been hunting this for weeks but seldom found... When running the PPC 5.0 emulator and follow the web service example here: http://blogs.msdn.com/mohitgog/archive ...Show All

©2008 Software Development Network