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

Software Development Network >> bev a's Q&A profile

bev a

Member List

Tewks
RapidLord
Hengyi Liu
Brian Love -- MSFT
Michael Pryhodko
Wynand
TheMax
damned
Thomas Logan
Holger Grund
Gidmeister
Ivo
Jeff Beranek
Kirk Barham
George Archer
thepitzaboy
Jelle Bens
Pittsburgh
wmleonar
Sathiya Sivam
Only Title

bev a's Q&A profile

  • Visual Studio 2008 (Pre-release) Indigo P2P and Java

    I would like to know if an implementation of the Indigo P2P protocol is avaible for Java. I would like that an Linux Client communicate with an Windows Client via Indigo P2P. Is it possible Thanks for your answers About your only hope is to run a Mono process that has WCF running, and then talk to that process from Java. But, even that may not work if WCF P2P relies on Windows P2P technology under the covers. I have seen no reports of trying to run any WCF technology on Mono. I think you should look at a different architecture for what you are trying to do. If you have a .Net process on one machine and ...Show All

  • Visual C++ Next Standard

    I am curious what is in store for inline functions for the next standard reguarding internal linkage. Anyone have some links Ritz: I'm not sure I completely understand your question: but I can tell you what I know. So far the C++ committee has no plans to change anything relating to the linkage of inline functions in the next revision of the C++ Standard: and yes the C++ Committee does realize that this will leave the C++ Standard at odds with how the C-99 Standard specifies inline functions (in C-99 all inline functions have static linkage) but given that the C Standard was developed with a different set o ...Show All

  • .NET Development How can i fetch a value that resides in a web page from a windows app on the same client?

    hi, i have a c# winforms app that needs to fetch a specific value that resides in a specific web page. the web page needs to be opened in the client before i can fetch it. i tried shdocvw but it gave me alot of problems. anyone can help The web page is not my application, it is opened seperately, and i have no control over it. ...Show All

  • Smart Device Development Emulator softkeys

    I recently upgraded to VS 2005 FC1 and now I have a problem. For some reason, the Windows Mobile 5 Emulator's softkeys are mapped to numeric keys. For example, pressing the left softkey while in the home view will result in a '1' being entered instead of display the start menu. Pressing the right softkey will result in a '2'. Pressing the home and back buttons work. Pressing the Green phone button will result in a '3' and the red phone button in a '4'. All the other real numeric buttons appear to be ok. This only happens with the WM5 emulators (all of them) but the 2003 emulators work fine. Has anyone seen this and have any idea how to resol ...Show All

  • Software Development for Windows Vista Where are the missing functions to deal with properties?

    I'm trying to build some code against the February CTP of the Windows SDK. The code uses several Win32 functions which were in the December CTP and are still in the SDK documentation, but which are no longer in the header files. The functions are: SHGetPropertyKeyFromName() SHGetPropertyDescription() SHGetPropertyDescriptionByName() SHGetPropertyDescriptionListFromString() SHCreatePropertyStoreOnMemory() Are there replacements for these functions Tom Here are the changes in Feb CTP for the property system APIs: New PropSys.dll: These functions changed names, but ...Show All

  • SQL Server metadata driven SSIS package--table variable

    Is there anyone know if a simple SSIS package (moving data from source table to target table) or task can be called repeatedly using a variable that obtains value once a time from a metadata table containing only table names. Basically, I would like to pass in a table variable to the SSIS package or task to start the ETL for different tables. Thanks a lot! Oliver Patrick, Can you give some rough ideas as what you are using in terms of programming languages, scripts or SSIS tasks to create metadata driven SSIS packages. Many thanks! Oliver ...Show All

  • SQL Server Using just stored procedures to create and delete users

    Is it safe to use the follow stored procedures in the order below to effect a bulk enrollment of users: 1) NSMain.dbo.NSInsertSubscriber 2) NSMain.dbo.NSInsertSubscriberDevice 3) NSMain.dbo.NSInsert<SubClassName>SubscriptionSchedule 4) NSMain.dbo.NSInsert<SubClassName>Subscription Is it safe to use the following stored procedures in the order below to effect a bulk delete of users: 1) NSMain.dbo.NSDeleteAllSubscriptions 2) NSMain.dbo.NSDeleteSubscriberDevice 3) NSMain.dbo.NSDeleteSubscriber Please let me know. Thanks. Are you using SQL Server 2000 or 2005 In 2005, we've added a set of views ...Show All

  • SQL Server Connections to SQL Server Files (*.mdf) require SQL Server Express 2005

    When ever I click on an MDF file in VS2005 I get the following message. Required Components Missing. Connections to SQL Server Files (*.mdf) require SQL Server Express 2005 to function properly.  Please verify the installation of the component or download from the URl: http:go.microsoft.com/fwlink/ linkID=49251. I think this may have been due to the install order and options I selected. 1. VS2005 Pro, without SQL Server Express 2005 as I was planning to install SQL2005 Developer. 2. SQL2005 Developer. I then noticed the above problem and installed SQL Server Express 2005 from the VS Pro DVD.  I still have the problem.  Any id ...Show All

  • .NET Development Data columns

    Howdy I have several tables on several datagrids and these tables have many rows and columns so to save time and typing ive set them up like so: Do While count < 6 DtBalance.Columns.Add("", GetType ( String )) count = count + 1 Loop For i = 1 To 37 Row = DtBalance.NewRow DtBalance.Rows.Add(Row) DtBalance.AcceptChanges() Next Ive then set the rows to clear and be set as nothing like so: Do While i < DtBalance.Columns.Count Do While count < 37 DgBalance.Item(count, i) = "" count = count + 1 Loop count = 0 i = i + 1 Loop The ...Show All

  • Visual FoxPro report labels

    hi all,im making new reports during run time according to users actions.for example he selectes some fields from comboboxes then he puts in a text box a value that is for the "where like.."and i save the results in a temporary table.from that table i create report and the i report form to print the new report..the problem is that the new report has as labels the names of the fields..for example if the field name is costomer_id it shows costomer_id is there a way to change in run time the name of each labe so that when you choose for example costomer_id it will print Identification Of Costomer.. the reason is that if i can change the label i ...Show All

  • Software Development for Windows Vista Scalability for Hosting Multiple Instances in a Single Workflow Runtime

    Hi, I would like to know the maximum number of workflow instances that a single workflow runtime can handle at the same time. Is it just dependent on the server hardware hosting the workflow runtime or there is a maximum number of workflow instances to be hosted in a single runtime. Hi Akram, The maximum number of workflows that can run simultaneously in a single workflow runtiem is the same as the number of Clr threads available for the process. Typically this is 25 for Single proc machines and 100 for dual proc or server machines. You can control the number of instances that can be run by specifying the number in the ...Show All

  • .NET Development Framework 2.0 and 1.1

    Should the system have both versions of Framework (ie. 1.1 /2.0) or its safe to remove the old one (1.1)  I know that both versions can co-exist but , why to have both, compatibilty issues I haven't seen an FAQ specific to 2.0 come out online just yet (a lot of the docs are still getting published) but I haven't heard of any reason or changes that would prevent side by side execution from working the same way as is supported for 1.1 and 1.0.  VS 2003 and VS 2005 both will continue to function as normal if installed on the same machine. http://msdn.microsoft.com/library/en-us/dnnetdep/htm ...Show All

  • Windows Forms How can I activate the help provider from a button?

    Hi, I am looking for an event to start the help provider when the user clicks on the 'Help' button. I know this is automatically tied to F1 but I want to show the user a help button as well. There does not seem to be any method I can call in button click event to display the HelpProvider... this has gotta be an easy one - can a ...Show All

  • Visual Studio Express Editions Need VB help advancing from beta1 to beta2 with a project I was working on...

    Can anyone help me with some project differences between beta 1 and 2.. Here is the biggest problem I have. I can't view forms in the designer. Code executes though the way it should when I compile and run. I just can't make modifications to the forms. Here is the jist of most of the problems I have... Warning 1 Method 'System.Drawing.SizeF.op_Implicit' not found. That points to this line of code... Me .AutoScaleDimensions = New System.Drawing.Size(5, 13) And then there is this... Warning 5 'System.Windows.Forms.RaftingContainer' is obsolete: 'This class will be removed after Beta 2, consider using ToolStripC ...Show All

  • SQL Server Unable to connect to sql server on local machine

      Hi,  I have the same problem as brokenrulz.  Is there a solution  for this problem If so what is it please help. To explain the problem again, I get the follwing error while running my windows application connecting to sql server2005 and I get the same problem manually trying to connect to the database engine from SQL server management studio 2005. Also in this case my server is on the local machine. *************************************************************************** An error has occurred while establishing a connection to the server.  When connecting to SQL Server 2005, this failure may be ca ...Show All

©2008 Software Development Network