|
Threads tagged with "access"
|
| |
Thread / Thread Starter
|
Last Post |
Replies |
Views |
|
 |
[Note: parts of this message were removed to make it a legal post.] On Sat, Jan 2, 2010 at 1:15 AM, bingo bob <rupert@peaklocation.com> wrote: > I have this array... > > [#<Yahoo::GeoPlanet::Place:0x1031d3fb8 @bounding_box=[[42.554428, > 1.52747], [42.536251, 1.50279]], @name="La Massana", @woe_id="472580", > @longitude=1.5153, @latitude=42.545052>] > > How do I access ...
bingo bob
|
|
6 |
63 |
|
 |
Jordi Bunster wrote: > You have an Array with one Struct. Get the Struct, and call the FLAGS > method. Or use ["FLAGS"]. > > Mind you, FLAGS is also an Array, that could contain more flags than > :Seen. See the "include?" or "detect" methods on Array. > > ...
Brandon Phelps
|
|
2 |
53 |
|
 |
jeth row wrote: > First off, I'm relatively new to Ruby. What I'm trying to do is access a > specific Excel Workbook that is alreay open. Also you can try roo gem (http://roo.rubyforge.org/) -- Posted via http://www.ruby-forum.com/.
Jethrow Tole
|
|
8 |
60 |
|
 |
Hi David I'm trying to see if your example maps to VBA. For VBA you need to call recordset.Fields.Refresh whereas you don't do that in your example. How's that work? Also there are related methods like MoveFirst, MoveNext, Update, Addnew. I could experiment to see if analogies exist under ruby ...
Mike Stephens
|
|
2 |
48 |
|
 |
My reasons for wanting to use Ruby in place of dd is that I wanted to be able to do whatever I wanted to the hard drive from a wxRuby GUI. I have several Bash scripts that do things that I would prefer to use a GUI for. Plus, I ...
Gary Hasson
|
|
15 |
37 |
|
 |
On Wed, Oct 28, 2009 at 2:26 PM, Max Williams <toastkid.williams@gmail.com> wrote: > I connected to an mdb (access db) in windows with the 'win32ole' gem. =A0= I > also got this class from a blog post by David Mullet: > http://rubyonwindows.blogspot.com/2007/06/using-ruby-ado-to-work-with-ms-= access.html > > which also has a guide ...
Paul Smith
|
|
9 |
53 |
|
 |
I connected to an mdb (access db) in windows with the 'win32ole' gem. I also got this class from a blog post by David Mullet: http://rubyonwindows.blogspot.com/2007/06/using-ruby-ado-to-work-with-ms-access.html which also has a guide on how to connect. I modified the class on this page to return results as an array of hashes, ...
Max Williams
|
|
0 |
48 |
|
 |
Hi, In message "Re: Inconsistent behavior of singleton methods that access class variables: 1.8.7 vs 1.9.2" on Mon, 28 Sep 2009 04:06:42 +0900, Nikolai Lugovoi <nlugovoi@gmail.com> writes: |So, the question is, what is the correct way to declare and use such |constructs, and what caused the problem -- bug in ...
Yukihiro Matsumoto
|
|
0 |
44 |
|
 |
Sample code (based on fragment from rails/actionpack/test/abstract_unit.rb): module A class Sample; end module Incorrect; end module Correct; end class << Sample; def list; @@list ||= []; end; end class << Incorrect; def list; @@list ||= []; end; end # original pattern module Correct; def self.list; @@list ||= []; end; end ...
Nikolai Lugovoi
|
|
0 |
44 |
|
 |
Hi, I'm coding some Ruby in a Windows environment. I have some code that accesses some files using the FileUtils library. Now that I'm shifting into production, my code will run in a location from which I need to specify user/password credentials in order to access those files. Anyone know ...
Sandworth Meb
|
|
0 |
35 |
|
 |
On 4 Jan, 21:45, James Kanze <james.ka...@gmail.com> wrote: > On Jan 3, 6:33 pm, Angus <anguscom...@gmail.com> wrote: > > > On 3 Jan, 18:20, "Leigh Johnston" <le...@i42.co.uk> wrote: > > > Simply dereferencing a pointer does not copy the object it points to. > > > struct foo > > ...
Angus
|
15th December 2010 19:44
by Angus
|
12 |
41 |
|
 |
I have a class B which is constructed with a pointer to a class A. If class A is like this: class A { public: BigStruct getBigStruct() const { return m_struct; } private: BigStruct m_struct; } And I need to access m_struct from B, and B has a A* (pA) ...
Angus
|
15th December 2010 19:43
by Angus
|
0 |
39 |
|
 |
"Peter Olcott" <NoSpam@SeeScreen.com> wrote in message news:edidnQrsTasgxbHWnZ2dnUVZ_qCdnZ2d@giganews.com... >I am looking to create an application that needs lots of memory. I don't >want to write it as 64-bit code because 32-bit machines or 32-bit Windows >probably could not run these apps. In the ideal case I would like to write >my ...
(
1
2
)
Peter Olcott
|
|
35 |
75 |
|
 |
"James Kanze" <james.kanze@gmail.com> wrote in message news:1c51fc85-69b9-4735-8c2a-879706308454@a32g2000yqm.googlegroups.com... > On Dec 19, 5:15 am, Jonathan Lee <cho...@shaw.ca> wrote: >> On Dec 18, 11:38 pm, "Peter Olcott" >> <NoS...@SeeScreen.com> wrote: > >> > I am looking to create an application that needs lots >> > of >> > memory. I don't want ...
Peter Olcott
|
|
5 |
39 |
|
 |
"Jerry Coffin" <jerryvcoffin@yahoo.com> >> AFAIK, access specifiers (i.e. private, protected, public) do not >> affect memory layout, neither there is a difference in memory >> layout between class and struct. > > Specifiers can (at least theoretically) affect memory layout -- see: I hoped they do in practice. Th current ...
Victor Bazarov
|
|
7 |
38 |
|
 |
* James Kanze: > On Aug 29, 11:25 pm, "Alf P. Steinbach" <al...@start.no> wrote: >> * James Kanze: >>> On Aug 29, 9:11 am, "Alf P. Steinbach" <al...@start.no> wrote: >>>> The following code compiles as-is with g++ and Comeau >>>> Online, but not when then the commented lines are >>>> ...
Alf P. Steinbach
|
|
12 |
37 |
|
 |
Comeau follows the 2003 standard and thats why it reports an error. I was looking at the latest draft. Fraser.
Alf P. Steinbach
|
|
3 |
39 |
|
 |
"nicolas.sitbon" <nicolas.sitbon@gmail.com> writes: > Hi all, > My question is simple but I can't find the answer in the standard (C99 > TC3). > is this permitted? > > union > { > const void * ro; > void * rw; > } > variant; > > void * buf ...
nicolas.sitbon
|
|
7 |
110 |
|
 |
On Jan 8, 1:45 pm, Ben Bacarisse <ben.use...@bsb.me.uk> wrote: > > thanks for your answer, in fact, I don't need to change the > > qualifiers, rather I'm looking for a way to create a generic data > > structure that can can be used with const generic pointer or non ...
nicolas.sitbon
|
|
4 |
42 |
|
 |
Hi: thanks for your kind help. On Sep 17, 10:50 pm, David RF <davran...@gmail.com> wrote: > On 17 sep, 15:54, "vichy....@gmail.com" <vichy....@gmail.com> wrote: > > > > > Dear all: > > Below is my program: > > #include<stdio.h> > > typedef struct{ > > int b_value; ...
vichy.kuo@gmail.com
|
|
4 |
45 |
|
 |
phil-news-nospam@ipal.net writes: > On Sat, 05 Sep 2009 14:18:00 -0700 Keith Thompson <kst-u@mib.org> wrote: > | KevinSimonson <kvnsmnsn@hotmail.com> writes: > |> I had a job interview yesterday in which I was asked to find as many > |> bugs as possible in a section of C code. Part of the ...
KevinSimonson
|
|
5 |
36 |
|
 |
On Nov 18, 5:56 pm, hpuxrac <johnbhur...@sbcglobal.net> wrote: > On Nov 18, 10:21 am, Steve Howard <stevedhow...@gmail.com> wrote: > > snip > > > Another one to add to the list. Currently, no searches work for me on > > MOS with Firefox or IE. This is a really surreal experience. > ...
(
1
2
)
gs
|
|
43 |
141 |
|
 |
http://img18.imageshack.us/img18/25/accesspasswordrecovery.jpg SysInfoTools Access Password Recovery 4.0 | 3.23 MB Access Password recovery software from SysInfoTools is an application to recover lost or forgotten access database passwords. Access Password Recovery software from SysInfoTools can remove/crack/unlock/break/recover mdb password from protected MS MDB database and is also able to recover any type of ...
uploadno1
|
|
0 |
148 |
|
 |
http://img837.imageshack.us/img837/3795/nhhmh400.jpg Micr0s0ft Forefront Unified Access Gateway 2010 with Service Pack 1 x64-KOPiE Genre: Training | English | ISO | 1.18 GB Help customers securely access business resources from virtually anywhere, increasing productivity while maintaining policy compliance. Bringing together a variety of connectivity options in a single solution, Microsoft Forefront Unified ...
share4all
|
|
0 |
61 |
|
 |
SysInfoTools Access Password Recovery 4.0 portable http://img18.imageshack.us/img18/25/accesspasswordrecovery.jpg SysInfoTools Access Password Recovery 4.0 portable | 6.69 MB Access Password recovery software from SysInfoTools is an application to recover lost or forgotten access database passwords. Access Password Recovery software from SysInfoTools can remove/crack/unlock/break/recover mdb password from protected MS MDB database and is ...
iPhone4Warez
|
|
0 |
50 |
|
 |
Symantec Endpoint Protection 11.0.6200.754 MP2 + Symantec Network Access Control 11.0.6200.754 MP2 + Clients http://img209.imageshack.us/img209/5333/endpointprotectio.jpg Symantec Endpoint Protection 11.0.6200.754 MP2 + Symantec Network Access Control 11.0.6200.754 MP2 + Clients | 2.27 GB INFORMATION: Symantec Endpoint Protection combines Symantec AntiVirus with advanced threat prevention, providing unsurpassed protection of laptops and desktops, ...
katisac6688
|
|
0 |
154 |
|
 |
Captain Paralytic wrote: > On Jan 16, 6:57 am, "sl@my-rialto" <ecp_...@my-rialto.com> wrote: >> Scenario >> --------- >> 1. My client has a database on its web server. >> >> 2. I am running a portal on another web server. >> >> 3. At a particular time, I need to update ...
sl@my-rialto
|
|
5 |
217 |
|
 |
Forefront Unified Access Gateway 2010 with Service Pack 1 x64-KOPiEBy *_* http://img98.imageshack.us/img98/5663/17973043.jpg Forefront Unified Access Gateway 2010 with Service Pack 1 x64-KOPiE | 1.18 GB Genre: SYSTEM Tools Forefront Unified Access Gateway 2010 (UAG) delivers comprehensive, secure remote access to corporate resources for employees, partners, and vendors on both managed ...
potatochips130
|
|
0 |
58 |
|
 |
http://img442.imageshack.us/img442/9506/heroffuag2010.jpg Forefront Unified Access Gateway 2010 with Service Pack 1 x64-KOPiE | 1.18 GB Forefront Unified Access Gateway 2010 (UAG) delivers comprehensive, secure remote access to corporate resources for employees, partners, and vendors on both managed and unmanaged PCs and mobile devices. Utilizing a combination of connectivity options, ranging from ...
Mytam
|
13th December 2010 19:36
by Mytam
|
0 |
53 |
|
 |
Forefront Unified Access Gateway 2010 with Service Pack 1 x64-KOPiE http://img442.imageshack.us/img442/9506/heroffuag2010.jpg Forefront Unified Access Gateway 2010 with Service Pack 1 x64-KOPiE | 1.18 GB Forefront Unified Access Gateway 2010 (UAG) delivers comprehensive, secure remote access to corporate resources for employees, partners, and vendors on both managed and unmanaged PCs and ...
vitamina
|
|
0 |
51 |
|
 |
Hi, I have a ActiveX control. I have a couple of methods exposed. When I try to invoke these methods using Javascript, I get an Error Message : "Unexpected call to method or property access" This works fine if I embed the ActiveX as an object.5 My code is as ...
Vinay S
|
13th December 2010 12:33
by Vinay S
|
1 |
53 |
|
 |
In comp.lang.javascript message <963d3089-ac6c-47a7-8fec-e2f5f3617de5@l3 4g2000vba.googlegroups.com>, Sun, 25 Oct 2009 17:00:29, VK <schools_ring@yahoo.com> posted: >Dr J R Stockton wrote: >> In effect, I want to read the file, HTML or TXT, as it exists on disc. > >You cannot do it for the reason explained at > http://groups.google.com/group/comp.lang.javascript/msg/d9f3f6724bada573 Unconvincing, because I ...
(
1
2
)
Dr J R Stockton
|
|
34 |
94 |
|
 |
i have a table in which i have four textboxes which accepts input from user,when submit button is clicked it has to be stored in database.can any one suggest me how to get the textbox values present in a table
sahithi
|
13th December 2010 12:29
by sahithi
|
2 |
43 |
|
 |
I have to access registry (just read value) when my page gets loaded. I guessed there's 2 ways to finish it. 1. access registry directly in javascript code, but people tole me it gets security issue, and won't be allowed; 2. access registry in my ActiveX method, then I could ...
fifth
|
|
3 |
50 |
|
 |
I have a client running IIS6 and server 2003, I believe. I just got this, running any PHP script: PHP has encountered an Access Violation... This had been working fine. Any suggestions? I've googled that this is probably a seg fault and a suggestion to run php as a fast ...
jeff
|
|
10 |
244 |
|
 |
I've found that I can define: $W = '<img src="'.$Path.'R_Images/Marks/WhiteBall.gif" width="14" height="14">'; ....and can reference this within any PHP code, but I *can't* reference it from within a PHP function, unless it's been passed as an argument. I can't find this documented anywhere, but it appears to fit all of ...
(
1
2
)
John O. Kopf
|
|
31 |
508 |
|
 |
Dear all, I try to connect an local access DB using PHP with XAMPP for windows. Well it used to work until I had to reinstall xampp. Here is part of my code ________________ $db_connection = new COM("ADODB.Connection"); $db_connstr = "Driver={Microsoft Access Driver (*.mdb)} ;DBQ=C:\ \file.mde;Uid=blahblahblah;Pwd=this_is_secret;SystemDB=\\\\servername\ \path$\\....\\xxx.mdw"; $db_connection->open($db_connstr); rest of ...
Civette
|
|
7 |
44 |
|
 |
I'm mostly a Perl user, and I'm new to PHP, so my question may sound obvious to some. Let's say I have such a query: SELECT `name`, `surname`, `age` FROM users; Which would display the following data: Joe Smith 21 Mary Johnson 35 Jane Williams 27 Now, I would like ...
Tomasz Chmielewski
|
|
17 |
38 |
|
 |
Apologies for crossposting. I had put this on a linux/sql group before but just though that this group(s) might be a more relevant avenue. Question: Are there any good tools / APIs / high-level-abstractions around to create quick (and possibly good looking!) web-interfaces to provide a UI to only specific ...
Rahul
|
13th December 2010 10:06
by Rahul
|
3 |
49 |
|
 |
Forefront Unified Access Gateway 2010 with Service Pack 1 x64-KOPiE http://img98.imageshack.us/img98/5663/17973043.jpg Forefront Unified Access Gateway 2010 with Service Pack 1 x64-KOPiE | 1.18 GB Genre: SYSTEM Tools Forefront Unified Access Gateway 2010 (UAG) delivers comprehensive, secure remote access to corporate resources for employees, partners, and vendors on both managed and ...
softspro
|
|
0 |
44 |
All times are GMT +1. The time now is 21:00.