KJ-1974's Q&A profile
Visual Studio Express Editions Is true that VB EXPRESS do not connect to Remote Server?
Dear Friends, I have on my pc a well working istance of SQL SERVER 2005. I can connect with it by "SQL Server Management Studio Express CTP" and successfull create database, table ecc. But Visual Basic 2005 "Database Explorer" don't view any istance of SQLEXPRESS Server . The first row of Database Explorer say: "......Data Connection ". In this manner I cannot use database that are inside a SQL SERVER! What I can do to resolve this issue Thanks Have you tried connecting to a SQL Server file. VB 2005 will connect to a SQL Server 2005 mdf file. Click on To ...Show All
Windows Live Developer Forums ReplaceIM and RecieveIM - How to use???
Say the user types 'hello' and presses send, is their a way to replace 'hello' with 'hello, how are you' before it is sent out. So the modified message is sent. Also, can this be done on recieving messages as well, so the recieved message is modified before it is displayed Because their is the ' ReplaceIM' and 'RecieveIM' properties and i would like to know how to use these. Thanks -Balupton ' ReplaceIM' and 'RecieveIM' tag to True in messanger xml file function Channel_OnRemoteAppClosed() { msChannel.SendIM( fetchRemoteNickname() + " Has Left the Conversasion "); } function fetchRemot ...Show All
Visual Basic how to set release configuration in VB express
Hi, Anyone know how to set release configuration in VB express i can't find the build option specify by msdn. Go to the "Tools | Options" menu. Under the "Projects and Solutions" tree node, select the "General" node. There should be an option to "Show advanced build configurations". Check that box and click ok. Now, right click your project file in the "Solution Explorer" pane. On the "debug" tab, you can select the build configuration you want. Hope this helps. ...Show All
Visual Studio 2008 (Pre-release) How to get previous (referer) scene/page?
Hello, I'm working with WPF and have encountered a problem: I want to execute different methods on a page's onLoaded event depending on the previous page. All navigation is done by the Navigate("page.xaml" ) method. How can I do it My idea is something like this: <C# code> if (referer = "Page1.xaml") { 'do something } else { 'do something else } How do I get the 'referer' above Thanks! Roberto Sonnino Microsoft Student Ambassador http://www.virtualdreams.com.br You can get access to details about pages that came before yours using NavigationService ...Show All
Visual Studio Where to start??
Hey everyone! I need to find out where to start with CR and .net. I have read about 5 or 6 books on .net and visaul studio. Not one of these books ever mentioned CR. At the moment I am working on a project that I need to report some info from some tables, calculate some values @ report time, and take totals at the end. Programmaticly doing this is not a problem, but printing all this formated is a problem. Anyhow, where should I start to find out how to use cr Good books or tutorials I have googled and searched the message boards, and nothing tells you how to get from point a to point z. Thanx in Advance! ...Show All
Windows Forms Connecting to a SQL Server Database
Connection String Server Name: E134017 full path; //E134017 or //E134017.nw.nos.boeing.com User ID : sa Password; billyboy Initial Catalog: Database1 I am having a terrible time connecting to my sql server 2k database from another computer on the network. I have no problem in local operation. I continuosly get "Server does not exist or access is denied" when I try to login remotely on the LAN. Connection Strings which work locally but fail remotely include: Server=E134017;User ID=sa,Password=billyboy;Initial Catalog=Database1 Server=\\E134017.nw.nos.boeing.com;User ID=sa,Password=billyboy;Initial Catalog=Database1 Server=E134017; ...Show All
.NET Development Combination of pie and radar (spider) charts
Hi, I wanted to create a chart that looks like a combination of Pie & radar charts. For clarity, I have attached a sample report. It may look like pie chart but the sector length and color should be varying depending on the value of the data. Say if a sector value is less than 3 then they should be shown shorter and in yellow color. If the value is between 4 and 7 then that should be slightly lengthier and in a different color. Also the sector should be shown as angled arcs and not by connecting lines between two points. If any one had worked on this before then pleae pass on your ideas. regs, Ayyappan ...Show All
Visual Studio Express Editions ok
if i declare iosteam like this #include<iosteam.h> i get " libcimtd.lib" is missing else #include<iostream> cout is an undeclared identifier the only thing that adds Libcimtd is UseOldIO.h but _mt isnt defined so it shouldnt be accesed Can anyone help id apperciate it. Add the line: using namespace std; If this doesn't work then please state which edition and version of Visual Studio you are using. ...Show All
Smart Device Development Deploying application developed in VS.Net 2005 By selecting Pocket PC 2003 into Win CE 5.0
Hi, I developed an application in VS.Net 2005 by selecting the project type as Pocket PC 2003, and now want to deploy that application into Win CE 5.0 device. But it is not allowing to deploy. Please suggest me the steps or any tool for doing this. Thank you, Prashant If you right-click on the project in Solution Explorer, you can select to change the target platform. You should be able to change to Windows CE 5.0. ...Show All
Smart Device Development convert sdf to xls
How convert my sdf file on xls table Or how could read my sdf file on windows xp Thanks in order to convert SDF to XLS , u can used Push method from SQL CE to push the data from SQLCE -> SQL Server Dim rdaObj As New SqlCeRemoteDataAccess rdaObj.InternetUrl = "http://NB-039/Customer/sscesa20.dll" rdaObj.LocalConnectionString = "Provider=Microsoft.SQLSERVER.OLEDB.CE.2.0;Data Source=\My Documents\CustomerDB.sdf" rdaObj.Push("Customer", "Provider=sqloledb; Data Source=(local);Initial Catalog=Northwind;User Id=sa;Password=", RdaBatchOption.BatchingOn) rdaObj = Nothing Then using ADO.NET technology , u can used ...Show All
.NET Development vb2005-access connection string
ive used vb6 before now im trying to convert my vb6 apps into vb2005. im having problem with my dsn-less connection string which is Dim cs As New ADOR.Recordset Dim rs As New ADOR.RecordsetClass Dim li As ListViewItem Public Sub con() Call dis() 'dsn less access connection cs.Open("PROVIDER=msdatashape;data provider=MSDASQL.1;" & _ "pe ...Show All
Windows Forms [VB.NET] Problem to Update my DataGrid
Hi all, My problem comes from the update of my datagrid I bind my datagrid to my datatable like that Code: Public Sub SetDataGridDataTable(ByVal d As DataTable) dataGridDataTable = d Me.ThreadStart() End Sub And here is what I have in my thread Code: Dim UpdateThreadStart As New ThreadStart(AddressOf ...Show All
Windows Forms DataGridView code serialization problem
On my Windows Forms app I have a base form called DataEntryForm. On this form I have a DataGridView and a BindingSource populated with a base EntityCollection. These controls are protected friend. I have a second form called EmployeesForm inherited from DataEntryForm. I changed the datasource of the BindingSource to an EmployeesEntityCollection. It worked fine and the public properties of my custom entity class appeared on the DataGridView. If I change any property on the EmployeesForm controls and save the form, it seems that the code generator will make something wrong. When I close the form and open it again, its displayed the following e ...Show All
.NET Development writting xml based on xsd schema using Dataset or any other method
Am using Visual Studio 2005 (vb.net).... I know you can validate an xml file using "XmlValidatingReader", but I want to generate xml from a dataset based on an xsd schema, this is some thing I use to do in Stylus Studio but can't figure out how to do it using vb.net so I want to generate a xml document based on an xsd schema I have got, can any one help Many thanks jaodger Yip, use the XmlDataDocument class. This class allows you to treat the xml in a dataset as an XmlDocument. This might be what your looking for, however the DataSet class has a WriteXml (I think thats what it' ...Show All
.NET Development select distinct vb.net - visual studio 2005
SELECT DISTINCT MakeID, DeviceID FROM tbl_Model WHERE (DeviceID = *Variable*) I am looking for an = to this select statement to use while accessing an access database. I cannot figure out how to use the distinct function from the "dataset.datatable.select(string)" I want to do this from the code b/c I need the deviceId to be a variable that will be set else where. any suggestions Hi, Yes, you definitely could use a datareader. Though you'll need to have a storage for the values returned by the datareader. So a datatable wou ...Show All
