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

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

gazzz

Member List

jhurliman
Nick Tompson
Aaron Sulwer
Eileen Ewen
Quimbo
vicky_dceian
Al Christoph
NewbieDude
HRImaging
jheddings
Joe Albahari
myoungbl
TimStspry
ronnie2002c2c
donkaiser
IS dude
CrazyNun
pankaj sharma103086
jaomello
cdaviduik
Only Title

gazzz's Q&A profile

  • SQL Server MSDN Subscription SQL Server 2000

    If we purchase a new MSDN Professional subscription, does it come with SQL Server 2000 developer license Hi, SQL Server is only not included in the MSDN Operation System and library subscriptions. For the rest a SQL Server Developer version is included, since now I am able to see 2005, 2000 and 6.5 in the download area. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Where is the download?

    It is 12:48 pm here (GMT + 1)... in Nuku'alofa (GMT + 13) it is tomorrow... So where the hell is my download link :-D It's just about 12:30 AM, my guess is you'll still have to wait several more hours, probably at least 8 and a half since the workday starts for most people in the US around 9 AM. Even then I don't expect to see it until later in the afternoon Pacific time. ...Show All

  • Windows Forms Detect ENTER and TAB keys

    How does one detect if the ENTER or TAB key has been pressed by the user in VB.NET I'm using VS2005. you can implement the keydown event I believe and then look at the KeyEventArgs being passed in. Now, which control is it you are wanting to detect the keypress a textbox or some other control ...Show All

  • SQL Server Writing AMO code for parallel processing

    Hi, I want to write some AMO code which will process many partitions of a cube in parallel. The process API doesn't have any required parameter to specify the parallel ( or batch ) processing mode. Can you please let me know any pointers for the same Do I need to use the XMLA for parallel cube processing regards, dattatray. You dont need to worry about writing AMO code to proces partitions in parallel. Just create a parallel batch command and send it to Analysis Server. For example following command will process all partitions in the cube1 and cube2 in parallel < Batch xmlns = " http://schemas.microsoft.com/analysisservices/2003/engine " > < Parallel > ...Show All

  • Windows Forms Base windows form, that takes a generic type

    OK, so I'm trying to create a base Windows Form that implements the Singleton design pattern. I'm doing this because I'm building an MDI based application and I don't want a child control/form to exist more than once at a time. I created a SingletonWindowsForm that extended System.Windows.Forms.Form and had a static method for GetInstance. I extended that form from each of my child controls but kept having problems with types. So at that point I added a type to the SingletonWindowsForm so I could specify which type should come back from the GetInstance method. However, I couldn't do "new T();" per the compiler. :) Does anyone have a clue as to how I can go about doing this properly You'll need to deal with the fact that t ...Show All

  • Visual C# How to convert DateTime to Double?

    I want to convert the DateTime.Now to a double number...However, it seems Convert.ToString(DateTime.Now) does not work... Any method If you wish to convert a DateTime to a double you can use the method ToOADate of the structure DateTime: DateTime.Now.ToOADate(); ...Show All

  • Software Development for Windows Vista Writing to Global Shared memory from an Application in Vista.

    Hi all, Global shared memory is created by a service which is used by my user mode application to communicate with the service through global mutexes and events. This as of now works well in Vista RC1. 1) Are there any restrictions that an application should not write to global shared memory already created by service This application does not has any elevated privileges. 2) Can application created global named objects like event and mutex Again the application is running under a standard user privilege and not as admin. 3) Can a 32bit application on a 64bit machine get interfaces to a 64bit Local server COM object Is there any special processing required in the 32bit app or in the 64bit local server COM object. Regards, ...Show All

  • Windows Forms Masked DataGridViewCell

    Hi, I have a question : (Visual Studio 2005, Windows Form Application, DataGridView) Is there a way to set a mask for a DataGridViewCell for example : input mask (short date mask and date type validating) . the DataGridViewCell Value appear at run time : --/--/--- and the valid value should be for example dd/ MM/yyyy . if there is any way to do this I want it. previously thanks. DataGridView MaskedTextBox Column control provides restricted data input as well as formatted data output. This control supplies visual cues about the type of data being entered or displayed. It uses a mask to distinguish between appropriate and improper user input.When the DataGridView MaskedTextBox Column cell i ...Show All

  • .NET Development Setting Keep Alvive to false using .net remoting

    I'm using .net remoting, do http channel requests to a IIS web site. On client config file have this http channel configuration: < channels > < channel ref = " http " useDefaultCredentials = " true " port = " 0 " > < clientProviders > < formatter ref = " binary " /> < provider type = " CompressionSink.CompressionClientSinkProvider, CompressionSink " /> </ clientProviders > </ channel > And call Activator.GetObject() class, to get a proxy object: "securityService = ( ILookupService ) Activator .GetObject( typeof ( ILookupService ), remoteServiceUrl + "/LookupService.rem" ); " On server s ...Show All

  • Visual Studio Team System Looking for clarification on CA1057 in the context of constructors.

    With the following code, I get a CA1057 warning: 1 protected MyClass( String uri) 2 { 3 this .uri = new Uri (uri); 4 } 5 protected MyClass( Uri uri) 6 { 7 this .uri = uri; 8 } MyClass.cs(1): warning : CA1057 : Microsoft.Design : Refactor MyClass.MyClass(String) so that it builds a System.Uri object from 'uri', and then calls MyClass.MyClass(Uri). Really, the only "refactoring" of this code would be: 1 protected MyClass( String uri) 2 : this ( new Uri(uri)) 3 { 4 } 5 protected MyClass( Uri uri) 6 { 7 this .uri = uri; 8 } Which gets rid of CA1057; ...Show All

  • Visual Studio Express Editions about count?

    hi there how do we use or execute a command in label which you can count the number of output.... for example "Select count(*) from user" (number in query in a datagrid) and the output must be seen in textbox or label... thx in advance Dude, try mo to..Ganito lang ginagawa ko e.... myConnection.Open() Dim myCommand As New OleDbCommand( "SELECT COUNT(*) FROM Users" , myConnection) myCommand.ExecuteNonQuery() Dim myAdapter As New OleDbDataAdapter(myCommand) Dim myDataset As New DataSet() myConnection.Close() myAdapter.Fill(myDataset) Me.TextBox1.Text = myDataSet.Tables(0).Rows(0).Items(0) Hope this would work for you too.... ...Show All

  • Visual Studio Express Editions Browser incompatibility

    hi, can someone please help with browser errors in my classifieds site. It is telling me that the asp content is not permitted and uc1 is not permitted The only mod i have made to the site at this point is to install a jpeg logo in the header.. many thanks please do not duplicate post: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=734302&SiteID=1 ...Show All

  • SQL Server Insufficient Memory Errors - 12GB RAM - 64-bit???

    hi, it was suggested to try this forum, so I am hopeful I can get some more ideas. Please see this link where i posted my issue: http://sqlforums.windowsitpro.com/web/forum/messageview.aspx catid=82&threadid=49973&enterthread=y Summary: I have just installed a brand new 64-bit system, with 64-bit SQL Server 2005 sp1, and 12GB of RAM. The same queries and processes that worked on SQL Server 2000 Std Edition successfully, are failing on SQL2k5 64-bit After migrating the databases and jobs, I am frequently getting this msg: 701:Insufficent memory to run this query Nothing else in the logs. I also made sure that the SQL Service account is granted Lock Pages in Memory - no help. First, I thought that SQL 2005 can take all ...Show All

  • SQL Server SELECT DISTINCT on one column

    I know this is a popular problem, but i haven't found an answer to my situation. I have a table (myTable) with three Columns (Column1, Column2, Column3). Column1 entries are unique (with unique identifier), Column2 entries are not unique. I want to do a SELECT DISTINCT on myTable so that Column2 is unique and i get all the other columns. I thought something like this would work SELECT DISTINCT Column2 as Col2, newid() as Col1, Column3 as Col4 -- I am getting uniqueidentifier for each row as well This doesn't seem to work however. I still get all the rows because Col1 is unique. since i am using aliases, the usual syntax doesn't work either. any help would be greatly appreciated! If Column2 to is not uniq ...Show All

  • Visual Basic Starting my application automatically

    I need to write an application for a friend that will start automatically when Windows XP Pro boots. The application is very straightforward - 3 buttons and a web browser control. The caveat is the users must not have access to the start button, start menus or any other applications on the system. Also, when the application exits the computer needs to shut down. I am using Visual Basic 2005 Express. Thanks, Mark Start-up: Put your app in the registry HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run or HKEY_LOCAL_COMPUTER\Software\Microsoft\Windows\CurrentVersion\Run Shutdown: System.Diagnostics.Process.Start("ShutDown", "/s") Remove start button: http://www. ...Show All

©2008 Software Development Network