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

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

bsrprakash

Member List

DMottorn
Lorenzo77
outcast1881
alpha202ej
Captain Jack
John Oliver (UK)MSP, VSIP
scripteaze
huabing78
JeroenMeijer
Rassol
jasse_91
Wheeldo
DEC ERO
gkostel
Lameck
Jay Longenderfer
e. ogas
davros51
Krutika
AndyL
Only Title

bsrprakash's Q&A profile

  • Connected Services Framework Soap faults from Core services

    Hi, I had implemented an operation with action "SessionActions.Fault" to catch all the faults coming from Session component. I was not interested in details, but I wanted to ensure any faults coming from session should be handled gracefully. However I noticed that the operation was not invoked when Session raised AddRemoveParticipantsFaultfaults. I had to write a seperate operation to handle AddRemoveParticipantsFaultfaults faults. Is it correct to say action "SessionActions.Fault" will not catch all faults coming from Session Thanks, Ashish Malhotra It appears that an extra forward slash at the end of the namespace does the magic. So please remember to do that whe ...Show All

  • SQL Server Preview has data but no columns returned

    In my SSIS package, I connect to an external SQL server database. This external database supports a stored procedure that I need to execute to "retrieve data". So in my package, I set the DataAccess Mode property of my OLEDB datasource to "SQL Command" and I provide the command EXEC <proc_name> <Param>,<output_param>. (The proc has an output parameter). The preview shows all the columns and data, but somehow no columns are returned....so when I try to link this data source to a copy column task, I get an error saying the source does not have any columns...any idea why this could be happening. Thanks - Manmeet Unfortunately that didnt work too...this is what I did...I now have this variable that st ...Show All

  • Visual Basic How Can I Determine What Link The Mouse Just Clicked?

    I'm trying to create a download manager, however i don't know how to tell if the mouse just clicked a link that doesn't tell the webbrowser to go someplace. I need to know this so that i can tell the program that when this happens, to start asking to download. Could someone please help me If someone is willing to, do you need some more information Is this download manager - to download a .NET application If so then if you publish you application using click once - it creats a publish web page - which you click on the install link and it installs the application. So all you need to actually do is publish your application to a web server. ...Show All

  • Visual Studio Express Editions Compile and Run W/o .Net Framework

    In a perfect world, the .NET framework would come with Windows. However, I've written a simple console program that performs simple chemistry math problems, so far, the only computer I can use it with is the computer I used to write it. Is there any way to compile a program with Visual C# Express without having any references to the .NET Framework It only uses System, so I assume there should be no problems here.I'd appreciate all feedback, regardless of wether I can or can't. A .NET app is no different from a VB6 app. Just as a VB6 app requires the VB6 runtime support DLLs to be installed (msvbvm60.dll, etc), a .NET app requires the framework to be installed. Download it from here . Windows Vista will hav ...Show All

  • Visual C# Join W2K Domain

    Hi, how can i join a Workstation to a W2K3 Domain with a C# Prog Please post a code sample. Andi Has anybody got this code to work. I get an error # 1323 ie. unable to update the password. The value provided as the current password is incorrect. Anybody has any ideas Any help appreciated. thank you. ...Show All

  • .NET Development How to find the last occurence of <p> within a textblock tiltled <h2>??

    I have html files with the following structure: <h2>article title</h2> <p>paragraph 1 - bladiblah di blahblah</p> <p>paragraph 2 - bladiblah di blahblah</p> <p>paragraph 3 - bladiblah di blahblah</p> <p>paragraph 4 - bladiblah di blahblah</p> <p>paragraph 5 - bladiblah di blahblah</p> <h2>article title</h2> <p>paragraph 1 - bladiblah di blahblah</p> <p>paragraph 2 - bladiblah di blahblah</p> <h2>article title</h2> <p>paragraph 1 - bladiblah di blahblah</p> <p>paragraph 2 - bladiblah di blahblah</p> <p>paragraph 3 - bladiblah di blahblah& ...Show All

  • Architecture Software Development Lifecycle

    Hi We hear so many things nowadays about Softwate Development Lifecycle, Architechture, UML, Design Pattern etc etc. I know it may not sound good to some of you. But can anyone list out the activities of a Software Development Lifecycle. Lets say I want to develop a brand new product / project what stages would be involved I mean how would I implement all the things I have mentioned above to the development. I have some idea on all the things I have mentioned above. What Frank means to say is, always confirm by email and keep an archive! This way, when a review comes along, you can smack people around with it if they are trying to get you out and just maybe, they will leave you alone the next time around. I like ...Show All

  • Visual Studio using two tables from a dataset to one report ??

    Hi I'm using this to fill up my report private void createReport() { DBConnection DBConn = new DBConnection(); OleDbDataAdapter myDataAdapter = DBConn.getDataFromDB(); DataSet dataReport = new DataSet(); myDataAdapter.Fill(dataReport,"myPersonalInfoTable"); myDataReport aataReport = new myDataReport(); aataReport.SetDataSource(dataReport.Tables[0]); crystalReportViewer1.ReportSource = aataReport; } But when I set "aataReport.SetDataSource" I can only send one table at once.... How can I send all teh tables from my dataset to the report I tried using aataReport.SetDataSource(dataReport); but the application crashes... Any Idea and an example Thanks Before ...Show All

  • .NET Development How to use IDataAdapter ??

    DataSet ds = new DataSet (); try { IDbCommand fieldCheck = connection.CreateCommand(); fieldCheck.CommandText = "DatabaseFieldCheck" ; fieldCheck.CommandType = CommandType .StoredProcedure; //Add Parameters //Table Name IDataParameter tableN = fieldCheck.CreateParameter(); tableN.ParameterName = "@tableName" ; tableN.DbType = DbType .String; tableN.Value = tableName; fieldCheck.Parameters.Add(tableN); //Table Field IDataParameter tableF = fieldCheck.CreateParameter(); tableF.ParameterName = "@fieldName" ; tableF.DbType = DbType .String; tableF.Value = tableField; fieldCheck.Parameters.Add(tableF); //Pass the value IDat ...Show All

  • Visual Studio Tools for Office Publish Word template

    Hi, I have a VSTO project with a Word template, in this project I have a TaskPane. That TastPane is supposed to show up on start up. I all work fine when I run it form VisualStudio, but how do I get it to run “outside” VS, on the client computer I have tried to include a setup project, but I can’t get it to work. Is there anyone there have a HoTo or a link to one /Tue Have you gone through this information (from Mike Hernandez's "Read this next" posting at the top of the forum) VSTO Deployment These whitepapers are interrelated, so be sure to review both of them. · Overview http://msdn.microsoft.com/office/default.aspx pull=/library/en-us/odc_vsto2005_ta/html/officevstowindowsinstal ...Show All

  • .NET Development What happened to App.Config files in VS 2005 ?

    I'm not sure where the proper place for this question is, but I have been using Visual Studio 2005 for a little while now, and I noticed that there are no more app.config files. What happened to them What replaces their functionality Is there any good documentation you can point me to on where this went Thanks Nay, the CF does not natively support config fie however there do exist home grown solutions to do this such as this one on Code Project . ...Show All

  • Smart Device Development how to play mp3/midi/wav/wma file on smartphone?

    which api i can use tks This forum is primarily monitored by Visual Studio for devices group. Please check this link for more appropriate forum for this type of queries. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=286724&SiteID=1 Thanks Srikanth Bogadapati< ...Show All

  • .NET Development how to display text on the image

    hi, I have displayed the image in the picturebox . i can do zooming of the image. I would like to display some text on the image without affecting the zoom of the image can anyone help me in this regards, Singam. By programatically what I actually meant was....setting the text using by some picturebox property.(which is not available)The example mentioned will be creating a new image and embedding a new text into it.Your example is good ...Show All

  • Visual Studio Express Editions Serial Port: Writing Codes in HEX, not in ASCII

    Msgbox ("Hello World") :) I have some troubles with my serial Port. This time, I am adressing a DLP Projecotor. (PJ). The PJ listens only to commands it receives in hex format. The command 02h 01h 3e 03 makes the PJ switching on. When I write ComPort.Write("02H" & "01H" & "3E" & "03H") to the PJ, my Serial Port Monitor(monitoring HEX) says 30 32 48 30 31 48 33 45 30 33 48 Thus I wrote some ASCII to the PJ and the Oj does nothing. When I write ComPort.Write(Chr(2) & Chr(1) & Chr(122) & Chr(3)) my portmonitor is saying: 02 01 7A 03 and the PJ reacts correctly. It is quite long winded changing the decimal 122 to hex 7a. Now we come to my question: Is there a chance of ...Show All

  • .NET Development I'm new, and I am very confused

    Hi, before I begin, i'll tell you a bit about where I am with programming. I'm trying to learn web services with VB2005, and I'm having alot of trouble finding reliable tutorials that exceed "HelloWorld." HelloWorld is a good place to start, but right now I'm trying to connect to NorthWind. I have no idea where to begin, aside from (I think) using System.Data.SqlClient. If you would at least point me in the direction of a nice tutorial site (other than W3schools, i've cleared through every piece of info I could find on that page), I would be most appreciative. If you are going to take the time to explain what I should be doing (which would be VERY appreciated, I know how time consuming it is) please explain yourself as t ...Show All

©2008 Software Development Network