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

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

Fil52724

Member List

fanis
jk_uk2
Bob Surtees
Pablo Espada
elliotg2005
BradyGuy
rinku
OShah
Nicolas D
Markus H
Gerlop
Craig Cormier
Edward E. Weller
Shaul115
Kevin McKinney
Yahor Sinkevich
Kraymer
Ellanna
neoret
HXP
Only Title

Fil52724's Q&A profile

  • Visual Basic How to save data from a form to a xml file?

    i'm trying to find a way to store data entered in a form into a xml file i have found some codes~ it worked~ but when i want to store another set of data~ it replaces the one i enter before~ it's like it's creating a new xml file each time i store data in the xml file the code i used is this Dim xmlTW As New XmlTextWriter("..\CYFmembers.xml", Nothing) With xmlTW .Formatting = Formatting.Indented .Indentation = 2 .W ...Show All

  • Visual Basic My.Computer.Network.UploadFile & Timeout

    Hi, I'm using VB 2005 and have been successful in uploading a file to my FTP server with: My.Computer.Network.UploadFile("c:\temp.txt", "ftp://servername.com", "username", "password") If I disable my FTP server (so I can see how VB 2005 deals with that), I get an exception about 20 seconds after VB 2005 starts to attempt the connection.  That's fine, but 20 seconds is a really long time.  The above code can support ...Show All

  • Visual C# The best way to clip and store an image

    I have a 256x256 *.bmp file that I am loading in and I am not quite sure what the best way to actually clip and store all 64 tiles (32x32) out of it. In the end I want something that I can easily place onto the screen. What would be the best way to clip portions out of an image What kind of object would be the best way to store this information Any advice is welcomed. The best way you decided isn't the best way in my humble opiniun. You ...Show All

  • SQL Server Insertion / updation problem in SSIS

    “I have a scenario where i am trying to insert 200,000 lac records & update 200,000 lac record in destination table using SISS Package (SQL SERVER 2005) but I am not able to neither update nor insert the records . while executing the package its not showing any error also . what could be the problem “ We have business logic in Package creation 1) Insert New records and 2) Update Existing Records using the follow Data flow diag ...Show All

  • Visual C# Desktop shining through my buttons during loading

    What happens is that my form is nicely displayed with its background, and then the buttons on my form are drawn - but during the drawing of the buttons, the desktop shines right through my form's background image. Is there any way to prevent this from happening My buttons have a background color, but not a background image. Regards,   Guido Any luck on this   What version of Windows + Visual Studio are ...Show All

  • .NET Development How to send and receive xml data via HttpWebRequest/HttpWebResponse in windows forms applications.

    I am having hard time to post xml data to my web site (or to aspx page) which is running on IIS server. I am trying to post the xml string from windows form application. I am using “HttpWebRequest” class and reading the response using “HttpWebResponse”. My code works fine when I send plain text data, By setting request.ContentType=@"application/x-www-form-urlencoded ". When I try to send xml string I get 500-server intern ...Show All

  • Visual Studio Express Editions VB Express vs VB.net?

    Hi guys, I am just wondering if there is any difference between VB 2005 express and VB.net I am moving from VB6 and wanttomove to VB.NET is VB 2005 express the one to go for Thanks Hi, No, if your looking at the language standpoint, there is no real difference. Its just the developement environment (w/c makes your life easier) and tools that has difference... cheers, Paul June A. Domag ...Show All

  • Visual Studio Express Editions I may have found a way (Excel to Form Controls) but one problem...

    I just coded a functionality in my program that with a click of a button pulls up Excel, takes all values as strings and populates the spreadsheet in a particular format, with column names, and even makes a line chart out of two column's data. This was pretty hard to find out how to do but after fits and starts it finally works great. My question now is... I'd like to go in the reverse direction - to open a particular spreadsheet (which will ...Show All

  • .NET Development net remoting problem

    Hi! I have a remote object that was runing fine over iss, but active directory was installed on the server and now the remote object is not available anymore. I get the next error:   System.TypeInitializationException: The type initializer for "System.Net.IPAddress" threw an exception. ---> System.TypeInitializationException: The type initializer for "System.Net.Sockets.Socket" threw an exception. ---> System.DllNotFoundExcep ...Show All

  • Visual Basic array variable

    How can we create an array variable in vb. The size of the array should be defined only during runtime. Please give the sample code. Try this: Console.WriteLine("Enter size of array: ") Dim numElements As Integer = Integer .Parse(Console.ReadLine()) Dim strings(numElements) As String For i As Integer = 0 To strings.Length - 1   strings(i) = "Hello, World" Next For Each s As String In strings   Co ...Show All

  • Visual Studio Team System Destroy in TFS Beta 3

    How I can permanently destroy folders in source control It's clearly a need people are going to have before long.  I don't know what, but we'll do something to make sure people have a way to permanently get rid of data.  It won't be in V1 RTM but we won't make people wait years for it either. Brian ...Show All

  • Visual Studio Forms designer in beta 2 Visual C# 2005

    After iinstalation of Visual C# beta 2 I tried to create simple windows application from template - ewerything worked fine but when I am trying to view sample form designer is not showing up and I am reciving error message: "Could not load type "Microsoft.VisualStudio.Shell.Interop.IVsRunningDocumentTable2" from assembly ... (And then version information and stuff)" I had some warning messages when first running Visual C# but I am not reca ...Show All

  • Visual Studio SolutionExplorer click event

    Hello I've found almost every event in the book that the AplicationObject.Events has to offer. However, I can't find theClick event. I want to do some code whenever an item is being clicked on the solution explorer. Is it possible Avi Avi, You can use the EnvDTE.SelectionEvents. The Onchange eent is fired whenever the selection in the SolutioExplorer changes. HTH, Chetan ...Show All

  • Visual Studio Team System Manual Merge

    Hi, Is it possible to activate a manual merge Currently we are able to merge manually only if there are conflicts that need to be resolved. We would like to merge manually even if there are no conflicts at all. Thanks Michael What situation are you referring to There are two major areas where the Resolve dialog comes into play: (1) Your workspace version is out of date. Either you're trying to Checkin a file that's ...Show All

  • Visual C++ beginning c++

    I'm new to the C++ world, (first quarter intro to C++) and am trying to write a small simple program in school that uses the random number generator function in the standard library to generate a random sequence of letters from A to Z(ascii 65-91). How can I set the range of the random function to generate random numbers between 65 and 91 I understand how to cast them into a character, but as the program sits now, I keep getting random character ...Show All

©2008 Software Development Network

powered by phorum