Software Development Network Logo
  • Architecture
  • Visual Basic
  • Visual C++
  • Visual C#
  • SQL Server
  • Game Technologies
  • Visual FoxPro
  • Smart Device
  • VS Team System
  • Windows Live
  • Windows Vista
  • Microsoft ISV
  • Visual J#
  • .NET Development
  • Windows Forms

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

hypermatt

Member List

Jerry West
Anonymous/
Chad Boles
shaul_ei
Juan de la Vashon -beta 126484
ryan_scanner
soccerjoe5
James 2
blaze8
George K
Sam_bham
Jouri
vklrc
Pradeep C
RTS4ME
Pabya
zool
Digitalmind
Sirajudeen
samnospam
Only Title

hypermatt's Q&A profile

  • .NET Development How to create a new test Certificate ?

    Hi all, I want to test my SSL client/server solution but i don't know how to create a new test Certificate for testing only purposes. is there is any tool for doing this for .NET 1.1 and for .NET 2.0 Thanks all. Hi, There is a tool that is part of the .NET Framework Tools: http://msdn.microsoft.com/library/default.asp url=/library/en-us/cptools/html/cpgrfcertificatecreationtoolmakecertexe.asp Makecert.exe is present in both .NET 1.1 SDK and .NET 2.0 SDK. Best, - Nikola ...Show All

  • Smart Device Development What is the order in which the operations from a .inf file is done when installing?

    What is the order in which the sections of the .inf file executed when a .CAB file is tapped on a windows mobile 5.0. Also, Is there a way in which I can set a registry setting to ON when entering the installation and set to OFF when exiting the installation. Sections of INF are not "executed", they are specifying CAB file structure (set of files and registry settings). Thus there's no "order of execution" for sections in INF file. You can do custom registry manipulations from unmanaged setup DLL. It has 4 entry points which would be indeed executed in specific order. ...Show All

  • Visual Studio Deploy hell

    I've been trying to deploy a small web application on our web server. We are using VS 2005 Beta 1. Last I installed "CRRedist.msi" on the web server and tried to access the web page - no success! I've also tried to create a web setup project, but it fails because I have no keycode (instructions tells that this can be found in the VS help menu - nop). My final try was to buy Crystal Reports XI Developer and install it - but no it doesn't support VS 2005!!! How can I make my web app works on the web server All help is welcome Best regards Robert Hello Robert, There was a bug in Visual Studio 2005 Beta 1  ...Show All

  • .NET Development VB.NET 2.0 - DataGridView Selection - how to eliminate?

    Hello, I am displaying a datagridview that is refreshed as records are added, etc from a different portion of the screen; how can I disable the selection so that the user cannot select any item on the grid, thus changing it's color Thanks! Jim Josh, I have set the readonly property to true; but when the grid is displayed the first row is always selected (or if I change the selection property to cell, the first cell is selected).  I don't see an option for Selection = none. I don't want the row to be colored in the blue; and thought there has to be a way to disable the selection of either rows, columns o ...Show All

  • Windows Forms use singleton pattern

    Hi, This may be a simple question for some but I'm not entirely sure how to approach it. I would like two Forms to communicate in real time, you have Form1 which has a Timer, each Tick it updates (just to put it simple) a Label with the number of ticks the timer has done. I want, say, Form 2, which has already been created and shown, to update with the value of the label in Form 1 every time this label changes value. The only way I know of passing a value from one form to another is through the constructor, but I do not want to create a new form each time the label updates. My guess is that this is done with threads but I'm not v ...Show All

  • Visual Studio Express Editions read a remote file in a char * variable

    People, how do I read a remote file in a variable Respectively, I need some function like char *file_get_contents ( char *url ) so that i can remote_file = file_get_contents ( "http://192.168.0.10/somefile.html" );  Is there some straightforward way Before trying to do this through HTTP, are you able to do this by going through the LAN filename = " \\ \\192.168.0.10\\www\\somefile.html " // this will open somefile.html using NetBIOS and the Windows Network, // like how a mapped network drive works. ...Show All

  • Visual Studio Team System Sample Projects

    I have been hunting for examples MSF projects , I noticed on this forum that were plans to provide some . I was wondering how that is progressing. I am currently trying to understand how documnets will look and feel and hang together. Whilst I know there are templates they down't really help. There are no sample projects yet but we want to have one ready when we ship. It will be on the MSDN site when it is available. Randy MSF ...Show All

  • SQL Server Can't connect from SQL Server 2000 Enterprise Manager

    I have two servers, one have SQL Server 2000 and another has CTP2005.  I am trying to register the newly installed CTP 2005 in Enterprise Manager of SQL Server 2000, but failed. I have make sure that SQL Browser is started and TCP/IP protocol is enabled in the configuration manager.  I stopped also all firewalls between the two servers.  But I still cannot find the CTP.  The error message seem to be some Japanese like "...SQL Server Management Studio...SQL Server Management Object(SMO)..." where ...are Japanese. However, I have no problem registering SQL Server 2000 to SQL Server Management Studio. Ple ...Show All

  • Visual Studio Team System user defined port - asp.net applications

    is there a way how i can choose the port used by the internal visual studio 2005 web server i don't want that there's always another port used. I would like to assign 1 port to this asp.net application for testing. thanks for any advices Please post this question on the ASP.NET forum here: http://forums.asp.net/ Regards, Vikram ...Show All

  • Visual Basic VB Express - Debugging is very slow.

    I just installed the new release of Visual Basic Express.  Before installing, I removed all the Beta products and verified using the removal tool.  I then ran a registry cleaner to get rid of left over references.  I have turned on "terminal services" which got rid of the "binding error" some have mentioned.  Unfortunately, now when running my application under debug, it just hangs with a half drawn form.  It seems to compile and I can run the exe outside of the IDE.  I have searched the forum and seen similar problems, but none of the suggested fixes have helped.  Any insight would be appreciated. Thanks, ...Show All

  • Visual C++ cannot convert from 'float (*)[3]' to 'float *[3]'

    I'm having an issue with Visual C++ .NET 2003. This compiled and worked fine in C++ 6.0. In my include file I have: typedef struct Data { float (*cvec)[3], ... } Data; Data Store; In my cpp file I have: int num; Store.cvec = new float[num][3]; where num is determined from a file. The error I'm getting is: View.cpp(847) : error C2440: '=' : cannot convert from 'float (*)[3]' to 'float *[3]' There are no conversions to array types, although there are conversions to references or pointers to arrays How do I get this to compile In my experience, this should work. By the way, there is an example in t ...Show All

  • Visual C++ how to stop an application like a messagebox does

    hi there! i hope this is the right place for this post. i have the following problem: i am writing an adobe acrobat plugin in c++ with the visual studio.net 2003. i have another application with which i send data per mailslot to my plugin. the plugin displays a messagebox which is to be clicked when data is sent from the other application. if i try to implement the plugin without the messagebox the acrobat hangs because the plugin looks permanently for new data coming through the mailslot. so i used a sleep() command to let it check every second for new data but it happens the same as before without the messagebox, the acrobat hangs. so ...Show All

  • Windows Forms Insert data

    hi. in VB 6, it was possible to do something like this recordset.open <TableName>, connection recordset.addNew recordset("FieldName").value = <value> recordset("FieldName").value = <value> recordset("FieldName").value = <value> recordset("FieldName").value = <value> recordset.update IS THERE A WAY TO DO SOMETHING LIKE THIS WITH VB.NET  I DIDN'T FIND SOMETHING LIKE THIS... i don't want  ...Show All

  • SQL Server Subscriptions Help - MonthlyRecurrence.Days Property

    When creating a subscription, we don't know what value to give the MonthlyRecurrence.Days property.  It wants a string value, but what   Does anyone know what string value to give this property to indicate the first day of every month   It takes an integer range similar to what is used when printing: "1-4,7,9" Check out this page http://msdn.microsoft.com/library/default.asp url=/library/en-us/rsprog/htm/rsp_ref_soapapi_ir_02nd.asp ...Show All

  • Windows Search Technologies WDS Query from VBScript or COM

    I'm looking at integrating WDS functionality with an existing application and have been trying to call the ExecuteQuery from VB6 but am having problems. Does anyone else have some example code that they've managed to get working I've worked out that passing empty strings seems to case issues and am passing null references instead but am getting some errors raised ("Inv. Proc. Call"). This is for a small quick research project to decide between WDS and GDS so any suggestions would be very gratefully accepted! Many Thanks, John I'm not really a VB6 or VBScript expert, but I think this ...Show All

©2008 Software Development Network