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

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

khanfauji

Member List

SM_G
ramsarvan
coachdunlop
reybhoie
Greater
KasperWessing
Jamie Garbutt
MReza
Pl_john
Barnabas
Pete A
october
RobGibbens
ursfriend
C Howell
Eklipse
PhilipHTaylor
Kiwi JB
Daniel Papas
AnnaEllis
Only Title

khanfauji's Q&A profile

  • .NET Development FtpWebRequest question

    Can anybody please help me I am trying to write a code to uplode or delete file on ftp server. A problem is that I don't know how to set up Method property for ftpwebrequest class, so sample code like this would work. Dim serverUri As String = "ftp://ftp.contoso.com/file.txt" Dim request As FtpWebRequest = CType(WebRequest.Create(serverUri), FtpWebRequest) request.Method = WebRequestMethods.Ftp.DeleteFile request.EnableSsl = Tr ...Show All

  • Visual Studio "Configuration" property not working when building a solution?

    Hi everybody! I'm having some problems building a simple C++ console application using MSBuild (VS2005 Beta 2) From what I've seen I should be able to do this: MSBuild HelloWorld.sln /t:Rebuild /p:Configuration=Debug To build my project for Debug only. However: The above command results in both the Release and Debug configurations being built, it seems like the Configuration property is ignored Turning on diagnostic logging gives me the results ...Show All

  • Visual C# Get a list of Delegate on Event

    Ok, What I want to do is retreive all the delegate that is attached to an event. Let's say i'm attaching several deletages to a button: IE: myButton.Click += new System. EventHandler ( this .myButtonClick1_Click); myButton.Click += new System. EventHandler ( this .myButtonClick2_Click); myButton.Click += new System. EventHandler ( this .myButtonClick3_Click); myButton.Click += new System. EventHandler ( this .myButtonClick4 ...Show All

  • .NET Development Remoting Serialization Issue

    I've got a wrapper class for MyClass, called RemotableMyClass (which inherits from MarshalByRefObject).  I've got an object that is not marked as serializable I'm using inside MyClass (which implements ISerializable to "take care" of that). In the server, I have... ChannelServices.RegisterChannel( new HttpChannel(1234)); RemotingConfiguration.ApplicationName = "MyTest"; ObjRef objRef = RemotingServices.Marshal(instantiationOfRem ...Show All

  • Visual Studio Express Editions How to get MFC libraries for Visual C++ Express 2005

    hi, I have a software package which works well during VC6. Now I tried to compile it in VC++ 2005 Express.  Most of projects in the package are  no problem. But there is only one project which is a GUI application (using MFC) always got some problems. At first, it missed some lib files. So I copy some lib files from VC6 directory to current lib directory. Then I got the following error. Anyone can give me some ideas   Lin ...Show All

  • .NET Development XSD.exe Objects and XSD Validation

    Once I have C# objects created using XSD.exe is there a way to validate them against the XSD they were created with, during the XmlSerializer serialization process EXAMPLE: C# object is objInputCObjType that was created with XSD.exe against abc.xsd. I call the following code with objInputCObjType, and want to validate that objInputCObjType against abc.xsd during the XmlSerializer process. XmlSerializer serializer = new XmlSeria ...Show All

  • Visual Studio VS 2005 Add-in Options dialog

    I'm in the process of porting my VS2003 add-in to VS2005 beta 2 and have the main things now working but I was wondering how to now setup/code the Options dialog.  Is there any documention/examples on how to do this in the on-line docs or does someone have some sample code they could share that shows this Thanks for the tip but I'm now running into a problem with the Addin file - when VS2005 tries to load i ...Show All

  • Visual Studio Formula to view data

    Hi, I have a report, which gets data from Oracle Database to generate report. I have a parameter field, based on the parameter value, the report will view the records. I need to check the length of the Parameter value, if the value is, assume 4, it should compare that value with the records of a field, say field1. if the length of the parameter value is greater than 4, it should view records, comparing that value with another field, say field2. ...Show All

  • SQL Server Error message "Interface not registered"

    Hi  I got the following error message when I make a new integration service project  Failed to save package file "C:\Documents and Settings\Administrator\Local Settings\Temp\1\tmp2B.tmp" with error 0x80040155 "Interface not registered". Can someone help Me Quote 'I would recommend reformatting and reinstalling this machine and avoiding this antispyware program in the future.' If I had to re-format every time some ...Show All

  • Visual Studio Visual Studio 2003 Enterprise Architect hangs when trying to debug

    Hello, well I have this problem...........I created a Windows Application and everything was just fine, then I installed NUnit to test my classes and suddenly the debugger doesn't start.....The compiler builds the application correctly, I can run my .exe file without any problems, but when I try to debug my application, Visual Studio hangs after building the project......Are there some files I should modify or what can I do to use the debugger a ...Show All

  • Windows Forms Column null values

    I have a app for printing invoices that uses two tables customers and invoices in the invoice table i have customerID,InvoiceID,CustomerName and Date and 10sets of textboxes Item,Price,SubTotal and a Total textbox that alow nulls and it works fine and does the calculations i need as long as there is a value typed in each textbox. What i would like to know is there some way to set a value of 0 in the textboxes that do the calculations because i ...Show All

  • Visual Basic I Need help Debugging

    Hi guys I'm new to visual basics and recently installed visual basic 2005 express edition, and as i'm new to it i tried out the getting started build a web browser guide, when i got to the end it said i needed to run the debugger which i did but every time i do i keep getting the following message... The application failed to initialize properly (0xc0000005). Click on OK to terminate the application. I have looked in all the help menu's ...Show All

  • .NET Development Network Stream Read

    I am using the networkstream to read a message sent. When ever I get messages back-to-back in a short period of time, the stream still does not separate the messages, which is causing me errors when I try to parse the messages and save information into a data base. I know this is probably a logic problem, but I am not fimilar enough with network steams to figure out what I can do to have the network stream just send on message at time to be proc ...Show All

  • .NET Development How can I edit values in an XML document?

    Hi, I am working on a project in Visual Studio using VB.NET and want to use an XML document to store some of my information. I can easily read the values I have pre-written in a well-formed XML document with code like this: doc = New Xml.XmlDocument reader = New Xml.XmlTextReader(infoAddress) doc.Load(reader) TotPayments = doc.Item("KioskInfo").Item("PayInfo").Item("TotPayments").InnerText My question ...Show All

  • Visual C# net mail namespace and SMTP

    I know that this has been asked before, but I've tried all the answers and haven't found the answer yet. I'm trying to send email using C#. My code works great on my local machine - no problems.  But when I publish to my 2003 server, it won't send.  There are no errors, all the other scripts execute ok, but the email doesn't come through. Here's my code =====================         MailM ...Show All

©2008 Software Development Network

powered by phorum