similar to: Events in view question

Displaying 20 results from an estimated 500 matches similar to: "Events in view question"

2008 Jul 28
4
RODBC to query an Oracle table
Hello all, I am having trouble running a count function in R using RODBC to query a table I created in Oracle. It may very well be that my SQL coding is incorrect; I just started learning it. But if someone could point me in the right direction or tell me if I am going about this the correct way that would be greatly appreciated! The script I have right now is: >require(RODBC)
2002 Oct 04
0
New High Performance Rink System Installed In Washington State
New Lynnwood Ice Rink Reopens In September With New High Performance Rink System LYNNWOOD -- A new ice arena will open in Lynnwood Sept. 15, about four months after the SnoKing Ice Arena closed. Washington Ice Skating Association, which owns both the former SnoKing rink and the Olympicview private ice rink in Mountlake Terrace, is remodeling and reopening the rink as the Lynnwood Ice Center.
2019 Feb 22
2
time to say good-bye to win 7 / printer is the last blocker
I have picked up the HP LaserJet 1022n on eBay. It is black and white only, but works well with Linux and all versions of Windows I have available. They are generally inexpensive on eBay and the tone is cheap. I can get 4 toner cartridges for around $25 on eBay. It is small, dependable, and makes a good second printer. Most printing is usually black and white. I actually have 3 of them
2007 Mar 21
0
[906] branches/wxruby2/wxwidgets_282: Wx::ComboBox API 2.6 -> 2.8, plus some doc corrections
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!-- #msg dl { border: 1px #006 solid; background: #369; padding:
2007 Apr 29
0
[989] branches/wxruby2/wxwidgets_282: Fix a crasher with misdirected ComboBox#GetSelection method on GTK; clearer
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!-- #msg dl { border: 1px #006 solid; background: #369; padding:
2007 Mar 21
0
[909] branches/wxruby2/wxwidgets_282/doc/textile/combobox.txtl: Correct disambiguated method names in methods listing
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!-- #msg dl { border: 1px #006 solid; background: #369; padding:
2011 Sep 30
1
Related combobox
hello, i have 3 comboboxes, i want to load 2nd combobox based on the value selected in 1st combobox. and 3rd combobox should be loaded depending on the value selected in the 2nd combobox. i have used observe field for 2nd and third combobox , it works for the first combobox but not the second one. -- Posted via http://www.ruby-forum.com/. -- You received this message because you
2003 Mar 27
0
R TclTk iwidgets::combobox
Thanks Peter, I've started a new R session (in Windows) and managed to get both ways working now : ### THIS WORKS !!! ### library(tcltk) tclRequire("IWidgets") tt<-tktoplevel() combo <- tkwidget(tt,"iwidgets::combobox") tkpack(combo) ### AND THIS WORKS TOO !!! ### tt<-tktoplevel() win <- .Tk.subwin(tt)
2020 Jun 15
0
Voice "broken" during calls
Am 15.06.2020 um 20:15 schrieb Jeff LaCoursiere: Hi Jeff, > We are working on a product to analyze pcap files of VoIP calls.  So far > it does a reasonable job of analyzing the frequency distribution of > packets in both directions, pointing out which direction packet loss / > bad jitter occurs.  If you can trap the traffic on the outside and the > inside of your Banana Pi and
2019 Feb 22
0
time to say good-bye to win 7 / printer is the last blocker
Styma, Robert (Nokia - US/Phoenix) wrote: > I have picked up the HP LaserJet 1022n on eBay. It is black and white > only, but works well with Linux and all versions of Windows I have > available. They are generally inexpensive on eBay and the tone is cheap. > I can get 4 toner cartridges for around $25 on eBay. It is small, > dependable, and makes a good second printer. Most
2011 Oct 06
0
initial value in ComboBox tkwidget
Hello, I took me very long to find out how to set the initial value in the combobox widget in tk (see the example below). My question is now : Why does "textvariable" has to be a tclVar while "values" can be a normal vector? My next question is: How could I have known this much earlier? Is there a documentation for the tcl/tk usage in R? I know a lot of website with example.
2006 Aug 09
1
tk combobox question
Hello! The IWigdets::combobox has an option "selectioncommand" to specify a procedure which is called when an item in the combobox is selected. Does ComboBox from Bwidgets have an equal option or is there a simple method to do thi? I haven't found one but i would like to use Bwidgets instead of Iwidgets. Another question which should not be a problem, but at the moment I just
2007 May 13
1
Dropdown boxes in tcltk and R
Hello, I'm very much a newbie in R and more so in tcltk so apologies if this question is stupid. Basically I am trying to use the combobox example found here: http://bioinf.wehi.edu.au/~wettenhall/RTclTkExamples/DropDown.html . What I want to do is in that example get fruitChoice as a variable in R in general. When I run that code, however, and the ask for fruitChoice it says
2003 Mar 26
0
R TclTk iwidgets::comboboc
Hi, I am trying to create a drop-down combobox in R TclTk. The following works fine for a ListBox but fails for a combobox: ################# THIS WORKS FINE - CREATES AN EMPTY LISTBOX ## tt<-tktoplevel() win <- .Tk.subwin(tt) .Tcl(paste("listbox",.Tk.ID(win),.Tcl.args())) tkpack(win) ################## THIS FAILS - ATTEMPTS TO CREATE A COMBOBOX ## tt<-tktoplevel() win
2007 Feb 16
0
R GUI programming
Hi, All: I am having a problem with handling global variable value in GUI programming, I hope R gurus can give me some advice on it. What I want to do is to read in a dataset, display some information based on the input and do some calculation on the dataset: However, I am having trouble organizing my code, as the following code goes, the comboBox section will have to be put in the
2016 Apr 04
2
RFC: Constant folding math functions for long double
Hi Joerg, > IMO if constant folding of transcendental functions makes a significant difference for your program, you likely are doing something strange already. Alas it's not as simple as that. Currently, if you declare: std::uniform_real_distribution<float> x; LLVM emits two calls to logl() with constant arguments, a fdiv and a fptoui. Libc++'s implementation is consumed and
2009 Feb 18
3
Validation and ComboBox
I''m trying to make a ComboBox that can be typed into but only accepts entries that are already in the drop-down list. I hoped a combination of the CB_DROPDOWN style and a TextValidator with the FILTER_INCLUDE_LIST would make that happen, but the validator seems to be ignored. Is that combination supposed to do what I want? If so, please review the code below and let me know where my
2012 Aug 26
1
to clear combobox value....
As i m using tcltk package for GUI designing ttkcombobox command helped me in creating combobox... but, i need to create an application where after i click on *"clear all"* button the values in combobox should be cleared, but i am not knowing what should be written in the command function of a button, so that the selected value of combobox should be cleared or come back to its default
2003 Apr 17
1
Help with TCL packages
Hello, I am exploring the TCLTK package under R and try to load and use additional TCL libraries (under Windows, with TCL8.3). For example : > addTclPath("C:/TCL/lib/bwidget1.5") > tclRequire("BWidget") <Tcl> 1.5 Loading seems to work, but when I try to create a specific widget : # The main window appears correctly > top=tktoplevel() # Trying to insert a
2020 Jun 15
4
Voice "broken" during calls
Hi, We are working on a product to analyze pcap files of VoIP calls. So far it does a reasonable job of analyzing the frequency distribution of packets in both directions, pointing out which direction packet loss / bad jitter occurs.  If you can trap the traffic on the outside and the inside of your Banana Pi and send me the pcap files, I would be happy to run it through our analyzer as