Hello,
I need to sum the values of several columns but want to avoid the $1+$2+$3...+$100 syntax.
I tried the command below, but apparently I'm doing something wrong.
$ cat infile
1 2 3
4 5 6
wanted result
6
15
$ awk -F "\t" '{x=0; for (i=1; i<=NF; i++); x = x + $i...
Hello all,
sorry for the late reply.
I stored the variable into a table finally, and it worked.
I used it to store the path and filename chosen by the user with the .FileDialog(msoFileDialogFilePicker) method.
Many thanks,
...apparently. I reinstalled it.
But now, I can't get passed that new problem:
C:\testror\depot>rake db:migrate --trace
(in C:/testror/depot)
** Invoke db:migrate (first_time)
** Invoke environment (first_time)
** Execute environment
** Execute db:migrate
rake aborted!
182: Le systÞme...
Hello.
When I use rake bd:migrate, it sends this:
C:\testror\depot>rake db:migrate --trace
c:/ruby/bin/rake.bat:24: undefined method `require_gem' for main:Object (NoMetho
dError)
Any clue?
Okay. However, when I actually call that procedure on the second form, it sends me an error message:
Compilation error: undefined sub or function.
My code is as follows
On form 1:
Call abc
On form 2:
Public Sub abc()
(...code...)
End Sub
Please, ignore my last piece of code, here is the right one (that doesn't work):
From subform1
Private Sub field1_AfterUpdate()
Forms![subform2].Enabled = False
End Sub
Where subform2 stands for the name of the form (source object in properties)
However, the following code works:
From form1...
I have a menu form (form1) and 2 subforms (subform1 & 2).
When I update data in subform1, I want to disable subform2.
I tried from subform1
Private Sub field1_AfterUpdate()
Forms![subform2].Disable
End Sub
but VBA keeps telling me that he is unable to find that name.
Any ideas?
Okay, I solved the problem.
The Specification Name ("format_w_tab_header") must contain the same field names or types that the object (table or query) contains, otherwise it fails.
Thanks to you all.
Yes, I have that right.
I also tried on another drive, and it does the same.
When I put the .txt extension, here is what it says:
Execution error '3011':
Microsoft Jet database engine could not find the object 'aaa#txt'. Make sure that this object exists and that you correctly spelled its...
Every time I try the following command:
DoCmd.TransferText acExportDelim, "format_w_tab_header", "query123", "C:\aaa",-1
VBA tells me "Execution error 3027: update impossible, database or object is read-only."
Still, the "query123" object is not a read-only one.
Any clues?
Thanks!
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.