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

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

vc80crtdll

Member List

forcedfx
CTY
vitaliyk
New to VB
ks10
Janee
FoxP
miliu
Shai Zohar - FXM
STWeb
Tanyuk
mrtrombone
RoMo
laurin1
Leif Eklund
THNH
massiwork
JoeDee
Erik Meijer
namnguyen
Only Title

vc80crtdll's Q&A profile

  • Windows Forms Bases classes & Forms

    class A : System...Forms.Form {} class B : A  //designer for class B -O'K {} class C : B  //designer for class C - ERROR {} Why does the designer screen of VS show me a big X instead of the form and say: "The service System.Windows.Forms.Design.IEventHandlerService already exists in the service container.  Parameter name: serviceType." It seems/appears I'm duplicating&nb ...Show All

  • Windows Forms versioning in .Net

    I wrote the following code to display the version number of my app:       strMajor = System.Diagnostics.FileVersionInfo.GetVersionInfo _         (Reflection.Assembly.GetExecutingAssembly.Location).FileMajorPart       strMinor = System.Diagnostics.FileVersionInfo.GetVersionInfo _         (Reflection.Assembly.GetExecutingAssembly.Location).FileMinorPart       strBuild = System.Diagno ...Show All

  • Visual Basic MenuStrips on child forms

    I notice that the menu options on my child forms menustrip gets added to it's parent forms menustrip when the child form is open. Is there a way to prevent this and show the menu in the right form That was so easy it was embarrassing. Thanks. ...Show All

  • .NET Development Couple of soap errors on invoking a webmethod in ASPNet web services

    Hi there!! I am consuming an ASP.Net webservice from a simple .Net application by adding a web reference. However when I invoke the web method, we see a couple of soap error entries in the application event log with the result that the http request is not successfully completed. We even tried to invoke the web method directly from the asmx page in IE providing in the required parameters. We still get the same errors. Please note this problem is intermittent and does not happend everytime. The following are the event log entries: Soap error: XML Parser failed at linenumber 0, lineposition 0, reason is: The download of the specified resou ...Show All

  • Visual Studio Visual Studio Beta 2 fails with error

    Hi I had earlier tried to install VS 2005 Beta 2 and it had failed due to some unknown reason. While trying to repair the VS 2005 Beta 2 Architect Edition, i can successfully install the .NET Framework 2.0 and restart. However, while installing MSXML 6.0 Parser in the next step, the setup stops and asks for locating the CD that contains runmsi.exe. The DVD doesn't seem to have the file and hence I have to abort the installation. A search on my local machine did not yield any such file on my hard disks. i have already run the clean install tool mentioned earlier on this forum at: http://forums.microsoft.com/msdn/ShowPost.aspx PostID=17416 I ...Show All

  • Visual Studio Team System How to get test result through code.

    Hi, I have created several Unit tests to test my connector application. I create an xml test result file through code. I want to capture individual Unit test results (Pass or failed) in some variable so that I can populate the Test Result column of my XML file. Can I get the result in MyTestCleanup() method or is there any other work around possible Regards, Huzefa Hi Gary, There's good news for you. In our 2008 version (there's a Beta 2 available for download already), we have two new things: First of all, trx files are much easier t ...Show All

  • Visual Basic replacement for winsock

    i have an application in vb6 which uses the winsock component to communicate over the internet. I wish to port the application to vb express, but cannot find a replacement component for winsock without going to APIs. Is there a simpler way to connect to the internet and is there some sample code somewhere I can try. Thanks Dick R. .NET has native implementation for socket communication - no external files are required. The namespace of interest is the System.Net.Sockets : this contains most of the objects required for socket communication. The online and built in help has extensive descriptions and s ...Show All

  • Windows Forms Decoding Directory table in MSI database

    Hi, My objective is to read the MSI database and find what files will be copied to which directory. So I read through the table Directory and tried to identify the records in Directory column. And from the url given below I was able to decode the table. http://msdn.microsoft.com/library/default.asp url=/library/en-us/msi/setup/using_the_directory_table.asp But the issue was the directory column has system defined properties like ProgramMenuFolder, SystemFolder. But some table has entries like ProgramFilesFolder.D1C3218F_E1F5_4b1f_AE6C_6FBB1D637AEE. So I am not sure why this is happening and some case it has underscore in between, ...Show All

  • Windows Forms Executing an external file from C#

    Hello everyone again! Thanks for the help on the last problem I was running into! This time around, I am trying to execute a file from my code based on its filetype. What I have done is: 1) Given a path, I have loaded the information into a byte array 2) Saved a referrence to the file into a database Now, given the referrence, I need to  1) e ...Show All

  • Software Development for Windows Vista Sequence workflow OR State Machine Workflow?

    Now We are developing a project which needs to use the workflow technology. We want the workflow function based on the WWF,the workflow function needs to finish the following functions: 1)Workflow define; 2)Task list; 3)Workflow Monitor; Business example: When a purchase order is coming,we need do the following steps: 1)Input the order to the Order lists; 2)the Department Manager examine the order; 3)the CEO examine the order; In step 2 and 3,there are two results: approve , reject , In step 2 if the Manager reject,the workflow will go back to step 1,if he approved the step will go to step 3  if I use the sequence workflow can ...Show All

  • SQL Server Fit dataset on one page

    Hey guys, Let's assume I have dataset with two columns (A,B) and it has 100 records. I'd like to split this dataset on the same page with 25 records in every column. Side by side. Example: ColA ColB ColA ColB ColA ColB ColA ColB 25 rec 25 rec 25 rec 25 rec What should I use and what properties I have to play with Thanks. Just a quick drop answer: - I asume regular column format does not work for you because you want  balanced columns and RS gives you unbalanced ones. - I asume you have a static format= always 100 records, always 25 records/column, or alike. In t ...Show All

  • Visual Studio Argument Expansion - Unfold Template

    What is the syntax you use in source code files of a template to expand arguments specified as arguments in the recipe I see the standard arguments $projectname$, $safeprojectname$ etc are being replaced, but none of my custom arguments are. I am using the same syntax. i.e $mycustomargument$ Do youhave to do something special in the custom action Is it even possible to expand argument values collected from a recipie wizard for a template Precisely, one of the objectives behind integrating recipes with templates was to enable you to use the rich argument collection strategy in GAX to collect information ...Show All

  • .NET Development Accessing an Access database on a network share.

    Hello, I am having a problems connecting to an Access database hosed on a network share and I am running out of ideas and time. I have referenced several threads in this forum as well as other sources with little success. I have attempted to add the user id and password to the connection string as in post, <http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=95215&SiteID=1 >, which failed. I have tried both the user id and password you see below as well as my own user id and passwork which has "Admin" privileges on both the server hosting the website and the server hosting the network share. Connection Strin ...Show All

  • SQL Server in SQL 2005, it have Auto-Number which depend on other column or not?

    Such as, I have 3 Columns EmployeeID(Auto Number) Dept Name I want to ID is auto running depend on Dept Column like this, EmployeeID Dept Name 1 Marketing Jim 2 Marketing John then if i input ID Dept Name Sales Jeave Then I want my ID is generate 1 (because this rows is the first row of Sales Dept I want to check that it have some kind of this feature in SQL 2005 or not.. I found it on MySQL but cannot found on SQL 2000 Anybody can suggest what should i do is the easiest way to make this feature (Now, I use SQL 2000 and Use StoreProecedure to get LastID of Dept and + 1 to It, It' ...Show All

  • Windows Forms Encryptor's security

    Hi, there *************************************************************** RijndaelManaged RMCrypto = new RijndaelManaged(); byte[] Key = {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16}; byte[] IV = {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16}; CryptoStream CryptStream = new CryptoStream(NetStream,  RMCrypto.CreateEncrypto ...Show All

©2008 Software Development Network