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

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

almightylinuxgod

Member List

phoebe0078
vidashgan
Dijkstra30
Mega_bit_dk
Jason Mongue
Dman82
c#_coder
Mincemaker
Hari M
R Boyd
smeganb
Norbert Mika
Michiel000
Rpotthoff
Jason Brower
ashwinv
Bill CC
David d
Yves Liu
fenris
Only Title

almightylinuxgod's Q&A profile

  • Visual FoxPro Design menu and manager users from DBF table.

    Hi all; I want create table DBF to design menu and manager users: EX: menu.dbf (items C(150), command C(100), skip L, picture C(100),...) How when run app will active menu Thank! DEFINE POPUP popGrid RELATIVE FROM MROW (), MCOL () SHORTCUT FONT "Arial",9 i = 0 cPrompt = "" SELECT menudata SCAN i = i +1 DEFINE BAR i OF popGrid PROMPT m ...Show All

  • Visual Basic How to control margin in Crystal Report

    Hi, I am working on crystal report. I have fully utilised the margin in form view, but in real printing an A4 paper, its margin is bigger than designed. Did I miss any setting Thanks. ...Show All

  • Visual C# how to read object value

    A simple question. How can I read (output) an object's value on a browser When I do this: Response.Write(objSomething.ToString()); it gives: System.Object[,] I know it contains some values, but it's not printing them out... OK so objSomething is a two-dimensional object array. You'll have to iterate through it yourself and print each element the way you want. For example object[,] a = (obejct[,]) ...Show All

  • Visual Studio Team System Newbie question

    Hi, I have Team Suite installed, and have created Team Services project. My questions is how do I either create code projects, or tie existing projects to my Team Services project I didn't install the new source safe. Was I supposed to Thanks J You may want to have a look at the Team Foundation walkthroughs. http://msdn2.microsoft.com/library/ms181232(en-us,vs.80).aspx Team Foundation This topic is a placeho ...Show All

  • .NET Development TableAdapter Update problem

    Hello, i have problem in my application. I create dataset with single table. In MainForm i have 2 texboxes and update button. This is code for update button: [CODE] Klient klient = new Klient(); klient.ShowDialog(); KlientDataSet dataSet = new KlientDataSet(); Serwis.KlientDataSet.KlienciRow klientRow = dataSet.Klienci.NewKlienciRow(); klientRow[0] = Guid.NewGuid(); klientRow[1] = klient.Imie; klientRow[2] = klient.Nazwisko; ...Show All

  • Smart Device Development cell event of datagrid ?

    I write a crosstab query, it be binded in a datagrid control. as shown: Company    master  bachelor -------------------------------------- companyA     40         38 companyB     65        67 ---------------------------------------- I want to do it : When I click one of cell, it will shown ...Show All

  • Visual Studio VSTSBeta2 VPC the evaluation period for this copy of windows has ended.

    I have downloaded the VSTSbeta2 VPC image, decompressed the Virtual PC files and started in Virtual PC.  The following error came up on windows 2003 Server: The evaluation period for this copy of windows has ended.  Windows cannot start ... Then it reboots the Virtual PC. The documentation states that is expires Sept, 16, 2006. Has anyone else seen this   Any ideas   Tried setting time in the BIOS to a week  ago, but no ...Show All

  • Windows Forms System.Deployment.Application.InvalidDeploymentException on some machines

    Hi! I'm getting the following exception when trying to install my ClickOnce-App on some machines: PLATFORM VERSION INFO  Windows    : 5.1.2600.131072 (Win32NT)  Common Language Runtime  : 2.0.50727.42  System.Deployment.dll   : 2.0.50727.42 (RTM.050727-4200)  mscorwks.dll    : 2.0.50727.42 (RTM.050727-4200)  dfdll.dll    : 2.0.50727.42 (RTM.050727-4200) &n ...Show All

  • Visual FoxPro Visual Foxpro free tables on remote server. Help.

    Hi, I get this error message; Exception Details: System.Data.OldDb.OleDbException: Invalid path or file name [OleDbException (0x80040e21): Invalid path or file name.] I have xp-pro with VS2003 installed. I save the application to a 2003 Server (that also has Sql Server with databases and IIS), and I have an older server, NT4, with a visual foxpro (free tables .dbf) accouning system on it. I created a form, WebForm_1 and co ...Show All

  • Windows Forms Bindingsource Filter Problem

    When using the bindingsource filter I run into trouble if columns have a certain character in their names. e.g. "Part #" or even "Part Number" gives me problems, becuase of the reserved word Number. Is there anyway to encapsulate the column names in the filter string so they are looked at as only column names instead of filter commands. I have tried surrounding them with  ' ' and " "  but neither work. Thanks for any help ...Show All

  • Windows Forms How to apply ColumnStyle and Alternating Row style

    I want to apply column style and alternating row style to my datagridview How should I do that Here's what I want to achieve: I have 3 columns. I want the first column to display its cells contents in bold. I also want to aply alternating row color to each row. Also, the Text should wrap in each of the cells. How should I achieve the above scenario All can be set using the Desinger. A DataGridView has the AlternatingRowsDefaultCellStyle ...Show All

  • Visual Studio Team System Saving a query after changing sort order results in message

    If you open up an existing query and you click a column heading to re-sort based on that column, after trying to close out the query you receive a message: "Changes you have made in this view have caused the underlying query to be modified. Would you like to save the changes to the query " Yes or No is the only options. I know this is new functionality in Beta 3 Refresh (from Beta 2) but can somebody explain what changed and if this is a valid w ...Show All

  • Windows Forms have someone write a Line Control like the Line Control in VB?

    i don't konw how to design its region! How difficult would it be to 'transcribe' these over to ASP.NET ...Show All

  • .NET Development XSLT 2.0 and XPATH 2.0 support?

    After much hunting I get the general impression that .NET 2.0 does not support XSLT 2.0 or XPath 2.0. But that version 1.0 is supported for XSLT/XPath and that XML processing performance has been significantly enhanced over .NET 1.0. Can someone please confirm these (The immediate implications of this concerns what XSLT reference book to buy.) thanks, david ...Show All

  • SQL Server Using SProc to expose attributes to Data Flow stream

    In the process of creating a Fact table ETL, I need to do Lookups against Dimensions. That's no problem. I also need to call a User-Defined function but, even though it is a Table-valued function, I cannot get the lookup to work. I was thinking about wrapping a stored procedure around the UDF but then need to expose the OUTPUT variables to the stream. The UDF contains some DB lookups for has business logic internal to the function that must be ...Show All

©2008 Software Development Network

powered by phorum