'^=' and '~='?Hello,
What is the difference between '^=' and '~='?
Thanks,
Duckhye
...
'is not' or '!='A newbie question to you; what is the difference between statements
like:
if x is not None:
and
if x != None:
Without any context, which one should be preferred?
IMHO, the latter is more readable.
On 2014-08-18 21:35, ElChino wrote:
> A newbie question to you; what is the difference between statements
> like:
> if x is not None:
> and
> if x != None:
>
> Without any context, which one should be preferred?
> IMHO, the latter is more readable.
>
"x == y" tells you whether x and y refer to objects that are equal.
"x is y" tells you whether x and y actually refer to the same object.
In the case of singletons like None (there's only one None object),
it's better to use "is".
"ElChino" <elchino@cnn.cn>:
> A newbie question to you; what is the difference between statements
> like:
> if x is not None:
> and
> if x != None:
Do the following: take two $10 bills. Hold one bill in the left hand,
hold the other bill in the right hand.
Now, the bill in the left hand "is not" the bill in the right hand.
However, the bill in the left hand "==" the bill in the right hand.
> Without any context, which one should be preferred?
> IMHO, the latter is more readable.
In almost all cases, both tests would result in the same behavior.
However, the "is not" test is conceptually the correct one since you
want...
Method 'Form' of object '_SubForm' failedThis has really been my day for wierd problems sorting one of my forms (a
subform actually)... so here's another one.
I am now receiving the following error
Run-time error '-2146500594 (800f000e)':
Method 'Form' of object '_SubForm' failed
The code breaks on the first line of the following section of code:
With Forms!frmInventory![Auto Parts].Form
.OrderBy = "fldPartInvNo"
.OrderByOn = True
End With
Now...the wierd part is that this code was working perfectly for the last
several days until tonight. This code runs EVERY time the main form loads
and I have never received any error message until now.
I read a few posts in other forums and got the impression that reinstalling
Access might be the best thing to do - so I did that. No good. Then I ran
the application on another computer and got the same error there.
Now I'm stumped. Has anyone else experienced this and found a solution?
Thanks!
Todd
Hi Todd
The message suggests that your database is partially corrupt.
Decompiling might fix it, or follow these steps to rebuild it:
1. Create a new (blank) database.
2. Uncheck the boxes under:
Tools | Options | General | Name AutoCorrect
(This 'feature' is a cause of many problems.)
3. Import everything from the broken database:
File | Get External | Import
--
Allen Browne - Microsoft MVP. Perth, Western Austral...
'''''''''''''The Running Update/Append Queries Using VBA code Ordeal'''''''''''''' #2Hi,
Thanks for ur help there HJ.
I know how to do the tasks you specified there.
I would like for the update query to use field values from some of the
fields on the form (frmInvoices) such as InvoiceNumber, DateFrom,
DateTo. My problem is that an append/update query can't find the
values in the open Form (frmInvoices) when I specify them as;
[Forms]![frmInvoices]![InvoiceNumber]
a select query has no problem finding the field values on a form.
please help.
Aaron
Hi Aaron,
Could you post the entire code that you are having trouble with? Now it is
not possible to see what goes wrong.
HJ
"Aaron" <aaron@rapid-motion.co.uk> wrote in message
news:260d7f40.0408120245.2f3d01f8@posting.google.com...
> Hi,
>
> Thanks for ur help there HJ.
>
> I know how to do the tasks you specified there.
>
> I would like for the update query to use field values from some of the
> fields on the form (frmInvoices) such as InvoiceNumber, DateFrom,
> DateTo. My problem is that an append/update query can't find the
> values in the open Form (frmInvoices) when I specify them as;
>
> [Forms]![frmInvoices]![InvoiceNumber]
>
> a select query has no problem finding the field values on a form.
>
> please help.
>
> Aaron
First off, if you are not always using all the parameters specified in
your form, then you have to add parameters to your query on the fly.
Also, you can't just do something like
qdf.SQL = "SE...
if str_mo not in ('','.') and str_da not in ('','.') and str_yy not in ('','.') Any shorter ?Hi, there.
=20
I'm just curious if it ever dawned on anybody how to abbreviate this
line :
if str_mo not in ('','.') and str_da not in ('','.') and str_yy not in
('','.')=20
=20
Igor Kurbeko
Clinical Programmer Analyst
678 336 4328
ikurbeko@atherogenics.com
=20
no brain no pain
=20
how about:
if not (str_mo in ('','.') or str_da in ('','.') or str_yy in
('','.'))
OR
if not (missing(str_mo) or missing(str_da) or missing(str_yy))
Eric
On 22 Oct 03 21:13:37 GMT, ikurbeko@ATHER...
A function with 'and' , 'not' , 'null' , 'car' and 'cdr'What's this ?
(defun enigma (x)
(and (not (null x))
(or (null (car x))
(enigma (cdr x)))))
"I suppose I should learn Lisp, but it seems so foreign."
- Paul Graham, Nov 1983
On Wed, Oct 07 2015, CAI GENGYANG wrote:
> What's this ?
>
>
> (defun enigma (x)
> (and (not (null x))
> (or (null (car x))
> (enigma (cdr x)))))
Bad taste? It returns T if the list X contains nil as an element. It
would be clearer to write (some #'null x).
Helmut
CAI GENGYANG ...
error: expected '=', ',', ';', 'asm' or '__attribHi
I'm trying to compile an ADC Driver & come acrosss the following error.
I've no experience writing drivers before, and hence have no clue how
to fix it.
Hope someone out there has encountered the problem & suggesst a fix for
the same.
The Error is I get is :
qadc.c: At top level:
qadc.c:97: error: expected '=', ',', ';', 'asm' or '__attribute__'
before 'qadc_read'
make: *** [qadc.o] Error 1
[root@localhost qadc]#
###########################################################################
ADC Driver Code
##...
error: expected '=', ',', ';', 'asm' or '__attribHi
I'm trying to compile an ADC Driver & come acrosss the following error.
I've no experience writing drivers before, and hence have no clue how
to fix it.
Hope someone out there has encountered the problem & suggesst a fix for
the same.
The Error is I get is :
qadc.c: At top level:
qadc.c:97: error: expected '=', ',', ';', 'asm' or '__attribute__'
before 'qadc_read'
make: *** [qadc.o] Error 1
[root@localhost qadc]#
###########################################################################
ADC Driver Code
###########################################################################
#define MODULE
#define __KERNEL__
#include <linux/config.h>
#include <linux/module.h>
#include <linux/kernel.h> /* printk */
#include <linux/fs.h> /
#include <linux/errno.h> /* error codes */
#include <linux/types.h> /* size_t */
#include <linux/proc_fs.h> /* proc file system */
#include <linux/fcntl.h>
#include <asm/system.h> /* cli, flags */
#include <asm/uaccess.h> /* copy from/to user */
/*Registers to get qadc access*/
volatile unsigned short * qadcmcr = (unsigned short *)0x40190000;
volatile unsigned short * qacr0 = (unsigned short *)0x4019000a;
volatile unsigned short * qacr1 = (unsigned short *)0x4019000c;
volatile unsigned short * qacr2 = (unsigned short *)0x4019000e;
volatile unsigned short * qasr0 = (unsigned short *)0x40190010;
volatile unsigned short * qasr1...
'!' vs. '.'Is there an advantage to using the '!' notation to represent form/
control relationships? (eg. Me!text1 vs Me.text1)
I am currently using the '.' notation exclusively (for code completion
in the VB Editor), but much of the high-quality code that I've seen
(in Duane Hookom's Query-by-Form db, for example) uses the other.
Here's one opinion for you: http://doc.advisor.com/doc/05352
robert.waters wrote:
>Is there an advantage to using the '!' notation to represent form/
>control relationships? (eg. Me!text1 vs Me.text1)
>
>I am currently using the '.' notation exclusively (for code completion
>in the VB Editor), but much of the high-quality code that I've seen
>(in Duane Hookom's Query-by-Form db, for example) uses the other.
--
HTH - RuralGuy (RG for short) acXP WinXP Pro
Please post back to this forum so all may benefit.
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/Forums.aspx/databases-ms-access/200704/1
Here's my $0.02 worth on this.
I tend to copy the notation style and naming conventions that I see being
used in the Help files.
That would be Me![text1] for a control on a form. I am of the belief that
this notation explicitly refers to a control itself rather than a field in
the form's recordset.
Here's an example:
I have a parts inventory app that uses a "Line" code, which is usually a
3-character abbreviation for a brand name, and is the na...
difference between ',' and 'a,'Small question. In gforth is there a difference between the words ',' and 'a,'?
I'm thinking not, so perhaps another question, why have both ',' and 'a,'?
Thanks
Should be the same, in gforth:
see ,
: ,
here cell allot ! ; ok
see a,
: ,
here cell allot ! ; ok
On Friday, January 9, 2015 at 5:46:04 AM UTC-8, beeflo wrote:
> Small question. In gforth is there a difference between the words ',' and 'a,'?
>
> I'm thinking not, so perhaps another question, why have both ',' and 'a,'?
>
> Thanks
beeflo <beeflobill@gmail.com> writes:
>Small question. In gforth is there a difference between the words ',' and 'a,'?
>
>I'm thinking not, so perhaps another question, why have both ',' and 'a,'?
In Gforth itself, there is no difference. In Gforth's cross compiler,
"a," is there for addresses, and "," is there for other cells;
addresses can then be relocated when loading the image.
- anton
--
M. Anton Ertl http://www.complang.tuwien.ac.at/anton/home.html
comp.lang.forth FAQs: http://www.complang.tuwien.ac.at/forth/faq/toc.html
New standard: http://www.forth200x.org/forth200x.html
EuroForth 2014: http://www.euroforth.org/ef14/
...
'a'..'z'Is it possible to achieve something like this?
switch (mystring.charAt(0)) {
case 'a'..'z':
// do something
break;
}
"cruster" <cruster@gmail.com> wrote in message
news:1151319731.988814.326200@m73g2000cwd.googlegroups.com...
> Is it possible to achieve something like this?
>
> switch (mystring.charAt(0)) {
> case 'a'..'z':
> // do something
> break;
> }
>
There are times when an if statement may be more appropriate ;)
Sorry - java is not VB :)
--
LTP
:)
cruster schreef:
> Is it possible to achieve somethi...
Does '!=' equivelent to 'is not'I'm a bit confusing about whether "is not" equivelent to "!="
if a != b:
...
if a is not b:
...
What's the difference between "is not" and "!=" or they are the same thing?
pirata wrote:
> I'm a bit confusing about whether "is not" equivelent to "!="
>
> if a != b:
> ...
>
> if a is not b:
> ...
>
>
> What's the difference between "is not" and "!=" or they are the same thing?
No, they are not the same thing. == and != test to see if the *value* of
two variables are the same. Like so:
>>> a = 'hello world'
>>> b = 'hello world'
>>> a == b
True
a and b both have the value of 'hello world', so they are equal
is and is not, however, do not test for value equivalence, they test for
object identity. In other words, they test to see if the object the two
variables reference are the same object in memory, like so:
>>> a is b
False
a and b are assigned to two different objects that happen to have the
same value, but nevertheless there are two separate 'hello world'
objects in memory, and therefore you cannot say that a *is* b
Now look at this:
>>> c = d = 'hello world'
>>> c == d
True
>>> c is d
True
In this case, they are again the same value, but now the is test also
shows that they are the same *object* as well, because...
logical to 'on' / 'off'Hi,
is there a function implemented doing this conversion?
my Problem is, that I want to use the following code:
set(handles.edit_curr_trq_sl,'Enable',get(hObject,'Value'))
where get(hObject,'Value') gives the state of a checkbox
thank you!
function [str]=tf2oo(logic)
switch logic
case 0
str='off';
case 1
str='on';
end%switch
end%function tf2oo()
while i do not know a built in function, I use my own:)
meisterbartsch wrote:
>
>
> function [str]=tf2oo(logic)
> switch logic
> case 0
> str='off';
&g...
Re: '^=' and '~='?Duckhye,
According to the doc ( http://xrl.us/befwjx ) they, and one other set of
characters, and the mnemonic 'NE' all represent 'NOT EQUAL'.
Art
-------
On Wed, 11 Feb 2009 16:52:40 -0600, Duck-Hye Yang <dyang@CHAPINHALL.ORG>
wrote:
>Hello,
>What is the difference between '^=' and '~='?
>
>Thanks,
>Duckhye
...
Override 'and' and 'or'Is it possible to override 'and' and/or 'or'? I cannot find a special
method for it... __and__ and __rand__ and __or__ and __ror__ are for
binary manipulation... any proposals?
Have marvelous sunday,
Marco
Dekker <m.aschwanden@gmail.com> wrote:
> Is it possible to override 'and' and/or 'or'? I cannot find a special
> method for it... __and__ and __rand__ and __or__ and __ror__ are for
> binary manipulation... any proposals?
If you want to customize the truth value testing you have to implement
__nonzero__
"
__nonzero__( self)
Call...
'[OFF]' as in 'offensive'???Hi,
given that 'off-topicness' is indicated as '[OT]' and taking a look at
those postings that started the threads indicated as '[OFF]' (which may
both be seen as being somewhat offensive) may lead to the conclusion
that '[OFF]' stands for offensiveness.
I don't think that this is the intended meaning so what actually *does*
'[OFF]' mean? I never came across that abbreviation before (although I
have been around on the USENET for quite some time) but maybe it is
worth knowing?
Josef 'Jupp' Schugt NOTE: mails >100 KiB are ignored
--
German edition of comp.lang.ruby FAQ - http://oss.erdfunkstelle.de/ruby/
Aurox Linux - http://qurl.net/7q | http://qurl.net/7r - Firefox
Thunderbird - http://qurl.net/7s | http://qurl.net/7t - Liferea
Enigmail - http://qurl.net/7u | http://qurl.net/7v - GnuPG
[Josef 'Jupp' Schugt <jupp@gmx.de>, 2004-12-10 23.20 CET]
> I don't think that this is the intended meaning so what actually *does*
> '[OFF]' mean?
Off-topic.
...
replacement for '{' and '}' ?
I am still playing around with what kind of syntax I would like to
mark up my documents.
Are there equivalent long substitutes for { and } when they are not
used to describe arguments to functions? Something like \begin{group}
and \end{group}.
In other words, if I could force myself to write, say, \begin{group}
\it ... \end{group} instead of {\it ... }, then I believe I could
identify from the markup context what is an argument that belongs to a
just invoked macro and what is text. {Of course, in this context,
\textit{...} would be better.} No more ambiguity whether a in
\myfunction{a} is an argument or just text.
Is there a way to make latex barf when it sees an ordinary '{' in
text, rather than \begin{group}, but not barf when I want it (to
denote macro arguments)?
Regards,
/iaw
On Aug 16, 6:01=A0pm, "ivo...@gmail.com" <ivo...@gmail.com> wrote:
> Is there a way to make latex barf when it sees an ordinary '{' in
> text, rather than \begin{group}, but not barf when I want it (to
> denote macro arguments)?
What do you mean exactly? I don't understand. Do you have in mind your-
to-be-new-syntax or just regular latex?
Cheers,
Tomek
ivowel@gmail.com wrote:
> I am still playing around with what kind of syntax I would like to
> mark up my documents.
>
> Are there equivalent long substitutes for { and } when they are not
> used to describe arguments to functions? Something like \begin{group}
> and \end{gr...
Difference between 'is' and '=='Hey guys, this maybe a stupid question, but I can't seem to find the
result anywhere online. When is the right time to use 'is' and when
should we use '=='?
Thanks alot~
mwql:
>Hey guys, this maybe a stupid question, but I can't seem to find the
>result anywhere online. When is the right time to use 'is' and when
>should we use '=='?
http://docs.python.org/ref/comparisons.html
--
Ren� Pijlman
mwql wrote:
> Hey guys, this maybe a stupid question, but I can't seem to find the
> result anywhere online. When is the right time to ...
????? Error: -2147467259 Method 'Visible' of object 'ComandBar' failed!Hi folks,
I have an Access 2003 app that works perfectly on my computer.
However, when we install it on OTHER computers that ALSO have access
2003 we get an error on startup:
Error: -2147467259 Method 'Visible' of object 'ComandBar' failed!
At this point, I am stumped. Anyone have a clue why this is
happening?
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Did you spell CommandBar correctly (there are 2 m's)?
Do you have a Reference to Microsoft Office 11.0 Object library? This
is in the VBA window, menu item Tools > References... . The CommandBar
is an item in the Office Object library. It may not be installed on the
other computers.
--
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)
-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv
iQA/AwUBQ9VF4oechKqOuFEgEQJ1KgCgr+Px0AMJNtwNF/PqtiSaUXFOBe4An2tl
U1RLap51T4GEbkQBtaB5REZx
=QPiZ
-----END PGP SIGNATURE-----
Lauren Wilson wrote:
> Hi folks,
>
> I have an Access 2003 app that works perfectly on my computer.
> However, when we install it on OTHER computers that ALSO have access
> 2003 we get an error on startup:
>
> Error: -2147467259 Method 'Visible' of object 'ComandBar' failed!
>
> At this point, I am stumped. Anyone have a clue why this is
> happening?
On Mon, 23 Jan 2006 21:08:55 GMT, MGFoster <me@privacy.com> wrote:
>-----BEGIN PGP SIGNED MESSAGE-----
>Hash:...
We Are Selling The Nextel I930 For Just $130usd'''''''''''
Dear Customer
We have all brands of Mobile Phones,Ipods,Sidekicks,Nextel
phone,Laptops for sell at cheap an
affordable prices, they ranges from Nokia/Samsung/LG/Son
Ericsson/Motorola/Alcatel/panasonic With Bluetooth, al
Brands and Models of Nextel Phones, we want you to get bac
to us with your quote so that we can begin a good busines
relationship. Note they are all Brand New T2 Euro specs
unlocked, no operator logo, come in thei
original sealed box, With 1 year international warrant
from the manufacturer, English & Spanish manual, Finlan
made
We want to assure you that you will never regret buyin
from us because the delivery will be to your doorstep vi
FedEx Courier service.And the Tracking number shall be sen
to you upon acknowledgement of your payment
Kindly acknowledge the reciept of our mail and get back t
us at mobiledealer_ltd@yahoo.co
--
lolasam
whats your url?
lolasam wrote:
> Dear Customers
>
> We have all brands of Mobile Phones,Ipods,Sidekicks,Nextels
> phone,Laptops for sell at cheap and
> affordable prices, they ranges from Nokia/Samsung/LG/Sony
> Ericsson/Motorola/Alcatel/panasonic With Bluetooth, all
> Brands and Models of Nextel Phones, we want you to get back
> to us with your quote so that we can begin a good business
> relationship. Note they are all Brand New T2 Euro specs,
> unlocked, no operator logo, come in their
> original sealed box, With 1 year international warranty
> from the manufacturer, English &a...
Re: if str_mo not in ('','.') and str_da not in ('','.') and str_yy not in ('','.') Any shorter ? #2Igor,
There are many ways to make it more concise, however the parsimony is likely
to be achieved at the expense of clarity. For instance, the expressions
length ( input (mm||dd||yy, $10.) ) > 2
length ( compress(mm||dd||yy, ' .') ) > 2
and like might be somewhat shorter than the original, but they will execute
slower, and their intent is far less eminent. Since it appears that you are
trying to validate the components of a date, maybe it is not a worthless
idea to try the date informat conforming to the mask you are testing. Say if
all the pieces are 2-digit, the expression
input (mm||dd||yy, ?? mmddyy6.)
will return a missing value for the case you are testing and also if any
irregularities in the input value that prevent it from being interpreted as
a valid date should be found. And if you want a note in the log to alert you
about it, leave one of the question marks off.
Kind regards,
=================
Paul M. Dorfman
Jacksonville, FL
=================
>From: Igor Kurbeko <ikurbeko@ATHEROGENICS.COM>
>Reply-To: Igor Kurbeko <ikurbeko@ATHEROGENICS.COM>
>To: SAS-L@LISTSERV.UGA.EDU
>Subject: if str_mo not in ('','.') and str_da not in ('','.') and str_yy
> not in ('','.') Any shorter ?
>Date: Wed, 22 Oct 2003 17:13:37 -0400
>
>Hi, there.
>
>
>
>I'm just curious if it ever dawned on anybody how to abbreviate this
>line :
>
>if ...
Is there a 'break' or 'continue' in 'Do Unitl'... 'Loop'?If some condition is met, I would like to move to the next record. I
tried 'Exit Do', which exits, this is not what i want; i tried 'break'
or 'continue loop', none of them works. so, now i used a label with
GoTo clause.
I am just wondering what is the correct syntax?
Thanks, ming
swingingming wrote:
> If some condition is met, I would like to move to the next record. I
> tried 'Exit Do', which exits, this is not what i want; i tried 'break'
> or 'continue loop', none of them works. so, now i used a label with
> GoTo clause.
> I am just wondering what is the correct syntax?
> Thanks, ming
>
The exit do is the correct syntax. Or you can have the same or a
different condition itself in the do while statement.
For example, the following is building a string, strRoute (for a list of
hexes along a straight line in a hexagonal overlay of a map):
Do While intCount <= Abs(dy)
lngY = lngY + Sgn(dy)
lngx = lngx + Sgn(dy)
strRoute = strRoute & "," & lngY & "-" & lngx & "," & lngY
& "-" & lngx - Sgn(dy)
intCount = intCount + 1
If intCount > Abs(dy) Then Exit Do
lngY = lngY + Sgn(dy)
strRoute = strRoute & "," & lngY & "-" & lngx
intCount = intCount + 1
Loop
The exit do ...
ERROR: "Method 'Connection' of object '_Current Project' failed.
I have created a front-end application and back-end database. Everytime
that I opened the program in the past, it open just fine with no errors
when linking to the back-end tables.
Lately, I get the following error message whenever I open my
application:
ERROR: "Method 'Connection' of object '_Current Project' failed. Check
to see if you installed the tables used for storing data is in the
default directory. -2147024769
After clicking, "OK", my application continues on to open anyway.
I have checked the application to determine if the intended location fo...
We Are Selling The Samsung D500 For Just $189usd'''''''''
Dear Customer
We have all brands of Mobile Phones,Ipods,Sidekicks,Nextel
phone,Laptops for sell at cheap an
affordable prices, they ranges from Nokia/Samsung/LG/Son
Ericsson/Motorola/Alcatel/panasonic With Bluetooth, al
Brands and Models of Nextel Phones, we want you to get bac
to us with your quote so that we can begin a good busines
relationship. Note they are all Brand New T2 Euro specs
unlocked, no operator logo, come in thei
original sealed box, With 1 year international warrant
from the manufacturer, English & Spanish manual, Finlan
made
We want to assure you that you will never regret buyin
from us because the delivery will be to your doorstep vi
FedEx Courier service.And the Tracking number shall be sen
to you upon acknowledgement of your payment
Kindly acknowledge the reciept of our mail and get back t
us at mobiledealer_ltd@yahoo.co
--
lolasam
...