Search results for query: *

  1. AccessShell

    Question Building a Solution

    When I create a program one Windows Operating system, how do I create it so it works in a different Windows operating system? For example create in WIN VMXP, but run in WIN 7 Thanks
  2. AccessShell

    Answered Web Access in code

    In VB6. Notice the last statement Set HttpRequest = New WinHttp.WinHttpRequest With HttpRequest .Open "GET", "http://....................... ", True .Send If .WaitForResponse(3) Then Do Something . . . . . . . . holdResponse =...
  3. AccessShell

    Question Debugging

    When I used to write in VB6 I was able to debug with breakpoints. I would stop at a breakpoint, set the next statement to somewhere before the current line, make some code changes and continue from that new point. I can't seem to do this in VB.net. Am I missing something, or is that the way...
  4. AccessShell

    Form Position on screen

    When I wrote a program in WIN XP (maybe that's not important" the form was placed on the screen. When I wrote another program on WIN VMXP the form was placed in a DOS window. Does anyone know why? How can I fix this? Thanks
  5. AccessShell

    Trying to update a record

    I have been able to read records from the DB. I have able to delete records from the DB. Bit I cannot update a record to the DB. My routine is as follows. The connection to DB has already been made. Forget the commented out code for now (BeginTrans, Commit, and Rollback). I'll worry about...
  6. AccessShell

    multiple forms problem

    From form1 I open another form (form2). I want to make form1 invisible. I can do that But when I close form2, how do I get form1 visible again. I am not sure where to put the form1.visible = true code. Thanks
  7. AccessShell

    get the results of the query

    I finally figured out how to open a connection to the DB dbProvider = "Provider=Microsoft.Jet.OLEDB.4.0;" dbSource = "Data Source = " & "MyTable.mdb" con.ConnectionString = dbProvider & dbSource con.Open() Now I leave the connection string open and go elsewhere in the code to read data...
  8. AccessShell

    Form open

    I can' seem to open a form In Public Class frmX Inherits System.Windows.Forms.Form Dim oForm as frmX In Private Sub frmX_Load(... Normal stuff ...) oForm = New frmX oForm.Show() NOTE: On the green line above I can't get the () to stay at the end. When run I get am error msg...
  9. AccessShell

    Newbee on .Net after all there years

    I'm trying to convert a VB6 program to .NET. I have 3 major problems right now. 1. I keep adding a reference to MS Word, But it doesn't seem to take hold. I cannot see it in the reference list when I go back to look for it. And the details do not show in the code. Such as synFound =...
Back
Top