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

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

orcmid

Member List

Chris Muench
nhaas
ly4587
Hila123
HamidFULL
Kaychoro
RADIOGENERIS
thomas_woelfer
Jangid
akira32
Hazara
JazW
R Raghu
Vinod Sa
Abualnassr
andrew17
Joos
MichaelD!
Lakshmi1341
sureshramayah
Only Title

orcmid's Q&A profile

  • .NET Development Using client to handle server events

    I'm trying to use a client to handle an event on on a server. I have managed to do this successfully, however my solution seems somewhat convoluted... 1. Register server channel and all appropriate well known types on the server , and register client channel and create a new object from the server on the client . 3. Instantiate a new object from my custom-made EventProxy class and assign a delegate from this class to an event on the server. 4. Use this EventProxy object to handle the event fired on the server , then within this action, fire another event on the EventProxy class (so, we're on the server at this point). 5. Assign a delegate on the client to handle the event fired by the EventProxy class; so no ...Show All

  • Visual Studio 2008 (Pre-release) Access Database Connectivity in WPF Applications

    Hi everybody ... i am building a WPF application and i want the application to access a database that i made using Access 2003. string myConnStr = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=D:\\Folder\\Dbase.mdb; User Id=admin; Password=" ; OleDbConnection myConn= new OleDbConnection (myConnStr); myConn.Open(); uptil now there is no problem and if check myConn.State --> it gives opened :)\ Now i want to start displaying records and manupilating them , so i wote : string myQuery = " SELECT Name From User" ; OleDbCommand cmd = new OleDbCommand (myQuery, myConn); OleDbDataAdapter da = new OleDbDataAdapter (cmd); DataSet ds = ...Show All

  • Visual Basic IsDate causing System.IndexOutOfRangeException

    This should be a very simple section of code with an obvious result. The code itself was extracted from a larger project to narrow down the location of the problem. In the larger project, I am just trying to verify that the user input is valid. The problem is using Visual Basic in Visual Studio 2005 Version 8.0.50727.42 The simplified version of the code: The form has a standard button (Button1) and a standard Textbox (Text1) Public Class Form1 Private Sub Button1_Click( ByVal sender As Object , ByVal e As System.EventArgs) Handles Button1.Click Dim boolResult As Boolean Dim strText As String = "Test1" boolResult = IsDate(strText) 'System.IndexOutOfRangeException occurs here ...Show All

  • Software Development for Windows Vista Can Command Prompt in Vista be in Full Screen Mode?

    Hi to all most respectful software developers, Does anybody know that how to make the command prompt to be in full screen mode As i know previously in window xp, user only need to press ALT+ENTER. But in Vista Build RTM, it shows that "This system does not support fullscreen mode". Is there any alternative way to make the command prompt to be in full screen Thanks in advance Brian Hi EDVE7 I know that using the Standard Graphics Adapter driver can support the Full Screen mode. But i never tried to install Graphics XP driver inside Vista OS. Does this mean that driver can enable back the Display mode in command prompt Hi Peter Peng, I did send out an email to make a wi ...Show All

  • Visual Studio 2008 (Pre-release) XAML to C# question

    Hi, I have this code in XAML and i want to translate it to C#:  < Viewport3D Focusable="true" Name="objViewport3D" ClipToBounds="true" Grid.Column="1" Grid.Row="0" > so i created a Viewport3D  object : private Viewport3D objViewport3D = new Viewport3D(); and added: objViewport3D.Focusable = true ; objViewport3D.ClipToBounds = true; but what i need to do about: Grid.Column="1" Grid.Row="0"   Thanks, Omri Grid.SetColumn( objViewport3D, 1 ); Grid.SetRow( objViewport3D, 0 ); Refer to this blog entry for info about how to use attached properties programmatically: http://www.infusionblogs.com/blogs/jsmith/archive/2006 ...Show All

  • Visual Studio Express Editions Program info

    Look at this image. http://img239.imageshack.us/img239/937/1dp2.png see where it says Application1 \ Home how can i change this ...i looked all over but cant find Lolsi just found it ..thx to u i looked closely and found it ..but its in propertes->Application->Assembly information thx ;) ...Show All

  • SQL Server How to integrate reporting services with ASP.Net

    Hi My current situation is how to integrate my application written in asp.net to link to my report server's report  as by default anonymous user can access my report server's report without any authentication. how to configure to make the report server by using form authentication before access the reports  My Application Configuration Web application (Vb.Net) - http://192.168.1.18/mobiFO   Reporting services - http://192.168.1.19/reportserver/reports/mobiforeport DBMS - MS SQL Server 2005 developer edition + Reporting Services 2005 SP1   Thanks for your help. anything can email me at jack0726@yahoo.com   the sample your meantion is for RS 2000 and i ...Show All

  • Visual C++ Is the function printf thread safe?

    Hi, Is the function "printf" thread safe Visual studio 2005/2003 C++ compiler. We are seeing random crashes in a multithreaded environment mostly in printf and are trying to investigate in this. - Kedar Kedar Borhade wrote: The problem for the crasher was our linking to non-multithreaded version of libraries. Our build script should have set USE_LIBCMT flag but was missing this for some reason. You can find more about this on MSDN Sorry about being lazy and updating this immediately. Hope this provides help to someone whose code crashes in printf for no reason ;) Thanks to everybody who helped figure this out I haven't had this specific issue, but it helped shed ...Show All

  • Microsoft ISV Community Center Forums Bundling OA2007 Express with our product

    Our company is interested in bundling a free Microsoft product (Office Accounting Express) with our solution. This means that we will include a copy of OA2007 Express in our installer. Is this possible Iif so, is there any website/resources you can recommend for me to get more information about this process I understand that since OA2007 Express is free, it is not part of the ISV licensing program. Thanks! Kathleen Hi Kathleen, Per the OAE team, any ISV can include Office Accounting Express as part of their solution. There are 2 ways to do this: 1. An ISV can download the fully packaged Office Accounting Express (self extracting executable) from www.ideawins.com and distribu ...Show All

  • Visual Studio Express Editions [VB2005] Reading from serial port, pls help!

    Im currently working on serial port RS232 communication, im able to set configurations thru serial port to my device, but having problems reading from the port. Ive been advised that there're two ways of doing it, which include write the program so that the incoming data is stored inside certain file on computer and data can be extracted straight away from it..well another one, is extracting the data from the computer temporary memory.. but i have doubts regarding those methods and totally have no clue of performing the task, can someone please give me some guidelines of reading data from serial port thanks in advance! Hi Wencey, Exactly, what is your problem DataReceived is an event - not a class, an ...Show All

  • Visual Studio Excel Access Violation, Next version release

    I have a simple report holding one matrix, embeded in an apsx page. When I attempt to convert to excel, excel (2003) crashes with "0xc0000005 Access Violation". I have generated the xls document using the toolbar and directly to file with the localreport.render method - both produce the corrupted xls document. I am currently tasked with finding a reporting solution for our company. It's obvious from working with the control and UI, as well as the problems on the forums, ReportViewer is still in very early stages of development. So that I have all the latest information, when is the next release planned and is there a test version or bug fix list for that release In case anyone does read these, th ...Show All

  • SQL Server Where is Auto Save in SQL Management Studio???

    I've done this twice now, I loose my sql script because I inadvertantly shut down management studio and a frantic click of buttons I do not click save! (yes I know, user error). What I am looking for is a function like in Microsoft Word where it saves your current document periodically. Where do I set that in management studio so I don't loose my scripts and that my changes are saved X # of minutes Regards, Matt Does Word's auto-save feature keep the interim files after you close and choose, "no, do not save my changes" I believe the only time when those files are kept around is when the application crashes. In your case, Management Studio isn't crashing, is it If you'd like to see ...Show All

  • .NET Development Problem with Reading Multi Page Tiff File

    Hi I am trying to read a multi page Tif file containing 20 pages from one place and storing it in to different location. But only one page of the tif file is saving to the destination location... while saving remaining pages not creating. I have tried both WebRequest Class & File Stream Class . Code WebRequest request = WebRequest.Create(" http://localhost/TiffSamples/temp128.tif "); request.Credentials = CredentialCache.DefaultCredentials; HttpWebResponse response = (HttpWebResponse)request.GetResponse(); Stream dataStream = response.GetResponseStream(); System.Drawing.Image img = System.Drawing.Image.FromStream(dataStream); img.Save(@"d:/temp.tif&q ...Show All

  • .NET Development problem service starting from web app

    i can working on windows services. but i can writing on asp 2.0 and starting service on asp.net serviceController sco=new ServiceController("ServiceName"); sco.Start(); has error =Cannot open "ServiceName" service on computer '.' have error when start service. any idea Make sure the ServiceName actually exists. Remember that the services' Display Name may not be the same as its Service Name. Also does the user who is running the ASP.Net 2.0 app have access to start services You may need to run it with a user with higher priveledges. ...Show All

  • Visual Studio Team System Work With Team System Individually

    Hi Although I've heard we can work with Team Suite individually, I can't find "New Project Item" in "File Menu" , What should I do thnx I think you refer to "New Team Project" option in file menu, this option is only avaliable if you have team explorer installed, and also you have one Team Foundation server avaliable ...Show All

©2008 Software Development Network