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

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

pinkybaby

Member List

Liebethal
Dan Finch
cbpd86
gssundar
2V.
Joseph22
Kudzu22
gmedia
suman_chowdary
RajDas
Chalagif
Chris Holt
BBesser
sxf
Bertrand Caillet
Yasir Imran
Alle
最大的小巨人
IlCapo
CoDeR X
Only Title

pinkybaby's Q&A profile

  • SQL Server FormatNumber(mValue,2, false,false)

    I am u ...Show All

  • .NET Development Which validator should I use?

    I have an array that is populated dynamically. It contains integers. I also have a dropdownlist. How do I make sure that the item that users select does not equal to any of the values in the array ie. each item in dropdownlist has value and text, with value containing an integer. I don't want users to pick the item whose value is any of the integer in the array. I tried using the comparevalidator but the valuetocompare is a fixed value, I can't assign it the array. any suggestions I think you should use Custom Validator and inside the client validation function, you have to implement this logic ! Also you didn't point out whether this array is server side or just a client side, however if it's ...Show All

  • Software Development for Windows Vista Vista beta SP1 with VS 2005 SP1: The project location is not trusted - Problem Solved!

    *************************** Problem Solved: Please see http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1254991&SiteID=1&mode=1 . ***************************   Hello,   Upon opening a solution on my Vista PC in Visual Studio 2005 SP1, I get a warning message that says, "The project location is not trusted: ...." This project location is on a shared network drive of a server that is running a fully patched version of Windows Server 2003.   The location-not-trusted warning appears on my Vista PC, which is running Vista with the beta SP1 for VS 2005 SP1. There are only two user accounts on my Vista PC, and both accounts are part of the Administrators group. My Vista PC and the server con ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Is there a way to...

    Draw lines and rectangles, or any other sort of shape. Thanks See thsi thread http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=692060&SiteID=1 someone has written a component to draw vectors ...Show All

  • Visual Studio Team System Deploy windows users to different servers

    Hi All, I have an issue with deploying a SQL 2000 database project to different servers, each using windows authentication. I have a user against in the database project called "User1". This has to be tied into the login "COMPUTER\User1", where computer will be the name of the server I am deploying the project to. The problem is that creating a user using sp_grantdbaccess requires a login name, but the login name can't be determined till deployment time because the login name will change based on the server name. So I keep getting the error 'User1' is not a valid login or you do not have permission" . Does anyone have a work around for this Other then blogs and this forum are there any good online resources for D ...Show All

  • Visual Basic Disable TreeNode

    Is there way to Disable TreeNode Like .Enabled = False I need this so no one can change the CheckBox checked state Thanks everyone I have what I need in this code Private Sub TreeView1_AfterCheck( ByVal sender As Object , ByVal e As Windows.Forms.TreeViewEventArgs) Handles TreeView1.AfterCheck If TreeView1.Nodes.Item(0).Nodes.Item(0).Checked = False Then TreeView1.Nodes.Item(0).Nodes.Item(0).Checked = True End If End Sub and I dont forget the excellent informations from all of you my friends thanks again for everything ...Show All

  • SQL Server Merging database

       Hi Guys,   I need to merge database's from 2 different locations into a master database. I am concerned with the identities being duplicated, and the need to map/translate the ids in a sequential order. Also this needs to happen on a nightly basis , would i need to write  a custom script   any starters , pointers would be appreciated thanks tribal   I have found the following MSDN link which explains replication and it has proved to be of much help. http://msdn2.microsoft.com/en-us/library/ms151198.aspx I now know that you can use the Publisher/Subscriber model to push data to a subscriber but is it possible for for two publishers to p ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. 3D racer problem (collisions)

    Hi im trying to make a very very basic 3d racing game. Basically, ive spent hours trying to work out how to detect whether my rocket (the car) has left the side of the track or not. I cant work out how to properly use bounding boxes/bounding spheres in 3D and i dont understand how that would even work with a track with bends etc. Here is my source code for you to download and try and understand what I mean. Any help is really appreciated. EDIT - http://www.sendspace.com/file/6pcunk http://www.megaupload.com/ d=G6CLZF70 Or if someone could just explain how to go about working out whether the car has left the track or not What fuctions you should use or whatever. Music - aren't this worms Hmm even by loo ...Show All

  • SQL Server Managing SQL 2000 databases on Vista...

    I have one database at an ISP running on a SQL 2000 server. Under Windows XP Pro, I installed SQL 2000 administrative tools then I could use the database manager as well as the query tool to manage my database. I have upgraded my machine to Windows Vista Ultimate. SQL 2000 client services won't install under Windows Vista. Under Windows Vista, I was able to create an ODBC component that connected successfully to the SQL 2000 remote database, but I no longer have a transaction tool or a gui to manage the tables. My goals are simple: I want to be able to view/add/drop tables and data using some sort of GUI. I would also like to have some sort of SQL transaction client. I don't need to do any high level database management, just view/change/ ...Show All

  • Visual Studio 2008 (Pre-release) The remote server did not satisfy the mutual authentication requirement

    I am trying to write a Client/Server program which needs mutual authentication between the server and client via Kerbros. Therefore I did the following: On Server side: Config file: < xml version="1.0" encoding="utf-8" > <configuration> <system.serviceModel> <services> <service name="Com.Service" behaviorConfiguration="ServiceBehaviorConfig"> <host> <baseAddresses> <add baseAddress="net.tcp://tako:8020/Com/"/> </baseAddresses> </host> <endpoint address="" binding="netTcpBinding" bindingConfiguration="MyNetTCPBin ...Show All

  • .NET Development NTDLL.DLL NtSuspendProcess Interop

    Hello, i just do not seem to get the interop of the undocumented NtSuspendProcess right. Has anybody done this before and got it working I've tried tons of different variations of the declaration shown below but all of them throw a EntryPointNotFoundException: [DllImport("ntdll.dll",EntryPoint = "NTSuspendProcess", SetLastError = true, ExactSpelling = false)] private static extern long NTSuspendProcess(IntPtr processHandle); Any help is welcome! Thanks in advance, Peter Vrenken ...Show All

  • Visual Basic How To Open A File On Another Computer

    Thanks for the help. Obviously I'm new at using files. Yes, I'm using VB6. New Question: I'm using: Open "Path" For Random Access Read Write As #1 Len=Len(Type) I'm doing this with both computers on my home network. Both Computers are running the same program. Both Programs are accessing the same file. My question is this: Does the system resolve conflicts if both programs attempt to write the same record simultaneouly Because right now, using the Open statement above and no lock statement later in my code, it seems a conflict could arise. I'm not able to lock the file using one program and then trap the error in the other program because the errors received do not appear to be trappable. For example I lock ...Show All

  • Visual Studio 2008 (Pre-release) Sorting a ListBox of strings

    Hey, This really should be incredibly easy to do but all I can find is huge explanations of how to use CollectionViews, Observable whatnots, SortDescriptions etc. In code, I want to be able to add ["Cat", "Dog", "Ant", "Bat"] to a ListBox, then be able to sort them... I've looked at SortDescriptions but have no idea what the first argument needs to be. Exceptions are thrown when i try things like "Content", "Name", "Text"... what properties to simple strings have I really do want to avoid XAML for this bit as it isn't ideal, code, a couple of lines... Thanks, Adam Miles Hi ,Try like this. void Click( object sende ...Show All

  • SQL Server Passing multiple-values as a parameter

    I am trying to drill through to a secondary report passing multiple values as a parameter. For eg. I would like the user to select multiple years (2005,2006) from the drop-down parameter and pass that on to a secondary report. When I select multiple values and pass that as a parameter, the parameter in the second report defaults to 'All' or in some case the first of the multiple parameters (i.e only 2005 is passed). I don't have any problems passing single valued parameters. Any help would be appreciated. FYI - I am using an Analysis Cube as the data source for the report. Thanks You can do this by using the Split function, search this forum there are plenty of examples of how to use it. ...Show All

  • Visual FoxPro Connect to Outlook Express and Microsoft Outlook

    Dear Expert, Can I know how to connect to the Outlook Express and Microsoft Outlook using FoxPro Like the data in a memo feild how I connect or send out using the Outlook Express and Microsoft Outlook Or Can I generete email using FoxPro Thank you.     Bankim, I don't know the answer. Maybe you don't know but writing in uppercase is considered as "shouting at". Both Alex and Marcia are trying to help and they don't deserve to be shouted at. I believe you didn't know that rule:) PS: I had the luxury to meet both of them in person and they are very nice people (nicer than you can think of - as many others in VFP community. Greetings ...Show All

©2008 Software Development Network