Topic profile page for Boolean.
This page has aggregated data from forum posts, threads, listings, online discussions, newsgroups, messageboards, and other online sources which contain user generated content for the term: Boolean.
Topic "Boolean" was discussed 17,727 times on 844 sites in last 3 months
Started 20 hours, 36 minutes ago (2009-12-07 11:41:00)
by RandySS
Does Excel's VBA support the use of Boolean logic, such as OR, or AND? For example, If ...Column = 1 OR 3 OR 8 Then... Specifically, as used in If Then Else statement is most applicable. Thanks!
Started 5 days, 10 hours ago (2009-12-02 21:27:00)
by Jabber.W
Hi all I didn't find anywhere what is meaning of boolean return value of beforeMarshal() callback, which may be defined by object ( http://java.sun.com/javase/6/docs/api/javax/xml/bi nd/Marshaller.html , "Marshal Event Callbacks") May be anybody knows? Thanx for any inputs Sincerely J.
Started 1 week, 3 days ago (2009-11-27 09:15:00)
by Chickenhorse
Hi, I got a problem when trying to add slits to my rail gun model. http://grab.by/PDc # When I goto boolean and difference this happens. http://grab.by/PDo http://grab.by/PDq some vertices seem to group. Does anyone know whats going on? I hardly use maya and i just wanted to play around and it wasn't going bad until now haha Regards Chicken
Started 1 week, 4 days ago (2009-11-27 01:18:00)
by Amie
I have a boolean with the name "Kitchen", one whose name is "House." In a class Formula1 I have Kitchen = false; Room = true; by default in the constructor. House and Kitchen inherit Room. Although now I wish to make a method public boolean verifyAuthorization (Room s) and in this method I would like to know the value of boolean whose name is s.getClass()....
Started 1 week, 6 days ago (2009-11-24 17:09:00)
by codingsupv
I am trying to write an If/Then statement in Business Objects report writer and am coming up with a Boolean variable error. This is what I was trying: = If ( ="G9142") Then "90663" The error I am receiving is: Bad Variable type You must create a Boolean variable If I were doing this in Access, it would look like this: Iif([Procedure Code]="G9142","90663") I am a real novice at this, so ...
Started 2 weeks ago (2009-11-24 07:20:00)
by animas
Partial Match Boolean Type I have strings in cell a1. I will put a formula in a3 if string "xyz" is found inside a1, it will show value from a2, else shows nothing. i tried simple formula cell a3 =if(a1="xyz",a2,"") here it is exact match, i need partial match, or multiple partial match in a single cell. How to do it?...
Started 2 weeks, 3 days ago (2009-11-20 17:21:00)
by scantoria
> I have a record and attachment tables. I need to write a query that will let me know if there is a file attached to a record. would be nice if I can get the result in boolean data type. Stephen Cantoria scantoria@msn.com
Started 6 days, 12 hours ago (2009-12-01 20:00:00)
by Cody Campbell
im an after effectee trying to add some 3d to my skill set so I apologize for the nooberton question -- I have a model of a heart that I cut up with a cloner object rectangle. for some reason the material I have given to this cut heart doesnt seem to be taking. i've put the material on the heart object - no go, on the boolean - no go, the cloner object - no go, the rectangle - no go. Ive ...
Started 6 days, 2 hours ago (2009-12-02 05:33:00)
by user12299943
This is what i want to do: I have a report that staff has to fill out. This report includes a Date. I want to create a condition that people have to fill that date only when the Assignment is a CPA Assignment (not null only in that case). Do I need a Boolean? How should i put it down? I am using Apex. Thanks!
Started 6 days, 2 hours ago (2009-12-02 05:31:00)
by user12299943
This is what i want to do: I have a report that staff has to fill out. This report includes a Date. I want to create a condition that people have to fill that date only when the Assignment is a CPA Assignment (not null only in that case). Do I need a Boolean? How should i put it down? I am using Apex. Thanks!
Started 1 week, 1 day ago (2009-11-29 23:28:00)
by dan_pafc
Hi, I want to disable all save option's in a workbook but still allow 2 macros to save the file. Im using this to disable the save option: Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean) If SaveAsUI = False Then Cancel = True MsgBox "You cannot save this workbook. Use Save As" End If End Sub The macros I use to save the book ...
Started 1 week, 1 day ago (2009-11-29 19:54:00)
by samsilverman
I am using Excel 2007 I have this code in my ThisWorkbook Module: Private Sub Workbook_BeforePrint(Cancel As Boolean) Sheets("Sheet1").Range("B2,B5,B8,B13").Font.ColorI ndex = 2 End Sub I have this code in each Worksheet Module I want to use it for: Private Sub Worksheet_SelectionChange(ByVal Target As Range) Me.Range("B2,B5,B8,B13").Font.ColorIndex = xlAutomatic End Sub...
Started 1 week ago (2009-11-30 10:35:00)
by Gary''s Student
I need a simple Boolean function that will return TRUE if the argument is cell that has precedence tracing assigned to it, otherwise FALSE. I need to scan a worksheet and build a list of the cells that the user has marked for tracing. Thanks in Advance
Started 5 days, 23 hours ago (2009-12-02 09:01:00)
by Phil Hibbs
I'm using the wininet.dll FtpGetFile and FtpPutFile functions from VBA, but they just return a boolean success-or-fail. Does anyone know how to get more info about the transfer, e.g. why it failed or how many bytes were transferred? Phil Hibbs. .
Started 1 day, 12 hours ago (2009-12-06 20:10:00)
by ShadowCoder
hi Guys, ive got a error which tortures me. ive got following class Code: public class MyClass { private final RenderableLayer layer; private final RenderableLayer coordinateAxes; private ArrayList segments; private boolean followTerrain; private String name; public MyClass(String name, boolean followTerrain) { this.name = name; this.segments = new ArrayList(); ...
Started 4 days, 20 hours ago (2009-12-03 12:01:00)
by sebipinn
Is there a way to add a Checkmark to a column? I know that there are Boolean (Checkbox) fields and when these are set to TRUE, Salesforce usually shows them with a check mark. I have a page where after a method is processed, I want to indicate somehow that particular rows or records were affected, or were successful, or whatever you want. I only started developing a couple months ...
Started 3 days, 15 hours ago (2009-12-04 17:10:00)
by asadim
Hi, I have a class called MainClass (actually a batch class) which causes the trigger MyTrigger to trigger at some point. There's also another class called StaticClass with only static members. What happens is, MainClass' constructor sets the boolean isActive inside StaticClass to true and MyTrigger checks this boolean before doing anything. However MyTrigger sees the value ...
Started 6 days, 21 hours ago (2009-12-01 10:53:00)
by Senolen
It goes for 2 failed retries then gives me this error. System.ArgumentNullException: Value cannot be null. Parameter name: stream at System.IO.StreamReader..ctor(S tream stream, Encoding encoding, Boolean detectEncodingFromByteOrderMar ks, Int32 bufferSize) at System.IO.StreamReader..ctor(S tream stream, Encoding encoding, Boolean detectEncodingFromByteOrderMar ks) at System....