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

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

satya999

Member List

RafaBotero
RenegadeMind
Ian MG Smith
rob_a89
Manoj Kumar Goud
Jason D. Camp
A kid
E-O
Mr. SOAPitStop
senior man
Joseph Stalin
Mani_2006
mitasid
Thymen
Amos Soma
Mike Henrickson
Jesper25539
Debbie M
Ilan D
TimAnderson
Only Title

satya999's Q&A profile

  • Smart Device Development How to read an XML file which is in the web server?

    Can anyone pls teach me how to read an XML file which is returned from a jsp application(e.g. http://192.202.51.61/test/App1.jsp &myID=001 ) I have been searching for long. I found that if my application is developed as a computer application, it works fine. But if I copy and paste the code into a smartphone application, it does not work.... It returns timeout error.... Can anyone tell me how to do this My code is as follows: public string GetFilePath(string sPathType, string sSetupFile) { System.Xml.XmlDocument doc = new System.Xml.XmlDocument(); System.Xml.XmlNodeList nodes; string sOutputPath = null; doc.Load(sSetupFile); nodes = doc.SelectNode ...Show All

  • Windows Live Developer Forums Virtual Earth Bugs & Workarounds

    Here's a short list of bugs/missing items and workarounds we found while developing Atlas using the Virtual Earth API. http://blogs.freshlogicstudios.com/Posts/View.aspx Id=b733b75e-7cd7-4c0c-97b6-2c53d6ce076b Yeah, not cool. I shouldn't have to type O''Fallon into local.live.com to get directions. I'll add it to the list of workarounds. ...Show All

  • Visual C# Easy and Clear sample of how to use a web service

    Hi Y'all Does anybody have a simple code on accessing a web service, there are a lot of web service at xmethods.net but my problem is I have a hard time accessing it coz I don't know how. I was able to add a web reference in my application but im having a hard time coding the actual operation. What should I do Is it similar to the code below WebService oTheWebService = new Namespace_of_webservice() String cTheString = oTheWebService.Access_here_the_webservicemethod().ToString(); textBox1.Text = cTheString; // to display if ever the return value. It would be appreciated if anybody could provide an actual 5 minute guide/sample of web service access. Y'all be cool! Hi Y'all Found out how to add/call a web service, I tried using th ...Show All

  • SQL Server SQLAGENT CAN't START

    SQLAGENT CAN't START this log: SQLServerAgent could not be started (reason: SQLServerAgent must be able to connect to SQLServer as SysAdmin, but '(Unknown)' is not a member of the SysAdmin role). I am receiving the same error. For some odd reason my sqlserveragent will not start. I am using a domain accoutn that does have access to sysadmin on sql server 2005. were you able to get this running. ...Show All

  • SQL Server need advise on DELETE action.

    Hi friends i've a table that has 3 columns that refer to same parent table(foreign keys).am trying to following as part of action. ALTER TABLE dbo.u_childTable ADD CONSTRAINT FK_childTable_MASTER_BATCHTO FOREIGN KEY ( FK_BATCHTO_MASTERID ) REFERENCES dbo.u_master ( MASTERID ) ON UPDATE NO ACTION ON DELETE NO ACTION GO ALTER TABLE dbo.u_childTable ADD CONSTRAINT FK_childTable_MASTER_FEESCALER FOREIGN KEY ( FK_FEESCALER_MASTERID ) REFERENCES dbo.u_master ( MASTERID ) ON UPDATE set null ON DELETE set null GO ALTER TABLE dbo.u_childTable ADD CONSTRAINT FK_childTable_MASTER_SUBDEBT FOREIGN KEY ( FK_SUBDEBT_MASTERID ) REFERENCES dbo.u_master ( MASTERID ) ON UPDATE set null ON DELETE set nu ...Show All

  • Visual Studio Express Editions How to make TABControl look like this?

    Is this posble http://i31.photobucket.com/albums/c386/dfox13/tab.jpg Tabs at the left side and horizontly alligned... If this is not an ordinary Tab Control, what control will I use to make it look like that Thanks in advance! What I mean is... I want my tab control look like the tab control in the picture. Is there a way I can do it in ordinary tab control I've tried your code but it doesn't look the same with the tab control in the my projects form. when I tried that code I can't even read the Tab text/caption/name. I can't set my tab control look like this: |TAB Page1| |TAB Page2| |TAB Page3| |etc | The normal tab control look like this: |TAB Page1| |TAB Page2| |TAB Page3| right Thanks again! More Power! ...Show All

  • Visual Studio Team System running webtest using MSTEST - how to pass context param values to webtest?

    I am trying to run a webtest (using MSTEST) which I am using as part of a setup program (in C#). Everytime I run the setup program, I wanted to run webtest with different context param values e.g server url. Is there a way to pass and modify the webtest context param values in my setup program Thanks. Thanks for the reply, all. I was able to do what I want using Ed's suggestion of setting environment variables. I think this way is easier and cleaner. ...Show All

  • Visual Studio Two objects as datasource

    I have two .net objects to bind in a report. How could I do that What must I use like the report datasource The two objects have public properties. Thanks in advance. Paolo ...Show All

  • Visual Studio Team System Load Testing with Unit Tests. Iterations.

    Hi I am conducting load tests using unit tests as we need to test a non-http based application. One of the things that I need to do is have users go through a sequence like: 1. Logon. Aquire a resource. 2. Repeated data-driven action using the resource. 3. Logoff. Cleanup the resource. I dont know if I am going mad or something but this seems incredibly difficult in VSTS. My issues are: 1. Each iteration of a test results in a new instance of the test class hence resources cannot be kept as member variables. 2. I cannot find a way of distinguishing between a new iteration and a new vuser so I cannot use some kind of Singleton to keep hold of my resources. 3. The databinding does not support multi-iteration type stu ...Show All

  • SQL Server Report Parameters creation via Code

    Hi, I have a report that that needs to be filtered by StartDate, where StartDate is the first day in the week of a specific year. The values will be each week of the year (52 weeks = 52 Start Dates) and the range of years is between 2006 (current year) back to 2003. My questions is how to generate these values for the StartDate parameter. I don't want to define actual database tables to store these values, as it seems like something I should be able to easily generate via some code. After trying it out for while and searching the forum, I'm starting to think I will need to statically store these parameters. Can anyone offer any advice on how to solve this parameter value generation issue Thanks, - Jim ...Show All

  • Windows Forms need to remove the enter key value in datagridview control

    Hi, I 'm getting a description from textbox which has multiple lines. If i display this description in datagridview control every line is accompanied wiht a special symbol of enter key. I dont want to display this special symbol. Please help me in eliminating this. venp--- you could replace the \r\n by String.Empty if this is any help Example: string theOriginalString = String.Replace("\r\n", String.Empty); is this what you maybe after ...Show All

  • Smart Device Development Background Service Application For Smart Device using C#

    Hi, Is it possible to write an application using C# for Smart Devices [compatible to both Pocket PC and SmartPhone] that would run as a Service in the background like Windows Service Application . All I want is to write a service application for smart device that would keep synchronizing with a Sql Server and update its local database by using Web Service. I am through with the Web Service, but could not manage with the Windows Service for Smart Devices. I am badly stuck and have to meet my project deadline, please help me as soon as possible. Regards, Suman You can't write a service with C#, have to use C++ for that. Or write normal C# application and add it to startup. ...Show All

  • Visual Studio Using a Business Object as a Report Source

    I have a Business Object class with a ToDataSet method that produces a dataset. Is there any way that I can call that method, store the dataset in session and then use it as the source in my rdlc report Thanks See: http://www.gotreportviewer.com/objectdatasources/index.html ...Show All

  • SQL Server No compatibilty level 90 option after upgrade from SQL 2000 to 2005

    I did an in place upgrade of my SQL 2000 server to SQL 2005. Now all the system and user databases are set to compatibilty mode 80 and in the options tab there is no compatibilty mode 90 option. How can I set the databasbes to compatibility mode 90 Thanks! Stange thing, did you try using the TSQL command for that sp_dbcmptlevel [ [ @dbname = ] name ] [ , [ @new_cmptlevel = ] version ] 90 = SQL Server 2005 HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Studio Express Editions Hello! World console program exists on startup, also it won't compile under Visual C++ IDE :-(

    Hi, I'm learning C++ for university and have major programs using Visual C++ I have 2 concerns: 1) My program exits on startup, I know the program works since I can see the text message it displays for a split second then the program exits. Here's my code: ============ #include <iostream> using namespace std; int main() { cout << "Hello, World!"; return 0; } ============= I believe something might be missing from my code I'm having to compile this under the "Visual Studio 2005 Command Prompt" since it won't work with the IDE for some reason. In the command prompt I'm using: cl -EHsc hello.cpp to compile the program. 2) And lastly, it won't compile under the actual Visual C++ IDE environment when I choose "Win32 Console ...Show All

©2008 Software Development Network