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

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

NBaua

Member List

JDPeckham
Nick Humphries
Dirty Steve
Fiddel
WayneSpangler
Meera V
prawin
Saqib Jahangir
Gregor Jovan
Andrey Makarov
sladja
d__i___o
ash141vsp2003
thomaskremmel
cullener
Gouranga1
dagfari
huysmans
Testpilot.dk
Gurpreet Singh Sawhney
Only Title

NBaua's Q&A profile

  • Software Development for Windows Vista best practices for implementing the application compatibility

    hi, what can be the possible best practices needed to implementing application compliance for vista environment using ACT tool and framework can u provide me with some links regards, divya How to use Standard User Anylizer http://msdn.microsoft.com/library/en-us/dnlong/html/AppComp.asp frame=true#appcomp_topic29 Best Practices for Least Privileged Environment: Helps with Standard User Anylizer tool in ACT http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnlong/html/accprotvista.asp Application Compatibility Cookbook: Helps with many other issues identified by ACT tools. (Also note the hands-on Lab link) http://msdn2.microsoft.com/en-us/windowsvista/aa904987.aspx ...Show All

  • SQL Server Saving

    Good day Using vb 2005 express I have my grid veiw on the form and a icon to click to save my work. But is there a passage of code I can write to pop up a message box to remind me to save my work when I close my form. Similar to ms office forms when you close they ask you if you want to save any changes. Thanks Rob Hi, if using a dataset you could check the RowState of the included tables. If they are changed you can prompt the user asking for an update. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual C# Newbie Question: creating GIF images from c#

    all, I am new to graphics programming in c# and am looking for a tutorial that will take me from creation of a graphic through exporting it as a gif (or jpeg). I have kind of figured out the creation of the graphic using System.Drawing but am not sure where to go from here. Anyone solved this problem before Many thanks in advance. Kevin Jeff, Thank you, this is exactly what I needed. One other question, does it work with system.drawing objects as well Thanks again, Kevin ...Show All

  • Gadgets Environment Variables and Image Calls.

    Hello, I am trying to Improve a Gadget which forces users to log in to there Administrator accounts to use Backgrounds simply because it was named "Administrator" at the Path. At first I tried using PHP like calls. But didn't work, So I resorted to looking at how the calls are made. I've added this. <!-- //////////////////////////////////////////////////////////////////////////////// //Find Which User is Using the Gadget and SET the Variable - Steven {augrunt} //////////////////////////////////////////////////////////////////////////////// --> <script> userProf = System.Environment.getEnvironmentVariable("USERPROFILE"); userPath = userProf + " \\AppData\\Roaming\\Microsoft\\Windows Photo Galle ...Show All

  • Visual Studio Tools for Office How to program add-in for Outlook without VSTO?

    I am an intern and currently I have access to VS 2003 and VS 2005 both standard edition, and i want to build an add-in for Microsoft Office 2003's Outlook. I don't think they will be buying VSTO 2005. I've browsed and searched on how to build an add-in but sadly most of it are hard to follow or are different because of the versions used. Can anyone point me to the right direction See the listings in the "Please Read First" message at the top of this forum. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=174275&SiteID=1 I recommend the office.developer.addins group, as well as a pure Outlook group. you'll find any number of developers conversant in the various types of COM Add-in ...Show All

  • SQL Server Format coulmn with dates

    Hello All, I've been struggling with this for a few weeks now. I have this table with the following information: 08/10/2006 10:31:13 AM 08/14/2006 1:32:10 PM 38895.396528 38916.584873 38917.5639 38922.398727 38919.482083 9/20/2006 12:01:19 PM 09/08/2006 1:32:02 PM 38894.73316 38918.543229 38926.564954 08/10/2006 12:31:25 PM 08/10/2006 12:31:25 PM 08/09/2006 1:03:25 PM What I'm trying to do is get these dates w/timestamps (38926.564954) into this format 08/09/2006 1:03:25 PM . Please help!!!!! Thanks. Thanks Kenneth. Yes, this is what I'm trying to do, but when I try to format the entire column I receive the following error: Msg 241, Level 16, State 1, Line 1 Conversion failed when converting datetime from character s ...Show All

  • Visual C++ WMI or not WMI?

    Hi! Help me please to recognize situation : CPU USAGE 0%, all windows are not responding when IEXPLORE/EXPLORER waiting for timeout(or searching the net) by using WMI or if i should not use WMI on this case,tell me PLZ how i could do it. (CPU usage=0%,but all opened windows or part of them are not responding while internet explorer or windows explorer waiting for 'timeout' . This situation looks like deadlock or delay for a while,or because GDI does not responce proparly because it cannot redraw window till it gets answer back. ) 10x, Maria. You can not detect such situations. My Expolrer doen't block the system when it is waiting... so it seams more a problem of your systems installation than a programmatic problem. ...Show All

  • Visual Studio 2008 (Pre-release) Using same object instance in different channels

    Hi If I instanciate an object via channel A and use a session the instance is available as long as the channel is open. On another service I use another channel B. Is it possible to use a special instance of the object in channel A in channel B communication Best Regards Bastian Hi, What do you mean by "special instance of object" Do you mean a new instance of Service A or the same instance It you mean the same instance, than I guess you should have a single service that implements both contract A and contract B. Guy Burstein http://blogs.microsoft.co.il/blogs/bursteg/ ...Show All

  • SQL Server Ordering date in asc order ?

    SELECT LEFT(CONVERT(CHAR(11),convert(datetime,task_date),109),3) + ' ' + RIGHT(CONVERT(CHAR(11),convert(datetime,task_date),109),4) as Date, SUM(CASE a.status_id WHEN 1000 THEN b.act_point ELSE 0 END) as Programming, SUM(CASE a.status_id WHEN 1016 THEN b.act_point ELSE 0 END) as Design, SUM(CASE a.status_id WHEN 1752 THEN b.act_point ELSE 0 END) as Upload, SUM(CASE a.status_id WHEN 1032 THEN b.act_point ELSE 0 END) as Testing, SUM(CASE a.status_id WHEN 1128 THEN b.act_point ELSE 0 END) as Meeting, SUM(CASE a.status_id WHEN 1172 THEN b.act_point ELSE 0 END) as Others From task_table a,act_table b where a.status_id=b.act_id and a.user_id=(select user_id from user_table where user_name='Raghu') and a.task_date like '%/%/2006' GROUP BY L ...Show All

  • Windows Forms Controling Mouse

    Hi, I would like to write codes that can control the mouse movement by using C# but i have no idea how i should go ahead with it. I am currently working on a project named "motion detection to control pc". It is a project which can assist paralysed patient to access the pc using facial movement. I have a webcam capturing movement of head and translate it to mouse movement. I need to write some simple codes which can command the window mouse to move and click on the icons on the desktop when the webcam detect motion. I have written a simple coding using Cursor.Position: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ public void MoveCursor() { if(!this.Cursor.Equals(Cursors.Default)) { this.Cursor = new Cur ...Show All

  • Windows Forms Add a bitmap to a richtextbox.

    Hi, I am attempting to print a results page to a printer. I have set up a .RTF file with a header and can load it into a richtextbox and add additional text to the file. I can save the new contents to a .RTF file, and using a wonderful utility I found embedded within the Help system, I can print the richtextbox to a printer. What I can't do, is add an image object to the richtextbox before I print it. I want to do this so that I can add a graph to the results page. Does anyone out there know if this is possible and if so, how to do it I am still struggling to understand C#, so any code would be more than welcome!! Many thanks John Woodiwiss Hi, Sorry for the delay in ...Show All

  • .NET Development System.UnauthorizedAccessException when creating registry keys - Please help

    Hi, I am trying to write into the registry from my application and I get the below exception: System.UnauthorizedAccessException was unhandled Message="Cannot write to the registry key." Source="mscorlib" StackTrace: at System.ThrowHelper.ThrowUnauthorizedAccessException(ExceptionResource resource) at Microsoft.Win32.RegistryKey.CreateSubKey(String subkey, RegistryKeyPermissionCheck permissionCheck, RegistrySecurity registrySecurity) at Microsoft.Win32.RegistryKey.CreateSubKey(String subkey) at ReadFileNames.Form1.Form1_Load(Object sender, EventArgs e) in D:\Bancassurance\OFX Specs\OFX2.1.1\ReadFileNames\Form1.cs:line 35 at System.Windows.Forms.Form.OnLoad(EventArgs e) at System.Windows.Forms. ...Show All

  • .NET Development newbie question on COM versus .Net Remoting

    Hi, I'm looking for a simple "yes or no" kind of answer. I'm just getting started building some applications using .Net remoting, and I'm adapting some applications that I originally wrote to use DCOM. My question: As I perceive it, with my DCOM app, I was able to have my client app tell my server machine to start running an .exe that had not previously been running (i.e. wasn't in memory on the server machine), then I could have the client start using objects created by the server .exe. As near as I can tell, in .Net Remoting, my server application has to already be running on my server machine , before I can have a client instantiate objects out of it. If this is true, that's fine, but I can't find anywhere in the docu ...Show All

  • SQL Server DR Question

    We are planning for DR setup. Currently the database is located on shared disk storage. During DR, if we connect the database in the shared disk storage to the DR server. Will we be able to start up the SQL server at DR server The IP address of the DR server will be different from the production since on different network segment. Is there any other things we need to take care of, such as user logins Please comment. If what is on the shared disk is your user(application) database, then you'll need to manually sync up all other data such as logins, stored procedures, maintenance jobs, etc. They you would need to attach the database to the instance on the new node. ...Show All

  • SQL Server Help with finding the time diff

    I am looking for some guidance on what would be the easiest way to obtain the difference between two times and add the result to a another column within a table. For example: Column1 Column2 Column3 11-29-2006 23:32:35 11-29-2006 23:37:21 00:04:46 As you can see from the example above I am wanting to obtain the time difference between the values in column1 and column2 while adding the result to column3. I have read that this can be done and have been told this can be done. But I have yet to figure out a way to make it happen. Any suggestions would be appreciated. Thanks! Try this, --START CODE declare @MyTime1 datetime --Initial Date ...Show All

©2008 Software Development Network