2003 MS Access Visual Basic Workflow [closed] - vba

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
Does anyone know how to program a database to function as a workflow? I would like it to identify the user as they open the database and then open up their 'queue' of work. Any ideas?

Read Remou's answer to this Stack Overflow question: How do I make an Access Form automatically open to a user's data?
It may help to describe your concept of a user's queue of work.

Related

On Guidewire Billing Center is there a set of APIs to add/remove/delete users from the application? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
On Guidewire Billing Center is there a set of APIs to add/remove/delete users from the application without having to go the database to modify the table to it?
OOTB there's nothing like this, you could argue that you can import this data with ImportToolsAPI but that doesn't provide remove and delete operations.
Such a service would be very simple, so if you'd like this I think you could implement one.

File Transfer over ip in vb [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
in Visual basic there is a function called file copy
filecopy(source,destination)
is it possible to copy from my computer to another over ip?
ex:
filecopy("C:\User\name\Desktop\test.txt",//192.168.x.x)
if yes what is the correct syntax?
You need to specify the UNC path correctly, for example:
filecopy("C:\User\name\Desktop\test.txt","\\192.168.x.x\c$\User\name\Desktop")
Also it's better to use File.IO.Copy instead of the old VB6 syntax.

Is there a way to save a process and retrieve it after a reboot? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I know that the best way of accomplishing similar tasks is to save intermediate results into a file and restore the state from that file. But out of curiosity, I just wonder whether there is a way to save a process and retrieve it after a reboot. That's all.
Problem solved. I create a dump file of my process and get the address of my variables. Then I extract all the data I need from the file.

Automate the webcam to take a picture [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
What would a code snippet be for Visual Basic 2010 to automate the webcam to click a picture based on if any key is pressed on the keyboard?
There's an article on CodeProject that you might find useful.

Sending emails from sql sever [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
What is the best way to send email from sql server 2008 (script).
Any sample or online links please.
Using the Database Mail feature and the built-in procedure sp_send_dbmail.