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

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

Lizzy76

Member List

BobGun
Shagey
RainerPaat
Alexander P.
Chango V. - MSFT
Darren Dmello
SummerLily
larange
Tim Sohn
Soulia
Sne
Drew Mason
jomunoz
Dilip Krishnan
bankim
saqib shahab baloo
taboryee
Aparrel
PatLaplante12345
Paul Watt
Only Title

Lizzy76's Q&A profile

  • Visual Studio Express Editions Delete a textline containing a certain string from a text file .

    hello I am new to vb and i cant not seem to solve this problem .What i am tring to do is very simple . I have a simple form with a textbox and a button , i use it to add a line of code into a textfile. This works just fine . My problem is that i want to create a simple form that will delete a line that contains a certain string . i do not want to delete the whole file just a certain string . here is the code i use to add a line to the text file : Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click My .Computer.FileSystem.WriteAllText( "c:\te ...Show All

  • .NET Development Code works with .Net 1.1, not with 2.0...

    Hello,    I have some c# code that works great when compiled with VS2003, but does not work when copied into c# 2005 express.  The 'con.Open();' line below will eventually throw an SqlException with an error message of:  "Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding."  The exact same code, running from the same machine runs perfectly, and quickly under VS2003. <Problem Code> SqlConnection con; SqlCommand command = null ; SqlDataReader reader = null ; con = new SqlConnection( "Server=MyServer;User Id=sa;Password=sa; ...Show All

  • Visual Studio Express Editions VC++ .exe file is not working on other machine

      Hi All,           I have created an .exe file using vc++ 2005 but when i copy this file to some other windows machine its not working. How can I make my exe of project portable on any windows machine   regards,      http://www.microsoft.com/downloads/details.aspx FamilyID=0856eacb-4362-4b0d-8edd-aab15c5e04f5&DisplayLang=en This is a link to the redistributables. You need to install this on the target machine in order for your executable to run. The link above is for x86. ...Show All

  • Visual Studio Is there a SourceSafe version in VS2005 beta 2?

    Hi Scott, See the answers in this post http://forums.microsoft.com/MSDN/showpost.aspx postid=130620&siteid=1 Alin ...Show All

  • Visual Studio How to use IVsWebBrowsingService

    Hi, I want to start visual studio browser (like view->other windows->web browser). I have tried IVsWebBrowsingService.CreateWebBrowser but have run in two problems: 1) I don't know valid parameters values. (where I should get rguidOwner, and what is dwCreateFlags). So I have tried some values ( rguidOwner = new Guid(), dwCreateFlags = 0). When I run it VS EXP tell me that package is broken (something like that) and turn off my package. 2) How can I turn on my package back in VS EXP I tried devenv.exe /ResetAddin and devenv.exe /ResetSkipPkgs. So, please, provide code sample for CreateWebBrowser and tell me how to load my package i ...Show All

  • SQL Server Debugging a script component task???

    How to debug a Script Component task For instance, I’ve got a Input0_ProcessInputRow procedure and I’d like to see what happen when compiler reach this line: dFecha = Left(Row.Column19, 4) & "-" & Mid(Row.Column19, 5, 2) & "-" & Right(Row.Column19, 2) I’ve put a toogle breakpoint there and then saved but when I run the package to ignore at all. This topic has been already discussed in these newsgrups but I still have doubts. Thanks a lot for any advice or clarification Unfortunately you can't debug script components with breakpoints as you can in ...Show All

  • Visual Studio Express Editions NEWBIE BEGINNER

    I am Very Raw at this. I have visually constructed a Windows App. But now I don't have the slightest clue how to "Tell" It what I want it to do. I have various text boxes for inputing numbers. I want to do math equations. Example...as an investment calculator and a mortgage calculator. I would like to hit the "Button" and run the calculations. I don't even know where to start. I know NO code at all and can't seem to find any online rescources to help. Thanks so much.... hi, http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=212558&SiteID=1 also those video tutorials is so great h ...Show All

  • Visual Studio Pet peeve of the day

    Why oh why doesn't VSS 2005 install over VSS 6.0 instead of requiring that first VSS 6.0 be uninstalled Normally an upgrade of a program installs over the old version keeping all settings. - dave Hi Dave, VSS2005 reuses the Setup from VisualStudio - it cannot simply upgrade VSS6 which uses a different setup model. Even more, if you used shared databases, it's likely you don't want VSS6 model (with the database in the same folder as the VSS binaries). Some users incorrectly set up the access rights to the shared database folder, and open themselves to security issues (malicious users can replace the VSS binaries with trojans)  ...Show All

  • Visual Studio Team System TypeLoad Exception when trying to run Unit Test

    Hi, I'm getting a typeload exception when trying to run a unit test. The assembly under test is named MyCompany.XXX.YYY.ZZZ The unit test assembly is named MyCompany.XXX.YYY.ZZZ.Test The unit test assembly has one class in it which contains nothing but the boiler plate code for a unit test. It simply writes a line to the output windows when the test method is executed. When I try to execute the test, a get a typeload excpetion on the MyCompany.XXX.YYY.ZZZ.Test.UnitTest class. I played around with it for a while. I managed to make the exception go away by changing the assembly same to something simply like MyTest. Any idea of what could be ca ...Show All

  • Visual C# a bug in: ArrayList.Add()

    It seems there is a bug in ArrayList.Add(); i have created a loop that adds differents array's (string[]) in ArrayList property. ok, let say i call my ArrayList "something" then this is what happens in my code: if i use: something.Add(Array1); then it adds it normally. if i use it two times: something.Add(Array1); Array1[1] = "another value" something.Add(Array1); then it adds it AND overwrites the old value, so both 'something[0]' and 'something[1]' have the same values. If i use the method 3 times, like: something.Add(Array1); Array1[1] = "another value" something.Add(Array1); Array1[0] = "yet another value" something.Add(Array1); t ...Show All

  • Visual Studio Express Editions window restart code

    hi there, can anyone give me the code in vb.net by which i can restart my window, i need it in my application so plz if someone have this code just forward it to me. Thanks do you need to restart your window or your application If you want to restart your app then below is the link of the code: http://www.codeguru.com/csharp/.net/net_general/debugginganderrorhandling/article.php/c7105/#more Thank you, Bhanu. ...Show All

  • Visual Studio Express Editions Problems encountered when changing to 2005

    Hello, I just installed VC++ Express 2005 and opened my project in it. It seems several changes were made in the compiler that now causes my code to be erroneous. I'd like an explanation why these things have changed and the best way to correct them if possible (when its not obvious). 1. I noticed the Win32 Application project wizard was gone. Why 2. for-loops no longer accept previous loop-variables from same-level for-loops to be used. Why 2003 allowed both that and redefinitions. That was great. 3. std::vector functions can no longer use the vector.erase(&vector[ i ]); syntax. Why Thats the easiest way to use these functions. We ...Show All

  • SQL Server How connect SQL server 2000 with c#.net .....?

    Hello masters, help me yaar i am using dotnet 2003 and SqL SERVER 2000. BUT UNABLE TO CONNECT DATABASE using dataAdaptor(design time ) or sqlconnection any can help me gs i am working on windows 2000 prof O/S i have just downloaded the sqlserver 2000 form the net for installing this i have used the command in dos prompt... C:\Program Files\Microsoft Visual Studio .NET 2003\Setup\MSDE\setup sapwd=logic securitymode=sql after this sql server is installed in my computer and then i have downloded the Database manager(trial verson) to create the database and the tabels. using this database and the tabels are created but ...Show All

  • Visual Studio 2008 (Pre-release) Package Load Failure

    Howdy.. Just got this nasty error and wondered if anyone could help me to resolve it fast I have been running Expression Interactive Designer on a test box along with the Cider extensions for VS.. all running sweet... I installed SQL2005 on the same box for some further testing and now when I go to open a XAML page in designer mode in VS, i get a Package Load Failure with the specific package being.. PresentationDesignVisualStudio Anyone Another strange side effect of this is that now when I went to repair the Cider extensions, it pops up with a dialog that says WinFX is not installed... I can assure that it is, and all to the very latest ...Show All

  • Visual FoxPro VFP9 Multiple Detail Bands and Page Overflow

    I have a complex report that has one parent table and 5 child tables. All children have multiple records for each parent. In testing I found two problems for which I have found no reported bugs/work arounds: 1) If a detail band (say band 4) is at the end of the page, and there is not enough room for band 5, it will push band 5 to the next page, but only one record will print. Just one record. Records 2- never print. I can adjust the page footer height and start detail set on new page when to 3", same result. If there is enough room on the page for at least one record for band 5, it will print that one record at the b ...Show All

©2008 Software Development Network