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

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

byx45

Member List

Venkata Veeraraghavan
JokerMan
Andrew Petrochuk
Anil Kumar Dogra
veronika
msjammu
JasonReis
Noa
RahulB
David Weller
hussain990
S_GMAN
badmf_ahhhhhyeah
clefsoft
vvatclor
doener
prets
Developer Express - Dustin
Chris Biles
gwt
Only Title

byx45's Q&A profile

  • Visual Studio Express Editions How do I perform the Button1_Click subroutine?

    I coded in a Button1_Click event and it works properly when Button1 is clicked.  Now, I want to also "perform"  this Button1_Click subroutine from my Button2_Click subroutine. My Button2_Click event (labeled "Back") subtracts 1 from a counter.  Then I want to perform the Button1_Click event (labeled "Next"). How do I "perform" the Button1_Click subroutine (without clicking on Button1)     Just double-click on your "Next" button on your form & insert the code to increment your counter. How did you do your "Back" button event ...Show All

  • Visual C# Wiered problem with AddColumn:

    I have writen the following method: private static DataColumn AddColumn3( DataTable dt, DataColumn dc, string name, Type type, string label, string def ) { dc = new DataColumn(name, type); dc.Caption = label; dc.DefaultValue = def; dt.Columns.Add(dc); return dc; }   <br><br> Now this method works perfectly but when I use a different constructor for the Datacolumn like this: private static DataColumn AddColumn3( DataTable dt, DataColumn dc, string name, Type type, string label, string def ) { dc = new DataColumn(name, type, label ); dc.DefaultValue = def; dt.Columns.Add(dc); retu ...Show All

  • Visual Studio 2008 (Pre-release) How soon a WinFX build that works with VS2005 RTM?

    As VS2005 goes RTM tomorrow (15th Oct), how long will it be before a WinFX build that works against it is released Regards Richard Blewett - DevelopMentor http://www.dotnetconsult.co.uk/weblog http://www.dotnetconsult.co.uk Our intention is to have the release of WinFx Runtime Components be the Beta2 release of Windows Vista.  That is planned for Dec 2005.  I hope that helps your planning. -Ford ...Show All

  • SQL Server efficient JOIN query

    Please help me with the efficient JOIN query to bring the below result : create table pk1(col1 int) create table pk2(col1 int) create table pk3(col1 int) create table fk(col1 int, col2 int NOT NULL, col3 int, col4 int) insert into pk1 values(1) insert into pk1 values(2) insert into pk1 values(3) insert into pk2 values(1) insert into pk2 values(2) insert into pk2 values(3) insert into pk3 values(1) insert into pk3 values(2) insert into pk3 values(3) insert into fk values(1, 1, null, 10) insert into fk values(null, 1, 1, 20) insert ...Show All

  • .NET Development Return as String size limitation?

    All, Does anyone know of a size limitation when returning a string from a web service We are returning a string of XML from our data layer and it appears to get cut off at a certain size. Thanks I am executing a SQL query with the 'For XML Auto' statement. I use 'ExecuteXMLReader' into a datareader. The XML is cut off at this point. Seems to be always in the same place. So is it a limitation of the data reader ...Show All

  • Visual Studio Changing behavior of "Show XSLT Output"

    I want to change the behavior of the "Show XSLT Output" button in Visual Studio. Essentially, I want it to use whatever process it is using to render the transformation, but I want it to display the output in my own custom integrated web browser. Can you give me some pointers as to where to begin this project You only possibility is to override the command and handle it yourself. For example, you could use CommandEvents.BeforeExecute to do this. Craig ...Show All

  • Visual Studio Express Editions Starter Kits not Working

    hi, i have VB Express & VWD Express install via full images, but the PayPal Starter Kit and Shareware Starter Kit does not apperar in the new project dialog. how can i fix this thanks, AB They are telling you to add your own name > YourMovieList Remove the $ - - - $ and the namespace would be called  > safeprojectname, which does not represent much. Name it anything you want. Hope this helps. ...Show All

  • SQL Server SQL Server 2005 Service Pack 1 Setup errors

    I am installing the SQL Server 2005 SP1 "SQLServer2005SP1-KB913090-x86-ENU.exe" on my server and everything successfully installed except the Integration Services. Below is the error I received. 05/18/2006 09:37:04.640 Product: Integration Services 05/18/2006 09:37:04.671 Integration Services (RTM 2047 ENU) - Failure 05/18/2006 09:37:04.750 Details: Unable to install Windows Installer MSP file Couple questions I guess. Are others getting the same thing Is there a way to fix this so it will install like a work around Last what will this affect by this not installing correctly A couple of thoughts/suggestions: 1. ...Show All

  • SQL Server Connecting two cubes

    I am using SSAS 2005 and I have a situation where I have two different cubes that I need to link up so that I can get related data from one cube to the other.  Here's the scenario: I have a customer cube that gives me metrics about how many new customers, inactive customers, etc based on date ranges and other criteria.  What I need to be able to do is once I have a subset of customers I want to be able to look at related measures that belong to a different cube.  I have thought about making a large cube that contains multiple fact tables and allows me to grab both measures as necessary.  The reason I'm trying to avoid ...Show All

  • Visual C++ Property Sheets - A problem

    Compiler: Visual Studio.NET 2002 Hi everyone, I am having trouble teaching myself Property Sheets. I thought I grasped the ideas but I get a 'First-chance exception' in the Output window when debugging. I do not think I am doing anything special, my code is: CPropertySheet propsheet(_T("Property Sheet")); MyPage pageFirst; // derived from CPropertyPage MyPage2 pageSecond; // derived from CPropertyPage propsheet.AddPage(&pageFirst); propsheet.AddPage(&pageSecond); if (propsheet.DoModal() == IDOK) { } MyPage and MyPage2 are created in the normal way in the resource editor and the classes are created using ...Show All

  • Visual Studio 2008 (Pre-release) sqlmetal clashes

    i use table names as the column names for foreign key references. for example, operator.account refers to account.id the sqlmetal generated code won't compile in this scenario, as it defines Account twice, once for the account column, and a second time as the account reference. In any case, just something to think about, i guess.   sqlmetal has an option to generate a schema xml file.  I haven't used it myself so I can't say for sure but my guess is you could edit the xml file to change the property names and then feed the xml file back into sqlmetal to generate your class library. - Kurt ...Show All

  • Visual Studio Custom Editor

    I am currently trying to integrate a custom editor (for an in house scripting language) within visual studio. The editor itself has been build as a seperate windows application. However, i wanted to convert it into a VSPackage. I have read whatever is available in the VSIP sdk, but that's not much! I have also looked into the basic edit sample (provided with the VSIP sdk), but i somehow feel that it might not be the best way of getting things done! Is there any other information available online, if possible, the source code of a well designed package Thanks in advance. For an example of a well designed package have a look at the new ...Show All

  • Windows Forms Parent Expressions with WinForm DataGrid

    I am having issues with the Windows Forms DataGrid. I have two DataTables in my DataSet.  One DataTable, Departments, is a look up table that contains a numeric ID primary key and a text description.  The other DataTable, Employees, has a column that references the Departments DataTable.  What I am tying to do is have the Employees table displayed  ...Show All

  • Software Development for Windows Vista While Activity - Loss of status

    Hello, I have a custom activity having its own serializable data. When using it in a SequentialWorkflow together with a following Code activity, I'm able to query from the Code event handler the data in the custom activity. When placing both in a Sequence in a While activity, the data in the custom activity is lost and the code activity sees my custom activity as created by constructor. I've read that the While activity re-initializes its child activities each time it loops (can I somehow prevent this ) but my problem occurs in the sequence inside the loop, in other words, the loop executes the first time... Thanks forward to your respo ...Show All

  • Visual Studio Express Editions Where are the registration benefits

    Have just installed and registerd VB Express. I received an email with a link to the registrations benefits page ( http://go.microsoft.com/fwlink/ LinkId=52054 ). This link leads however to Microsoft Connect, not the registration benefits page. The link given in the Express Registration FAQ  is the same incorrect link. Judging from this forum, this seems to be quite common. has anyone got a working link to the page Cheers    B-M-C wrote: Have just installed and registerd VB Express. I received an email with a link to the registrations benefits page ( http://go.mi ...Show All

©2008 Software Development Network