Search results

  1. R

    Update access textbox from VB.net

    This doesn't help? MyTextBox.text = "The new text"
  2. R

    can't update access tables

    Without the code is not easy... you should (at least) post the code of your connection to the DB, and the way you manipulate data (editing, adding and updating). Bye
  3. R

    Date problems

    I don't have a SQL server right now... but for me your VB code is ok... What I don't understand is this line: @dateassayrequested varchar(20) Why do you VARCHAR instead of DATE? Look here: http://msdn.microsoft.com/en-us/library/bb630352.aspx Maybe is not important but anyway, I can...
  4. R

    Deployment error

    What do you mean by DEPLOYING? Can you INSTALL your program successful? This error happens when you launch setup.exe, msi file or both? Or it happens when you start the application (this means you can successful install your app). Who is giving this error? What is the window title? Maybe a...
  5. R

    How to Delete Files + Log what is happening with VB Script

    It shouldn't be too hard: Option Explicit Dim fso Dim Logger Set fso = CreateObject("Scripting.FileSystemObject") Set Logger = Scripting.FileSystemObject.OpenTextFile("C:\path\to\your\file.txt", ForWriting, True) DeleteFiles fso.GetFolder("E:\Backups\ProgressBackups") '<-----UNC Path to folder...
  6. R

    Communication with PABX telephone system

    Here's the point. If I don't remember wrong... you have to use crs232 communication. Maybe this can help you: http://www.microsoft.com/downloads/details.aspx?FamilyID=075318ca-e4f1-4846-912c-b4ed37a1578b&DisplayLang=en Anyway, I think it's really hard to work with PABX unless you have a list...
  7. R

    connection from VS 2008 to access 2007

    Hi guys, I'm experience a strange problem. I wrote an application with my computer running Visual Basic Express 2008. I created a module where I put my function, for example to OPEN my db I use this: Public conn As ADODB.Connection Public Function ApriConn() conn = New...
  8. R

    access 2007 double record save

    Thank you ;)
  9. R

    access 2007 double record save

    Damn... I'm sooo stupid I created a form with the wizard -.- so it was associated with that table. I created another form but with the Design and it works perfectly Anyway, thanks :)
  10. R

    access 2007 double record save

    Hi all I've a mask with some fields that rappresents a table. I put a button with this VBA code: Private Sub Command21_Click() Dim rstPersone As DAO.Recordset Dim dbinterventi As Object Set dbinterventi = CurrentDb Set rstPersone = dbinterventi.OpenRecordset("tab_Persone") rstPersone.AddNew...
Back
Top Bottom