Windows NT Server 4.00.1381 or Windows 2000 Server SP3
MS SQL Server Standard 2000 (SP3)
What could be the reason for the following behavior:
We use 4 SQL servers in 4 different locations. Each of them could be administered by using the Enterprise Manager. I'm able to create tables or...
Hello,
I replicate per merge replication a database on 2 MS-SQL Server 2000. Without changing anything on both servers the replication fails since 2 days. The error message is:
Error:
Der Prozess konnte das Vorhandensein der Generierung auf 'Subscriber' nicht überprüfen.
Translation: The...
Hello,
i need for an export to querry names without german umlauts. I may not use VBA in this case. Therefore I wrote a user-defined function. I would optimize these gladly - if that is possible:
<pre>
CREATE function fn_Umlaute (@strFeld nvarchar(120))
returns nvarchar(120)
as
begin...
Hello,
the only possible solution is a timer event whitch check a entry in a special table on your backend.
A other solution is, to check who is logged in to your backend and send a Msg per "net send".
thats it
Regards
Hello,
if you want to have a simple solution, just copy the part with the different connectionstring to a onclick of a button:
str_Connection = "PROVIDER=SQLOLEDB.1;" & _
"PERSIST SECURITY INFO=FALSE;" & _
"INITIAL CATALOG=NameOfYourfirstDB;" & _
"DATA SOURCE=NameOfYourServer"...
Hello,
use a commandbutton (transparency = true) after your last field in the main form. Your code should be placed in the GotFocus event of that new commandbutton.
So you can be sure thant the coude runs if you made no changes in the last field.
Regards
Daniel S.
Hello,
"My car is broken! Whats the reason?"
SCNR ;-)
What is in the sub? Are there VBA modules you run on form_current or other events? ...
Are there ActiveX Controls you are using in this subform?
Do you use a newer version of Access? ...
Regards
Daniel Scholdei
Hello,
each control have a controltiptext ... look for this option in properties of the control where your tip-text should be shown ...
The value of any tip-text also could be changed by using vba.
Regards
Daniel Scholdei
Hello,
use a hidden table with 3 or 4 fields:
date_of_the_last_possible_call - datetime
number_of_starts - int
starts_counter - int
start_permitted - boolean
Check the start_permitted field on start.
Docmd.close if start is not permitted.
Complain on every start if the date run off -> set...
Hello,
you can alter your Connectionstring with vba.
Public Function fct_Anmelden(User As String, PW As String, Optional str_Server As String, Optional str_db As String)
Dim str_Connection As String
Dim str_internServer As String
Dim str_internDB As String
On Error GoTo...
Hello,
try this:
Sub emtyrowsdelete()
'--dimmensionieren---
Dim spalte, zelle As String
Dim zeile As Integer
Dim isnullcounter As Integer
'--initialisieren---
spalte = "A"
zeile = 1
isnullcounter = 0
'--und los gehts --
While isnullcounter <...
Hello,
set the recordsource of your second combobox to
select .... from .... where ... = form_yourform.combo1.value
set the Enter event of your second Combo to
Private Sub combo2_Enter()
Me.ActiveControl.Requery
End Sub
that should work ..
Regards
Daniel
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.