Software Development Network Logo
  • Visual C++
  • Windows Vista
  • Visual J#
  • Architecture
  • Windows Forms
  • Microsoft ISV
  • VS Team System
  • Game Technologies
  • Visual FoxPro
  • Visual Studio
  • Windows Live
  • .NET Development
  • VS Express Editions
  • Visual C#
  • SQL Server

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

Harini

Member List

Dave#
Codoc
Bakiya
EdwMad
ghamm
rbedick
Andrew Babiec
crab_era
DVCasmey
Anujoy08
aman anand
darkmark327
Soheil Saadat
Davester
oxfordSteve
Herwin Grauel
memnoch
basmar
FerroFlunky
gpetrosh
Only Title

Harini's Q&A profile

  • Visual C++ CRichEditCtrl and Justification

    Hi, If i use a CRichEditCtrl to edit text, in particular justfying text to the left, right, center etc and doing this using the SetParaFormat method. How can I justfy that text, when I need to programtically to say the right, without using the control or more specifically using the ctrl in a dialog, such that the user doesnt see whats going on Many thanks Will I don't understand what you want to do! If you want to change the alignment of the text you already found the function SetParaFormat. Using this function changes the layout "programmatically" and "the user doesn't se ...Show All

  • SQL Server WCF Transport Channel for Service Broker

    I saw a posting or read a blog somewhere that mentioned custom WCF transport channels where created for interacting with ServiceBroker. Has anyone read or heard something similar If so, where can I get them Thanks. Phil There was a prototype of a WCF channel done a while back, but nothing production worthy has been built and shipped to-date. What is your specific interest here I'm interested to know what you would value most in this realm. For example, are you seeking a rich object model that exposes the Service Broker semantic; including features not found in other queuing systems Emphasis: ...Show All

  • Windows Forms How to change control properties in Form1 from Form2?

    Hello, I have Form1 - the main form with some controls including a button. I have Form2 - the properties form with a combobox and button. The user can select the colors of a button in the combobox in Form2 and press "OK". What code should I add to "OK" so that the user can change the colors of a button in Form1 Mateusz Form2 should expose a property that gives you the color selected, then if the user pressed OK, Form1 should read this and set the color of the buttons with it. I hope your forms are not named Form1 and Form2 :-) ...Show All

  • Visual Studio 2008 (Pre-release) Writable Bitmaps

    I was in conversation with some WPF team developers a little while ago on the subject of imaging. For my project I really need the ability to write data into bitmap objects, but right now WPF doesn't support this. In the conversation it was mentioned that writable bitmap support might be added in following months. Is this the case Will that functionality be added I do hope so! After considering all of the feedback from the forums, WriteableBitmaps were added. Please look for them in an upcoming release… ...Show All

  • Visual Basic Playing a sound file

    This may have been answered before i am not sure, i am running Visual Studio 2005 beta, i would like to know how i can play a sound file in the background when someone opens a form. Any ideas I am using the my.computer.audio.play function to play an alert. The alert is the result of checking a database for new entries every 10 seconds. If there is a new entry that the software has not seen yet, it uses the VBPower Tools Notification Window to pop-up a message. What I want this to do is play the audio at that same time. My problem is, I am unable to get audio to play inside of a timer's tick event handler. Does anyone ...Show All

  • Visual Studio Express Editions Why can't I see all .NET library classes?

    I've downloaded VB Express Edition just one week ago and all seems right. Now i'm trying to program a simple application, an UDP_Client. It would be easy making use of the system.net.sockets namespace and the UdpClient Class. But when I try to add the "system.net" reference to the project (double-clicking "my project" in solution explorer, in the references tab), only a few "system.xxx" namespaces appears ready to be added (and system.net is not there). I follow the next steps: Open the IDE, select "New Projet", "Windows application", double-click on "my project" in the solution explorer, select the references tab, click "add..." ...Show All

  • Visual Basic How to update a row(s) content in a datagrid

    Hi everyone,      I am using vs 2005 vb/asp .net and I have a datagrid that I need to allow the users the ability to update rows. I have the grid at the point where you click edit on a row and it gives you the text boxes. Once they click update I don't know how to get that value and save it to the DB. Any help would be greatly appreciated... thanks rich I FIGURED IT OUT... For all those that need help! See the code below - I tested it and it works perfectly... thanks to all those that tried helping... rich Imports System.Data Imports System.Data.SqlClient Partial Class cdo_edit_resu ...Show All

  • Smart Device Development How do we embed windows media player to compact framework windows application?

    I am trying to embed windows media player to my C# windowsCE project but it is impossible now. I thought I can do this with the functions of wmp.dll but I can't see them with dumpbin.exe. Is there any solution to embed it to my project without extra program like cfcom. On August 24 tune in for a webcast on hosting ActiveX controls with CF 2.0 ...Show All

  • Visual Studio Intallation of VS2005 beta 2

    I tried to install the new version on A PC with 2 operation system 1. windows 2000 with VS2003 2. Xp Sp1 clean installation For installation I download the standard edition from MSDN developer site. I tried to install it on the Xp system. I get an error code of 2908 and after press ok I get an error code of 1935 with error regarding it assembly component {18A752B8-D6F4-4F1C-B2EA-CA7876F45A03} Can someone help avi Cohen Scitex vision avi_cohen@scitexvision.com Windows 2000 requires Service Pack 4. XP Requies Service Pack 2. ...Show All

  • Visual Studio Express Editions Distributing Applications

    Can somebody please tell me where I can find info on distributing the applications I create with VB.NET 2005 Express I have looked around and a lot of sites say that there isn't a facility to do this but I have got the "Publish" button. I need a complete guide so that everything works - did a little test and sent the setup.exe to a friend but he couldn't use it. Brought up an error. Can somebody help Thanks in advance, VB Express supports ClickOnce deployment. Check out http://msdn.microsoft.com/smartclient/understanding/windowsforms/2.0/features/clickonce.aspx and http://msdn2.microsoft.com/en-us/library/t71a733d.aspx ...Show All

  • Visual C# How do I make messagebox central in the other window.

    Basicly just a "pop up" message box that comferms that the data has been saved but it isn't central to the other windo it just pops up were it whants to :D well if you have some code to fix it would make me a happy girl :) Are you asking for a new window that isn't modal to the window opening it Who would close the window Do you need the window to close on its own ...Show All

  • SQL Server fix missing value

    Can SSIS detect the missing value and replace it with some reasonable value (e.g., maximum, median, average, etc.) thanks   Yanbing Hu wrote: Thanks. But if there is a way that SQL Server can automatically figure out a reasonable value used to fill in the missing value I mean I do not need to specify a value to replace the missing value, but SQL Server will figure out one Thanks Well surely that depends on your criteria for deciding what the missing value is. Can you give an example -Jamie ...Show All

  • .NET Development remote server problem

    hi, This is my problem.below System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.Net.WebException: The remote server returned an error: (500) Internal Server Error. at System.Net.HttpWebRequest.CheckFinalStatus() at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at System.Net.HttpWebRequest.GetResponse() at ScripsWebService.Scrips.DownloadBulkDeals(String sflag, String dd, String mm, String yyyy, String ddTo, String mmTo, String yyyyTo, String dflag, String bulkblock) in c:\inetpub\wwwroot\ScripsWebService\Scrips.asmx.vb:line 139 --- End of inner exception stack trace ...Show All

  • Visual C++ Bufferoverflowu.lib for amd64 is missing in whidbey beta 2

    Lets say you compile some code with the latest PSDK for AMD64 cpu. Then you compile your files into a library and expect users to use that library. However because of the security code there is a dependency for using bufferoverflowu.lib on the PSDK since it uses old CRT code. If you use #pragma comment(lib, "bufferoverflowu.lib") then the file must exist to be able to succesfully link. This is a problem if you compile your code with the PSDK and link with Visual Studio 2005. So to solve this: 1. Can I disable the need for the symbol __security_check_cookie which is the purpose of bufferoverflowu.lib (e.g. through a compiler flag) 2. Can we ...Show All

  • Visual Studio Express Editions How do I test for null date in SQL table?

    Visual Basic 2005 Express: SQL won't permit null dates in a table. I would like to test for this condition and replace the null date with a DefaultDate (01/01/1901). How do I test for a null date in an SQL table The following code gives an error saying that DBNull is a type and cannot be used in an expression. If PatientBindingSource.Current( "BirthDate" ) = DBNull Then PatientBindingSource.Current("BirthDate")=DefaultDate End If Did you check the field values in the dataset and the database - did you make the default value change after you created the dataset Changi ...Show All

©2008 Software Development Network