Software Development Network Logo
  • VS Team System
  • Windows Forms
  • SQL Server
  • Visual C#
  • Visual Studio
  • Visual FoxPro
  • IE Development
  • Windows Vista
  • Visual Basic
  • .NET Development
  • Microsoft ISV
  • Game Technologies
  • Audio and Video
  • SharePoint Products
  • Smart Devicet

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

pangitko79

Member List

enric vives
David Mc Dermid
ugpj
enric vives
kilo94
Kathirvel
Patrik Olsson
bishoycom
MA2005
lucerias
WayneSpangler
heavenlycharmus
Nawar G.
KayJHut
Sergiulica1
stress1500
Peter Torr - MSFT
JJKusch
huysmans
Daffodils
Only Title

pangitko79's Q&A profile

  • Software Development for Windows Vista Mcafee Enterprise 8 Frameworks once installed on my Vista operating system brings a bluescreen.

    Hi everyone, I just install Vista Business upgrade (German) on my PC, then I tried installing Mcafee Enterprise 8 Framework services and received a bluescreen. I had to reboot in Safe mode to de-install McAfee. Do I need another version of McAfee or a patch ...Show All

  • Visual FoxPro HOW TO ACCESS A TABLE FROM A REMOTE SERVER USING A "USE" COMMAND

    Hello everyone we are trying to access our table directly from a remote server using a command use " ftp://servername.com/foldername/table.dbf " it is giving me the message could not find the file table.dbf so we make the path as use " \\servername.com\foldername\table.dbf " still the same problem can anyone help us how to directly connect a foxpro program with the remote table using ftp. You cannot open a table ("use") through FTP. FTP stands for File Transfer Protocol. It allows you to transfer a copy of the file to your local computer then open it there. To open it directly as you want you use your second command: use \\servername\foldername\table.dbf For this t ...Show All

  • Visual Studio Team System Project Portal License Q

    Could someone please clarify the license position with regard to using SharePoint Project Portals with TFS We have a TFS installation, Visual Studio Team Edition for Software Devs + CALs for other Team Explorer users. Are there any additional licening requirments around access to the Project Portal. Typically sharepoint requires either a server license or CALs - is this the case for anyone wishing to access a Project Portal for a TFS project The licensing white paper mentions " Viewing manually distributed reports via MicrosoftR Windows SharePoint Services " has the following license implications " A Team Foundation Server CAL is not required; appropriate Windows Server licenses are required ." I want to be ...Show All

  • .NET Development LinearGradientBrush, no member for LinearGradientMode

    I am working with a LG Brush. And I am trying to determine the LinearGradientMode that was used to create the brush. Does anyone know how to get this value Thanks! Bob The mode is specified in the constructor but is not available as a property. You could create a class derived from Brush with a Mode property that wraps a LinearGradientBrush object but the code is quite awkward, mostly due to the Clone() method. Since you specify the mode when you create the brush, consider a way to pass that mode along with the brush reference. One way to do that is to use a class that wraps both the mode and the brush... ...Show All

  • Visual Studio Express Editions Please help with save/open,rounding off.

    Hi Can someone please help me, I'm new to visual basic. I would like to know how does one code save or open and what file format would be best How do I stop the program from rounding off calculations, e.g. 12.50 to 13.00. I want it to show 12.50. Thank you very much. well what type of file do you want to save Here is an example on saving to a text file: 'Import the System.IO namespace .. .. Dim theStreamWriter as new StreamWriter(Application.StartupPath & "\ filename .txt") theStreamWriter.Write("hello!") theStreamWriter.Close() to append to the file, set the second parameter of the StreamWriter constructor to "true" ...Show All

  • Visual C++ Shallow Copy , Deep Copy , Memberwise Copy ,Bitwise copy

    hello ppl, i searched thru google but i didnt find the exact explanation for constructors. Shallow Copy , Deep Copy , Memberwise Copy ,Bitwise copy i got some conflicting answers.. and what is the difference between them.. .pls help me.. manish Just to be pedantic the compiler actually doesn't generate code that copies the object one bit at a time - it is at least one byte at a time. But the underlying meaning is the same: the way I think of it is a shallow/bitwise copy can be done using memcpy while a deep/member wise copy requires calling copy constructor/assignment operators for user-defined types. Note: for built in types, like int, char, etc., there is only one way to copy ...Show All

  • Visual Studio Missing Parameter Field Current Value...

    Hi every body, I am supplying a value to a parameter inside a subreport and still shows this error message below: Missing parameter field current value. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: CrystalDecisions.CrystalReports.Engine.ParameterFieldCurrentValueException: Missing parameter field current value. I have written the codes I used to fill the parameter with value. TestReport is Main Crystal Report. Thanks. [code] Private reportDoc As New TestReport() Dim subreport As ReportDocument = reportDoc.OpenSubreport("Sample") D ...Show All

  • Visual C# How to create multiple dimensional array at runtime?

    How to create multiple dimensional array at runtime For example: string [,] Table = new string [colums,rows]; Regards. ...Show All

  • SQL Server Missing row and column data

    I’m relatively new to Reporting Services. I have a business data object that supply the data to my report. I have embedded a report viewer in my ASP.Net page. The report does not show all the rows and columns. It seams to ignore rows and columns with 0 values. If I display the data in a grid view it has all the rows and columns. Am I missing a property setting that would allow the display of 0’s ...Show All

  • SQL Server Calling MDX query in TSQL Stored Procedure to Pass Parameter

    Hi; I would like to know if it is possible to call MDX query from TSQL Stored Procedure to pass parameter Can I create MDX query dynamically If it is possible then can anyone provide some examples. For more details; let say I have one MDX query which has parameters which I would like to call from a TSQL stored procedure and pass that parameter from Stored procedure. Any help would be apprecaited. Thanks M. Essa Mughal Yes...you can send MDX from SQL but for this one method that I know is to create a linked server to the OLAP database. after that you can use openquery to pass the MDX. ex: Select * from Openquery(<Linked_server_name>, 'select [measures].[v ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Drop Texture Problem?

    Hi all, How to drop texture I tried texture = null and texture.Dispose(). But can't drop the texture. Best Regards. ...Show All

  • Windows Forms Context Menu In GridView

    How can I have context menu in Gridview upon right clicking at any where in gridview.Can any one plz help me up... Thanks in adavance.... With regards, mahender Hai, Well Mine is Server side application.I am Using gridview.My VS is 2005.Context menu Displays Properly when I try to use textbox as a control.Context menu COme over the Control.AWhen i try to replace textbox with dropdownlist .The Context menu is display backside of Dropdownlist.i mean it looks like Context menu upon tht Dropdownlist occurs....I am using IE7.0 With regards, Mahender ...Show All

  • SQL Server Set NULL to datetime parameter

    Hi All, I have a problem while trying to set "NULL" value to my datetime parameters. I have two datetime parameters (AllowNull=True) on my report. (BeginDate and EndDate) it works fine in preview mode in reporting design. The problem occurs, if I try to set an emtpy value to these parameters in my asp.net application. The code looks like; Dim repParams(1) As ReportParameter repParams(0) = New ReportParameter( "BeginDate" , String.Empty) repParams(1) = New ReportParameter( "EndDate" , String.Empty) ----- ReportParameter method requires String parameters. If user set any datetime value, I am sending "String.Empty" value to my paramaters in order to set them as NUL ...Show All

  • SQL Server Save Word Doc in Db

    hi can u tell me plz how do i save a word doc or and excel sheet in sql server thanx the other option could be to save the Word and Excel in the database as WordML and SpreadsheetML (Office's XML representations of Word and Excel documents). Would only work if you have Office XP or higher. Just another option. If you did this you could run queries on the documents content. ...Show All

  • Visual Studio Team System Turn off email notification during Team Build

    How can I configure the .proj file to not send out email notifications after a team build is completed Project alerts are set on a Team Project basis. In your VS IDE go to Team > Project Alerts menu and configure it. This is an all or nothing for every build in the Team Project; I don't think you can configure email notifications on a per TeamBuild basis without writing a custom mail task. ...Show All

©2008 Software Development Network