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

Software Development Network >> SONAL N. SATPUTE's Q&A profile

SONAL N. SATPUTE

Member List

cisco0407
Inetcor
Steve Severance
SecurityException
voevoda
kidwidahair
brohans
Chris Dahl
Paul Yau
Developer Steve
Jassim Rahma
IS dude
MarkOlbert
K. Murli Krishna
Kesava
MMMalik
dork
Joe Zott
mivecxtr
rembrDOS
Only Title

SONAL N. SATPUTE's Q&A profile

  • Software Development for Windows Vista Problem in RC1 - GetDeviceCaps(screen, LOGPIXELSX) always returns 96

    I found unpleasant bug that still exists even in latest Windows Vista RC1. We call SetProcessDPIAware because we want to manually support High DPI mode. In this mode (as earlier in Windows XP) I retrieve PPI value as Microsoft recommends: HDC screen = GetDC(0); scaleX = GetDeviceCaps(screen, LOGPIXELSX) / 96.0; scaleY = GetDeviceCaps(screen, LOGPIXELSY) / 96.0; ReleaseDC(0, screen); But in Windows Vista RC1 it allows return 96, instead of 120 as I set in display properties. I found unpleasant bug that still exists even in latest Windows Vista RC1. We call SetProcessDPIAware because we want to manually support High DPI mode. In this mode (as earlier in Windows XP) I retrieve PPI value as Microsoft recommends: ...Show All

  • SQL Server ways of transferring database between two different servers

    hello friends, I need to transfer my database from one server to database on another server every 24 hours. I can create windows application but it will be cumbersome to write bulk of code . So can u suggest me some service or any other way through query or stored procedure or by job scheduling which can run every 24 hours and move my data from one database on one server to another sql database. Both database systems are sql server 2000 but servers are diffeerent so how to connect them while transferring dbs. Any help is appreciated. regards, max If you are using SQL 2000 (enterprise edition) then you can take help of Log shipping in this case, if not that edition then you can define a maintenance plan to backp the transaction log a ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Mesh Alpha chennal problem?

    Hi All, I tried to draw few meshs in game. But i has some textures problem. The problem is a meshs collistion another mesh, textures alpha chennal has some problem. Below is capture screen. Who can tell me why How to fix this problem http://hk.geocities.com/brian_tsim/error.PNG Best regards, Hi Inaki Ayucar , Sorry, I not very understand how to set alpha ref using c# Can give few example to me Below is my enable alpha test codeing. renderer.Device.RenderState.AlphaTestEnable = true; renderer.Device.RenderState.AlphaFunction = Compare.NotEqual; Best Regards, ...Show All

  • Visual Basic plz help me

    Can i design a website through vb.net Hi Yes & upcourse you can designe a web site with VB.NET, C# .NET and J#.NET. for further detail http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpguide/html/cpconaspnetapplicationwalkthrough.asp ...Show All

  • SQL Server Creating a Database

    Hi. Im brand new to using SQL. I downloaded the SQL Server 2005 Trial Edition (Enterprise Evaluation Edition) and installed it. How do i create a database The only thing i can seem to open is the SQL Server Configuration Manager which just lets me start the Server. Did I install it wrong or open the wrong program If someone could help I would greatly appreciate it. Snyper This should get you going.... http://msdn2.microsoft.com/en-us/library/ms233763.aspx Patrick ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Problem with MSDN 2D animate sprite example?

    I was following the example/tutorial on this page http://msdn2.microsoft.com/en-us/library/bb203866.aspx and I think it may have a problem. It seems to skip the last frame of the image. Here is my example image, it is 256x64 with 4 64x64 frames as specified in the example. http://tehone.com/images/xna/ball-4frames.png If you plug in the code on that page with this image, it skips the last frame of my image. Is there a mistake with the example Or am I missing something Thanks. Btw... If i change the code and get rid of the -1 in the new Frame calculation, then the animation works fine. Can anyone tell me why they would be -1 from the framecount in the first place Thanks again. From this: // class Anima ...Show All

  • Visual Studio Express Editions Schedule access to VB app in time

    Hi, Still working on my 1st VB app.. It's getting closer and closer. Poking around in the savesettings feature = cool! Issue I'm having atm: I want to code access to this app only before 7 in the morning and after 4 in the afternoon. We are using the 24hour notation. Should I be doing something like this: Dim CheckTime As Integer = My .Computer.Clock.LocalTime.ToString( "HH" ) If CheckTime > 7 < 16 Then MessageBox.Show( "Die you Jedi scumbag!") Application.Exit() End If Doesn't seem to work at all.. Any tips Muchos Gracias! Well, I, with my noob-level VB programming, thought this was the only way to get a return value of a 24hour ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DirectInput SHIFT+INSERT

    hi I use DirectInput for keyboard, receiving data through GetDeviceState, why when I press right shift, and then insert. the right shift acts like it is not being pressed, while it is.. (left shift works ok though) In direct Input the Right Shift and the Left Shift is not the same key... DIK_RSHIFT DIK_LSHIFT http://www.paradoxalpress.com/Docs/DX9_out/Keyboard_Device.htm ...Show All

  • Gadgets Downloading and searching a web page...

    Hey. I just got into Sidebar development and have a question. I've already got my gadget displaying nicely, but have run into problems making it functional. My Javascript is really rusty, so bear with me here. I'd like to be able to download a web page's source (HTML, generated HTML from a PHP page, whatever, not like the actual scripted source or anything, just what the end user sees) and then be able to sift through it for a certain element. Specifically, I'd like to download the index of http://www.charas-project.net and find the first link after the source: < span class = 'title' >Last 10 Forum Discussions</ span >< br >< hr > I can probably find the string handling functions to do the latter myself, but the d ...Show All

  • Visual C# Accessing IIS And its Log folder

    Hi all, I want to access IIS and its Log Folder From my application.. Would any one plz help me reagarding this problem.. Thanx in Advance Best Regards ___ Atif Hi, Actually From my code i want to access webserver (IIS) from anywhere either from local location r remote location so that i may access its log folder where it writes its logs.then i want to get the specific Log file to parse.. sorry for weak english.. Thanx ...Show All

  • Visual C++ Functoion Overload Errors

    Im trying to run a static void function which has 1 overload. Whenever I try and use the function with either of the versions: Funcs::Process::FileCode(String^ Filename , String^ Function ); Funcs::Process::FileCode(String^ Filename ); When I try and run either of these the compiler returns the error: Error 1 error C2153: hex constants must have at least one hex digit c:\documents and settings\peter\my documents\visual studio 2005\projects\c++\prorpg\prorpg game engine\prorpg game engine\Form1.h 170 I don't understand why it wants to do anything with hex digits, and at the moment my functions and still blank except for the skeleton. So does anyone have any ideas why this is happening... :( Yes I know that, the f ...Show All

  • .NET Development final year project problem..

    sorry... i dun know where should i post this topic.. i hv a final year project, wan do something wit mobile phone. something like this, computer send a msg to mobile phone, then mobile phone received the msg. a microcontroller is contact wit mobile phone, micop will read the msg and do the things. after tat will reply a msg to computer. my problem is: 1. how to send msg to a mobile phone by write a program. 2. computer how to receive a msg from mobile phone. is it need convert to email or wat i no idea to start, dun know how to move down to the next step, can anyone give me some info or comments thanks a lot you can develop a .NET based application both the PC and the Windows Power ...Show All

  • Visual Studio Team System Crash reading debug information

    Hi, I use a profiling tool on a native Visual Studio C++/Intel Fortran 9.1 application. However, the instrumentation program crashes and I have been told the following: "The crash occurs in the msdia80.dll library when xxx is trying to read debug information from your application's PDB file. This is a known issue in Visual Studio 2005. A hotfix for this problem is available on the Microsoft web site. You can find more information here: http://support.microsoft.com/kb/917780 " However, with SP1 installed, this crash still manifests. Can somebody tell me whether this hotfix made it into SP1 (based on the dates it did) or if there is any other hotfixes or patches for this From th ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DVD Media Access on 360

    If I burn a DVD that contains regular files, will my app be able to read the files from the media when running on the 360 I'm sure I'll be able to work around the restrictions. I'm not talking about MMORPG level data. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA games on 360

    From what I have read of the FAQ and reading some of the posts on the forum, it currently sounds like NO ONE can use XNA to make games for money on Xbox 360. Will this change with the Professional I understand Microsoft has mentioned picking up some games that will be created, but what if someone puts a lot of time into a good game and wants to sell it Sinnix wrote: Currently, XNA Studio express does not support XBOX 360. ok im confused, so with the XNA studio express you are unable to make content for the 360 even if its not commercial i thought that was its purpose. ...Show All

©2008 Software Development Network