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

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

rsri

Member List

Traceofmetal
ScottieVBA
Ste Moore
.NetAvoider
Steven Randolph
GGiant
Y2KPRABU
George Udov
DREAM_G
sergio seguel
Mattias Kilbo
SharpDawg
ChrisMayhew
Ed Mason
dawnhornby
MattO2
Kev160967
Damiaan
anonymoosee
Darksaint
Only Title

rsri's Q&A profile

  • Visual C++ I cant build a basic Win32 Console application, i get a LNK1104 Error

    Hey. So i installed Visual C++ Express 2005, i ran it then i installed the platform SDK. I followed the Videos at msdn.com on how to add the 3 directories (Bin, Lib and Include) in the VC++ Options. Then i changed the core winexpress file in notepad and when i tried to make a basic C++ application, i got a LNK1104 Error, that it couldnt find the 'user32.lib' file. This is the code i used: #include <iostream> using namespace std; int main() { cout << "Hello World" << endl; return 0; } I have done this same basic application with Visual Studio 2003 .net and Dev C++ on other computers and it work ...Show All

  • Windows Forms ArgumentException on Textbox object, please help!

    I'm getting an exception in my windows forms application on this line: this.textBox1 = new System.Windows.Forms.TextBox(); the exception text: A first chance exception of type 'System.ArgumentException' occurred in system.drawing.dll   Additional information: Only TrueType fonts are supported, and this is not a TrueType font. This textbox is inside another control, but this call is in the Initia ...Show All

  • Visual C# .NET 2.0 release problem

    I have installed the new .NET 2.0 redistributable package from http://www.microsoft.com/downloads/details.aspx FamilyID=0856eacb-4362-4b0d-8edd-aab15c5e04f5&DisplayLang=en which required me to remove the beta version first. Now, none of my Visual 2005 C# Express Edition beta 2 applications will load into the Visual 2005 editor! "Microsoft Visual C# has encountered a problem and needs to close." There is no information about the nature of this problem. Am I missing something, do I need to revert to the .NET 2.0 beta, or what Regards,   Guido I am also unable to start a new project. When I ...Show All

  • Visual C# How to get data out of an XML file in C#

    Hi there, I'm a newbie to programming with C#, so please help in anyway you can Thanks. Using: MS Visual C# 2005 express edition on Windows XP. What I'm trying to do: I would like to extract just a couple of pieces of information from a data file, for example this XML created file: =======File starts======= < xml version="1.0" > <!-- created by the MBM 5 logger.dll --> <MBM_INTERVAL> <Log Date="05/03/2006" Time="18:26:03" CPU="3205 MHz" T_Case="32&#186; C" T_CPU="47&#186; C" T_PSU="-48&#186; C" V_Core_0="1.34 V" V_Core ...Show All

  • Windows Forms Populating method of dataGridView

    I have set the datasource for the dataGridview as follows: dataGridView1.DataSource = northwindDS; However,how can I set certain columns as combolist, certain columns as linkbuttons and so forth In order to do this should I populate the data by using a for..loop In that case will the population go slow if we want to populate more than 40,000 records Please explain. Thanks in advance. Check out the following post: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=150068&SiteID=1 -mark DataGridView Program Manager Microsoft This post is provided "as-is" ...Show All

  • SQL Server Date matching

    I have done this twice now. I am sure I will do it again. I have a date dimension. Among other things the dimension contains columns for a meaningless id and raw date. If I want to translate a date to a the meaningless id for storage in a fact table, I use a look up component. All fine and dandy until I run the data flow and all of the look up's fail. Now what could be wrong with that I look at the redirected rows and for a split second think, what is wrong with that data Then it hits me. There is time information in the source and not in the date dimension. Wouldn't it be nice if I could match on just the date! Off I go to put in another ...Show All

  • Visual C++ C++/CLI String += question

    Is the following a bug or is it expected behavior for the C++/CLI compiler int main( array <System::String ^> ^args) { #if 0       String^ message = hello "Hello " : "Goodbye " ;    message += "World" ; #else     String^ message = "" ;    message += (hello "Hello World" : "Goodbye World" ); #endif Console::WriteLine( message ); return 0; } I can do the code under #if 0. The alterative gives the error: 1>.\stringbug.cpp(16) : error C2665: 'System::String::Concat' : none of the 9 overloads could convert all the argument types 1> e:\windows ...Show All

  • .NET Development Can I build a chat server/client app with .NET remoting?

    Hi, I want to build a chat application where clients with windows app clients can chat. Nothing very fancy like MS Messenger, just plain simple chat. Can I do this with remoting or I have to go to sockets (notvery familiar) The part that I have trouble understanding is how the server informs the clients when someone sends a message to A, B and C cilents. Is the clients have an open connection with the server or is polling Thanks in advanced.. Hi ubercoder... I guess webservices would be the smarter choice in this case. Since you already plan on using a client-server architecture, webservices can do a ...Show All

  • Visual C# Interface implemented over a number of classes?

    I have an interface like this: interface IAccess { void open(); void read(); void write(); void close(); } Now I want to implement each of these in a different class. File: open.cs public partial class Open Access : IAccess { public open() { // Implementation here } } File: read.cs public partial class Read Access : IAccess { public read() { // Implementation here } } When I try this I get a Compiler Error CS0536. I have tried with and without the Partial Class. http://msdn2.microsoft.com/en-us/library/ef306zxz(VS.80).as ...Show All

  • Visual C# Assigning values from one form to the main form

    Im trying to assign text to a text box in my main form from code in a differnt form. Both of the forms are open when this takes place and the secondary form closes after it sends the values to the main form, but it dont work. Heres my code: frmMain FormMain = new frmMain (); FormMain.txtAmount.Text = "10000" ; FormMain.txtDept.Text = "%%%%%%%%" ; I also tried calling a function in the main form (from formB with the code above) that assigns the value from formB to the correct text box of the main form. I checked with a MessageBox and it sends the correct value to the main form  ...Show All

  • SQL Server Report Builder - parameters

    Is there a way to pass a parameter to the report builder We are not using impersonation to call the report builder so we don't know who the actual user is. We want to be able to pass the UserID to the report builder so we know who the actual user is supposed to be. Thanks. Sorry, currently the only parameters that can be passed to Report Builder are a server path, startup model, startup perspective or startup report. ...Show All

  • SQL Server Using SSMS to Manage SSIS

    (Also posted on the beta newsgroups...) I'm having problems using SSMS on a workstation to manage SSIS on a server.  I cannot connect to SSIS on the server.  The SSIS service and the RPC service are both running on the server, but I get an "RPC server is unavailable" error message. I have CTP 15 running on the workstation but CTP 14 running on the server.  Probably not a great idea, I know.  Anyone know if that is definitely the problem   Or could it be something else Thanks, Dave Fackler I have the same problem. I'm using windows xp and visual studio 2005. When I ask Visual S ...Show All

  • Visual Basic Loading and showing a form in a Panel control

    Is it possible to load and display a form inside a panel control using Visual Basic 2005 and if so what code do I need to handle this. Regards Dipendra Actually, I tried it and it does work nicely - the key element when I tried it previously (and missed) was the .TopLevel property... . What you could do, is set the borderstyle (of the form) to None and see how that goes. Even so, logically, UserControls would probably be better, but it's good to know that the above works. ...Show All

  • SQL Server Show Parameter Selection on Page Header

    My first day using Reporting Services. I have a report parameter that has the following properties: Name: Region Multi-value Available Values = From query Label/Value examples: East/4160 North/869 South/6185 West/5315 The report Page Header needs to show the region(s) selected in a textbox named "SelectedRegion" and the body has a table that shows the filtered data from a stored procedure. What is the best way to populate the SelectedRegion textbox with the Region name(s) selected from the parameter   For example, if the user selected the East and South regions, SelectedRegion must show "East, South" even though there may not b ...Show All

  • Visual Studio Team System Project Site Login error to Report Server

    I am getting the following error when I go to the project site: Reporting Services Error Marc, Under IIS Admin, if you go to the properties of your reporting site, is your authentication set to "Integrated Windows Authentication" You can verify this with by going to the Directory Security tab and clicking on "edit" under "Authentication and Access Control". Also be sure to verify all the sites under the reporting site since the authentication does not propogate. Thanks, Erin ...Show All

©2008 Software Development Network