RavenWorks's Q&A profile
Visual Studio Express Editions P2P Help needed
HI, I would like some help in trying to create a P2P program but im not sure where to start, what codes do i need The program will be used for sharing files to other users Im using Visual basic 2005 express edition and would like help tj2007 you would need to know about things like: TCP Client: http://msdn2.microsoft.com/en-us/library/system.net.sockets.tcpclient.aspx TCP Listener: http://msdn2.microsoft.com/en-us/library/system.net.sockets.tcplistener.aspx NetworkStreams: http://msdn2.microsoft.com/en-us/library/system.net.sockets.networkstream.aspx You may also wish to consider Xml as some form of "communication" meaning, to understand perhaps user requests and so on, or create your own mechinism f ...Show All
Windows Forms How to add the .net setup file into a project setup file?
We have developed the project using c#. We have created the setup file of our project, while installing the project, first it should check in that system, wthr .net framework is there or not, if it is not there means automatically it has to install the .net framework. so for that purpose how to add the .net setup file into my project setup file If you are using Studio 2005 it is incredibly easy. Select the Setup project in the Solution Explorer, right-click and select Properties. Click on the Prerequisites button. Then you'll get a list of built-in installers for Dot Net, VC runtime, SQL Express, etc. Select the one(s) you want. Be sure to do this for both debug and release builds. These installers are called Bootstrappers i ...Show All
Visual C# Terminating a process using WMI
Hi, I have been told that this is possible but I can't seem to find any sample code anywhere. Anyone know how to do this Thanks. It is: Process.GetProcesses("remoteMachine") will give you a process collection of remoteMachine. Process.GetProcessByName("notepad", "remoteMachine") will give you a collection of processes named notepad on remoteMachine. Given that you have access rights on remoteMachine... -- SvenC ...Show All
Windows Live Developer Forums Move Map Control outside of Map
I know you can reposition the map control within the confines of the map and I know you can create your own custom map controls outside of the map. My question is: Can I take the VE Map Control as it exists and display it outside of the map Essentially move it to the left of the map Here's what I found. A div needs to be created anywhere on the page. Then in your GetMap function put in this line of code: document.getElementById("dashboardContainerDiv").appendChild(document.getElementById(map.ID + "_Dashboard")); ...Show All
SQL Server Importing data from Movex
I am looking to replicate data from a Movex system into an SQL 2005 database for reporting and analysis purposes. Does anyone have any ideas/tips on how to go about automating this process With scripts Thanks in advance. Dan E. You may try your question at the MSDN forum: SQL Server Reporting Services (http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=82&SiteID=1 ). ...Show All
Visual Basic add jpgs
i have jpegs as well as .dat files in a folder called 'data' and i want to include all these in my project which i converted to vb 2005 from vb6, however, i cannot find how to publish them using the wizard; i.e i cant find any options to include these files! (i'm very new to vb.net - only been using it a few days!) The important thing on these files is that when you right click on the file properties in Solution Explorer. Ensure that the Copy to output folder property is set to either copy if newer or copy always. This way they will be included in the oneclick deployment. ...Show All
Visual C++ Resource How To: Export String Table
I'm looking at the String Table of a resource file (VS2005). I've selected them all (ctrl-A), but I can't copy them and paste them into a seperate application (such as notepad or excel). How do I export the string table I need it exported so that the strings can be sent to a translator to translate. Yes, I had considered using the strings straight from the rc file directly - but they are not as nicely "compiled" compared to the string table editor in the VS IDE. Thats why I was hoping that there was a way to export them (or copy and paste them), straight from VS. If there isn't a way to export them from the VS IDE, then I'll mark your response as the answer. Thankyou. ...Show All
Visual C# Data Base : changing the topology using C#
HI I'm trying to make a program using Data Base and i don't know : 1- is it possible to use in same time two different Data Base and having relashionship betwin two tables each one in a the two Data Base 2-if i want to fill a data base with the help of users should i use a data stored in a computer and shared......or pieces of of data in each user computer 3- Tables, relatioships....can i dynamically creat or destroy them (changing the topology of my data base) Thanks for your Advices. RDH123 wrote: HI I'm trying to make a program using Data Base and i don't know : 1- is it possible to use in same time two different Data Base and having relashionship betwin two tables each one in a the two Data Base ...Show All
Visual Studio Tools for Office Add method of Workbooks class failed
The following code works fine with executed stand alone, but errors when the hosted within IE. The workbook with the VSTO Customization are deployed to a Web Site if the user opens the workbook with in IE (as opposed to saving the file) the following code fails. If the file is saved locally the code works. CODE: Dim wb As Excel.Workbook = _workBook.Application.Workbooks.Add(Microsoft.Office.Interop.Excel.XlWBATemplate.xlWBATWorksheet) ERROR TEXT: Add method of Workbooks class failed ************** Exception Text ************** System.Runtime.InteropServices.COMException (0x800A03EC): Add method of Workbooks class failed Server stack trace: Exception rethrown at [0]: at System.Runtime.Remoting.Proxies.RealProx ...Show All
Visual Studio 2008 (Pre-release) Cider Release Strategy
Is Cider (and all the .Net 3.0 project support) going to be released as an addin to VS 2005 or is it only going to be released in the next version of VS (Orcas) Steve The final Fidalgo CTP will not include any new Cider features over those in the current CTP. The main reason for this is that we have now implemented features that require changes in Visual Studio and so can only work well on top of VS Orcas mark ...Show All
Visual Studio Express Editions system.outofmemory exception, music problem
i have music resources and it seems i keep getting system.outofmemory exception. here is my code, and if you could figure out why exactly im getting this exception. im thinking it has to do with my music resources, and i checked the songs they work fine. Public Class WWE Friend WithEvents mediasoundplayer As New System.Media.SoundPlayer Private Sub ComboBox1_SelectedIndexChanged( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged ComboBox2.Show() End Sub Private Sub Button2_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Dim answer As MsgBoxResult answer = MsgBox( "Are you su ...Show All
Windows Forms When I open win form app project via VS.NET, controls will be bigger...
Hi, When I open win form app via Vs.Net, I found the main form larger and all controls that it contains will be bigger and gone to other positions. I have very little experience with win form app development and I could not even understand the problem. Thank you When I changed the DPI value from 120 to 96 , restart computer and then problem solved. It was so interesting and I did not understand the reason. Problem has gone but I still dont like resources and I am forced to work with 96 dpi with my expensive flat monitor. Thank you for your replays and helps. :) ...Show All
.NET Development data objects and their limitations
I'm in need of a lightweight data object to get data from database and process data in the object. I have the following questions: Which dataobject will work fast in fetching large amount of data from DB Is the any limit on the amount of data (in terms of bytes) for datareader and dataview If so, whats the limit Is the dataprovider required to read data from datareader object Can data be read from xml obj and put into a datareader Is it possible to get row count without going thru the datareader object Then loading it using a adapter into a DataTable for read/write or DataReader for readonly/ forward only ...Show All
Visual Studio Express Editions error
i have downloaded visual studio web developer 2005, but during setup asking for enu cd1...how to troubleshoot thank you it helped me but still i am getting an error : the following component failed to install : microsoft sql server 2005 express edition x86.what should i do know ...Show All
Smart Device Development Help on rotating the images
hi all, I m back with 1 problem again.Actually i m making the application of uploading images from the devices to the server. In this I want to display the images and user can rotate the image and affected image get stored on the server. But the question, how i rotate the image, i.e left, right, up, down. please any help would make me solve my prob. Thanx in advance. Hi This forum thread may answer your question: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=336974&SiteID=1 Michael ...Show All
