Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: DeltaTech
  • Content: Threads
  • Order by date
  1. DeltaTech

    Creating an Access table programatically

    Hi While I know how to create the database and tables through VB.Net, I have not been able to find examples that show how to set the field properties. For instance, if we want to allow for zero length in a particular field. Any help would be appreciated. Happy New Year to all!
  2. DeltaTech

    SQLServer transactions?

    Hi Can anyone help with SQL server transactions please? I have a number of updates to perform and want to commit the transactions only if all are successful. With ADO, all that was needed were ADO BeginTrans, CommitTrans and RollbackTrans Methods. Have searched the web, but nothing really...
  3. DeltaTech

    Button click event fires twice

    Hi When I step through my code, I find that it steps through the Button click event twice. It's a login form and once the user enters the user name and password, clicking on the submit button causes the code to execute twice. Can't seem to figure out why. Anyone can help. Thanks in advance.
  4. DeltaTech

    Database connections

    A newbie's dilemma If opening a connection is resource intensive, and with ASP.Net we have to explicitly close a connection, when is it best to open and close? Of course, if you have just one procedure that retrieves data for display, then this is a non-issue, as you would open, retrieve and...
  5. DeltaTech

    Printing a picture using the Printer object

    For those of you who use the printer object like I do, and need to print a logo or picture on the report, Microsoft's KB 175084 may be of help. http://support.microsoft.com/kb/175084/en-us [bigcheeks]
  6. DeltaTech

    Where have all the good people gone?

    I've been changing channels But I don't see them on the TV show Where have all the good people gone? Friends If any of you are familiar with VB/XML please, please give me a hand with the problem that I am facing. See -2147221231 Automation error (XML + VB) Thanks. [bigcheeks]
  7. DeltaTech

    -2147221231 Automation error (XML + VB)

    Hi Everyone Posted this on the XML board but had no luck. I am re-posting this on the VB board together with Tsuji's suggestions, hoping someone has encountered a similar problem and has found a solution for it. Anyone please? Thanks in advance. [bigcheeks]...
  8. DeltaTech

    -2147221231 Automation error

    Hi I am using XML with my VB app, and everything works fine on the development PC which runs on XP Pro. When I install it on a test PC running WinME though it gives me the above error. The error occurs on this line of code: Dim objXMLHTTP As xmlHTTP Dim xmlHTTP As MSXML2.ServerXMLHTTP30 Dim...
  9. DeltaTech

    Replace and Mid functions conflict

    Hi Was wondering if there is some sort of conflict between the Replace and Mid functions. Used by itself, the Mid function works fine, but when used after a Replace function call, I get the following error: Microsoft VBScript runtime error '800a0005' Invalid procedure call or argument: 'Mid'...
  10. DeltaTech

    Available ports

    Hi Is there a way to check what ports are available on a system and if a particular port is selected by the user, check to see if there is a device connected to it/if the port is valid/working? I am working on a POS system that has a customer display pole and cash drawer attached. The user...
  11. DeltaTech

    Opening a cash drawer

    Hi Has anyone developed a POS solution that requires trigerring the opening of a cash drawer programatically? If so, would very much appreciate if you could tell me how I can communicate with a serial port cash drawer. Thanks! [bigcheeks]
  12. DeltaTech

    MSDE anyone?

    Hi Anyone has experience with using MSDE? Am thinking of converting from Access to MSDE (it's free!). Any pointers would be very much appreciated. [bigcheeks]
  13. DeltaTech

    Accessing mail on server

    Does anyone know of a way to access mail directly from the server without going through OE or other email apps? Would appreciate your help Thanks [bigcheeks]
  14. DeltaTech

    Tablets anyone?

    Hello everyone Anyone worked with tablets (http://www.geniusnet.com.tw/product/productlist.asp?pline=F4) before and been able to interface with it from a VB app? Would appreciate feedback. Thanks [bigcheeks]
  15. DeltaTech

    Setting new database password with ADO

    Hello everyone I am using ADO and Access database. For security reasons, I would like to reset the database password through code periodically. IN DAO it was as simple as db.Newpassword(oldPassword, newPassword), but for the life of me, I cannot seem to find a similar method in ADO. Anyone out...
  16. DeltaTech

    Updating dbase from VB, anyone?

    Hi I am accessing a dbase file through VB to read and update data. While I can read, trying to perform an update causes the following error: "-2147217911 (80040e09) Cannot update. Database or object is read only" Here is my code: adoConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="...
  17. DeltaTech

    Updating dbase from VB, anyone?

    Hi I am accessing a dbase file through VB to read and update data. While I can read, trying to perform an update causes the following error: "-2147217911 (80040e09) Cannot update. Database or object is read only" Here is my code: adoConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="...
  18. DeltaTech

    Connecting to Interbase Database

    Hi Anyone know how to connect ot an Interbase Database through VB? Any help with connecting to and manipulating data/structure would be very, very much appreciated. Thanks! [bigcheeks]
  19. DeltaTech

    Saving the contents of a webpage to a variable

    Hi All Just wondering if instead of displaying a webpage, it's possible to store the contents of the page in a variable? I need to access a webpage outside my server which performs certain functions and depending on whether the operation was successful, returns a formatted web page. I want to...
  20. DeltaTech

    Setting window properties on load

    Hi Does anyone know how to set a window's properties (size/scrollbar/title/locationbar/etc) on load? I know we can set resizeTo but how do I set the other properties as well. Also, I know we can set the properties if we are poppin up another window through Javascript. What I want to do is set...

Part and Inventory Search

Back
Top