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

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

flw

Member List

Brian Travis
AhXue
E.Jordan
James Lin
Ramanathan
ofa
Kendrew
Mifuyne
Neology
minimalistic
Akash69
Ja1970
Gamemaster 3000
David Amador T.
KARINA GAMEZ
Dogu
Hit
Buck Ryan
Nils Loeber
Discodave
Only Title

flw's Q&A profile

  • SQL Server Allow access through network

    Hi, How can i make Query analyzer access SQL Server in a network, I've already allowed netowrk connections in enterprise manager(but locally) and none of the users could access what can it be Thanks Hi, didi you enable a listerner for TCP/IP Enable this protocol and you will get access to the services of SQL Server. -Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Basic Date Difference

    I have two month calendars. Monthcalendar1 and monthcalendar2 I have set monthcalender 1 to be the computers clock date monthcalendar2 date can be chosen bu the user How do i get the difference in the number of days btw those to calenders MonthCalendar1.SetDate(#11/11/2005#) works....its looking for a *Date* data type. To cast a string use the # symbols or you can cast your own date variable and then pass.... selectionstart may work but it is used for selecting multiple dates... sorry about the value thing that was off the top of the head... ...Show All

  • Visual Studio vs 2005 beta 2 setup fails

    When I try to setup vs 2005 beta 2, it says that it failed to setup visual studio itself after it gets to the end screen. The installation seems normal untill then because the vs 2005 even gets a checkmark next to it when on the install screen. The progress bar never moves when it is on vs 2005 though. I will post the error log when I can find it. Hello, I am getting the same kind of error  when installing Visual Studio 2005 Beta2. The comments before the "return value 3" are: MSI (s) (20:D8) [11:12:03:571]: Assembly Error:Function not defined in specified DLL. MSI (s) (20:D8) [11:12:03:571]: Note: 1: ...Show All

  • Windows Forms Data set bound to a control getChanges does not show the deltas

    When I bind the dataset to a text box using data binding, the dataset is getting updated when user makes a change on the screen, but the GetChanges() method still returns null. Am I missing something Thanks Harinder { ... StringReader sr1 = new StringReader(obj); ds.ReadXml(sr1); ds.AcceptChanges(); DataTable  table = ds.Tables["customer"]; Binding b = new Binding("Text", table, " ...Show All

  • Visual Studio Tools for Office More problems with the permissions (Word, VSTO 2005)

    The last time I had such amount of time lost was using BizTalk 2004, I guess here it is going again with the Word / VSTO and permissions. Ok, here is what I am doing, and the results: 1- I’ve created a word document VSTO 2005, C#. 2- I’ve added a bookmark in the word document. 3- The word document was connected to a web service. 4- The word document loads data from the web service, and places the data in to a bookmark. All of that is working just fine when I run the solution from VS.NET 2005; but when I copied the file to another folder, in my machine, with the DLL file, it st ...Show All

  • Microsoft ISV Community Center Forums Access 2003 VB code does not execute in form

    In my very simple Access 2003 db, none of the VB code will execute, whether automatically generated or written by me. No errors are displayed, it is just that nothing happens. The problem kind of comes and goes - if I wipe out all code and rebuild the form, it will work for a little while. Has anyone seen this Thanks, Mike These forums are for VB.NET questions. It sounds as though you are trying to use the VB within Access 2003 which is actually something called Visual Basic for Applications. VBA is a very different product from VB.NET and based upon older technology and there are s ...Show All

  • Windows Forms Using multiple windows forms !

    Hi, I have a form("form1") on which I have 2 buttons. Each opens a new form("form2" and "form3". How do I make sure that the user only can open one instance of each of the two, forms2 and 3   dim frm2 as new form2 dim frm3 as new form3 button1_click frm2.show button2_click frm3.show will produce as many instances as the times I care to& ...Show All

  • Windows Forms Visual inheritance problems

    Hi. I am experiencing a strange problem with visual inheritance in VB.NET. My project has one form, that serves as the base of several other forms. All was working well but suddenly, every time I add a new form to the project, VS.NET 2003 randomly removes some controls of the other forms. If I don't use visual inheritance, I can add new forms  ...Show All

  • Visual Studio Express Editions Problem with Graphics

    I don't understand why this doesn't work: Dim g As System.Drawing.Graphics g.DrawLine(Pens.Blue, 1, 1, 100, 100)   I don't see where you have set g to an instance of Graphics. Usually you use a Graphics inside a Paint event handler (where the graphics object is in PaintEventArgs parameter) or you can create a Graphics object using the CreateGraphics method of a Control/Form. ...Show All

  • Visual Studio Express Editions splash screen

    hi there i have a fairly small project im trying to make a splash screen that comes up for a short time and then disapears revealing the main form i have my splash screen working with a small piece of code in the aplication events and i just used the add new form splash screen for the rest my problem comes as the splash screen does not always display in front of form one and when it does you can just select the main form from behind and carry on as if it wasent there i was hoping to hide the main form or at least make it unselectable untill the splash screen disapears thank you for any assistance tim. Si ...Show All

  • Windows Forms Getting started with ADO/winforms. Cannot find good example

    I have read plenty of articles explaining the various properties of a form but I need a sample application or tutorial that could for examples creates a application that manipulates a DB and maybe has a few different forms that interact with each other. I have created a ASP.NET site and I am looking to create a VB.NET app version. Does anyone have  ...Show All

  • Visual FoxPro Unable to read .dbf file

    Folks, I'm trying to load FoxPro data into Oracle table's using Datastage ETL Tool.i got the zip file which contains the complete Foxpro Tables.I able to read one .dbf file out of 100 files.when i try to read other .dbf files through ODBC stage,its throwing this error: SQLSTATE=01000, DBMS.CODE=1295 [DataStage][SQL Client][ODBC][DataDirect][ODBC dBase driver]Table is read-only, it is part of a database: edutrans.dbc I try to change the file permissons from read only to full permissions,but its not allowing. But atleast its not allowing me to read the file. Any ideas.. Thanks, Hary Are you connecting the ODBC to the edutrans.dbc ...Show All

  • SQL Server Automatic Procedure Execution

    Is there a way to automatically execute a procedure For example to make one automatically execute every night at midnight or every hour. Look up SQL Server Agent in books online. This is what it is for. It is pretty simple to use via the GUI, really messy to demonstrate using the procedures :) ...Show All

  • Windows Forms Ms Access Database Connection String

    Hi, I am developing an application with Ms Access .mdb database. Well i can connect to the database using the physical path. Now the problem is i am configuring the application for client server. So for every client i have to specify the physical path. Is there no way of providing the paths like we have in sql server where in we specify the&n ...Show All

  • Visual Studio Team System Portal Documents CheckIn Checkout Via TFS Client

    Hi, I have a question regarding Documents checkin and checkout via TFS Client. As you know, methodology docs are created on the Team Portal. Document checkin checkout mechanism works perfectly fine if you perform it through the portal. But the problem is, we can not perform the same exercise in TFS Client. It is not possible to checkin and checkout a document and put your comment related to it if you perform it in TFS Client. You can save a document in TFS Client but it only creates a new version of the document without any comment on the portal. We need to perform checkin – checkout mechanism of a document in TFS C ...Show All

©2008 Software Development Network