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

Software Development Network >> Swapna.B.'s Q&A profile

Swapna.B.

Member List

XNA Rockstar
mathmax
BigGuy
armyofautomata
antonioa - msft
koby198
Petr Manek
ronhud
Dirk Haest
Ashish Derhgawen
rmassart
JerryNixon
Denvas
roadresident
Tomer Glick
DanMeyers
Javafun
MarcZhou
Jassim Rahma
Patrick Sears
Only Title

Swapna.B.'s Q&A profile

  • Visual C# Interfacings with Web Application

    Our company dial with other company via Web based application we have access to our account in there site, we enter a lot of request using simple form then we get the results in the same page in table format. What we need to interface (automate) the process between our system (C# .NET 2.0) and there site (Java Servlet JSP Secure), our system provide the information that we need to enter every day in there system and receive there response. How we can make this kind of interface Thank you. SDev The msdn documentation of the two classes mentioned above would probably be enough to get you started. http://msdn2.microsoft.com/en-us/library/system.net.httpwebrequest.aspx http://msdn2.microso ...Show All

  • Visual Studio Express Editions mousehover rnd point project

      Hi I am trying to find ideas of where to begin my project for what I guess will be a mousehover event. I need to create a button in vb that moves to a random point within the form without moving off the form, I am asking for help and ideas where to begin hints and that sort of help. I am not looking for answers well at this point anyway. Thank you for your help   DKB Thank you reneeC does this code need to be Dim'd this is what I have at this point can you explain in more detail. Public Class Form1 Private Sub Button1_MouseHover( ByVal sender As Object , ByVal e As System.EventArgs) Handles Button1.MouseHover Dim theRandomXChosen As Integer = 0 ...Show All

  • Smart Device Development enabling NE2000 when launching Saved State

    Hi I've created an image, without the NE2000 option enabled. Then i want to launch my image and to have the NE2000 option enabled. I use the following command : DeviceEmulator.exe /s \tmp\noNe2000.dess /p 000D56FB2057 or DeviceEmulator.exe /s \tmp\noNe2000.dess /p the image is launched, but the NE2000 option is still not activated. Why If i create an image with the option enabled, selecting my netcard, the NE2000 option will be enabled if i launch the image. My purpose is to create an image that will work on several machines. So i can't bind it to a specific netcard. If i finaly succeed to enable the NE2000 option at the image launch, will the MAC address be the one set by the machine that created the image, or will it be set by the machi ...Show All

  • SQL Server Setting child package inner variables dynamically

    Hi, I am trying to execute a DTS on sql server 2000 using the "Execute DTS 2000 Package Task". I can see the inner variables and when I set the values everything works fine. Now I want to pass the values dynamically. How can I achieve this Many thanks Fleo , Jaegd almost pointed out the answer. Thanks for other clues given here. We can change the values of a variable in the Parent Package and pass it through Outer Variables. We donot have any option to assign expression to these inner and outer variables. Thanks Subhash Subramanyam ...Show All

  • Visual Studio Team System Can't execute Team Build - TF30063 error

    Hi, I'm trying to execute a Build on my local machine, but I am getting the following error: TF42056: The build service could not connect to the Team Foundation Server: TF30063: You are not authorized to access http://buildServerName:8080/ I have Team Foundation for Testers installed on my machine. I know that I actually can access port 8080 on the build server because that's where our code lives, and I can access and modify the code. I'm really stuck as to how to get builds working. Can builds only be done on machines that have Team Foundation for Developers on it I hope not, because it wouldn't make any sense that a tester couldn't launch a build so they could run their tests. Any help would be greatly appreciated!! I am at a ...Show All

  • Visual Studio Express Editions Has anybody run Visual C# Project for lesson2 and lesson3?

    hi, when i try to run the project for lesson2, i have some errors; If a method in a class library has been removed or renamed, recompile any assemblies that reference that method. the method is; Application .EnableRTLMirroring(); but i don't know how to recompile the assembly.... and here are the other warnings and errors; Warning 1 The designer cannot process the code at line 224: this.statusStrip1.Raft = System.Windows.Forms.RaftingSides.Bottom; The code within the method 'InitializeComponent' is generated by the designer and should not be manually modified. Please remove any changes and try opening the designer again. D:\Documents and Settings\Emre\My Documents\MSDN\Absolute Beginner-Lesson02CS\Lesson02\Form1.Des ...Show All

  • SQL Server OpenRowSet and OpenDataSource Fail on Production to open Excel data

    The following statement fails when using SQL Analyzer under sa but works on all of our development and staging server. All are SQL Server 2005 SP1. We upgraded production over the weekend from SQL Server 2000, creating a new instance machinename\SQL2005. SELECT * FROM OPENROWSET ( 'Microsoft.Jet.OLEDB.4.0' , 'Excel 8.0;Database=d:\data\test.xls' , 'SELECT * FROM [Sheet1$]' ) The error we are getting only in prodcution is: OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "(null)" returned message "Unspecified error". Msg 7303, Level 16, State 1, Line 1 Cannot initialize the data source object of OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server &q ...Show All

  • Visual Studio Express Editions Is the '?' in this code a typo: public virtual long? SiteId { get; set; }

    Does the question mark in ‘long ’ mean something I'm using a third party library. The VisualStudio 2005 C# compiler is complaining about this conversion. Argument '3': cannot convert from 'long ' to 'long' (NOTE: if I do an explicit cast to long my code builds); VisualStudio displayed the class definition Metadata, I’ve extracted these two lines. public class ControllerEntity : EntityBase2, ISerializable public virtual long SiteId { get; set; } I could not find anything in the Visual Studio documentation to indicate that the symbol ' ' means anything but then I recently found that '^' has a special meaning to the garbage collector. So I thought I'd ask. Here is my code snipit: ControllerEntity TestController = ...Show All

  • .NET Development DataSet Vs DataReader????

    When using the dataset, is this code snippet the same as when using the SqlDataReader and doing like this while dr.Read() string value = "" Value = dr["database value"].ToString() when using the Dataset Is the code assigning the values to the actual rows of data with all the information that is held within the dataset..So since this Dataset has a collection of tables and rows is it safe to say that u are accessing the data elements like this..... System.Data.DataSet ds = SqlHelper.ExecuteDataset( SqlHelper.ConnectionString, "CustomerNotes_SelectByCustomerNoteId", new object [] {CustomerNoteId }); CustomerNote myCustomerNote = new CustomerNote(); myCustomerNote._CustomerNoteI ...Show All

  • Software Development for Windows Vista Looking for some help on where to start...

    Hi all, I've been looking around and around in samples and posts in the forum but I found nowhere a way to help me on my noob question. It seems like most of you have been using InfoCard in a web environment. Well, I'm willing to use it in a smart client application. Question 1.How can I request Windows Vista to prompt the Card selection to the user... Simple huh Question 2.Then, what I want to do is quite different from the standard challenge request web process: All the users of the application will open a local session (managed by the application) in order to provide an offline mode while making sure I got all the require information. Once the user enters in the online mode, I want to pick the card information and send ...Show All

  • Visual C++ About this Forum

    I read the heading of this forum, which says " General questions about Visual C++ 2005, including the development environment, libraries, setup, debugger , samples, and documentation." Seeing the word "debugger," I asked a couple questions about the VS2005 debugger, and they were both moved to a debugging forum.  In which case, I wonder why the word "debugger" is part of the description of this forum.  Anyway, the questions being moved wouldn't be so bad, except that nobody has answered my questions on the much lower traffic debugger forum.  The questions can be found here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=658102&SiteID=1 http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=654161& ...Show All

  • Visual Studio Express Editions how to make password(login form) case sensitive?

    how to make login form password case sensitive u mean this Option Compare Binary If "red" = "RED" Then MsgBox("DIff") Else MsgBox("Same") End If what if items in database dim pass as object = nothing pass = theDataReader("password") Option Compare Binary if pass <> textbox1.text then msgbox ("diff") else msgbox ("same") end if ...Show All

  • .NET Development Is it possible in ASP code to...... (spreadsheet orientated questions)

    Hi Im the novice thrown in at the deep end at work with several issues: Ive got an ASP file calling a database using SQL. Once you hit the "go" button, it puts this data into an Excel file, under a new window (still showing the asp file in the address bar). Currently : 1) When a spreadsheet is displayed, it is in an editable Excel format. Is it possible to lock the file automatically when its opened or password protect it ********************************************************************* 2) If a spreadsheet window is open and you try and open a new one, the old one pops-up/is still there. Need to be able to close the old one and re-open a new one automatically. ********************************************************** ...Show All

  • .NET Development Change SqlDataSource Select Command at runtime

    Good Day, I am very frustrated with the MS SqlDatasource. My goal is to simply change the selectcommand property of a sqldatasource at runtime. I have a query screen to gather various inputs from the user like start and end dates, user's last name etc... very simple. Now, I simply wish to change the selectcommand and rebind to my data grid or reportviewer objects. this .SqlDataSource1.SelectCommand = "SELECT * FROM [PDReports] WHERE ([UserName] = 'susanl')" ; this .SqlDataSource1.DataBind(); Like the above. Should be very simple. Not. Does anyone have any clue how to do this. Many other posts reference the great capabilities of paramterizing the query with controls on the screen etc... This is great if you have al ...Show All

  • Windows Forms How can i launch web pages in windows forms

    How can i launch web pages in windows forms Hi Place an Active X Control named AxWebBrowwser on your form and call the NavgateURL Method, will browser a web page on Windows Form. Add a control to the tool bar from Com Component Tab "Microsft Web Browser" and place it on the form in VS 2003, In VS 2005 this control can be found in the last row of the All windows Form Tab in the tool Box. ...Show All

©2008 Software Development Network