Displaying 20 results from an estimated 40000 matches similar to: "hello win32-dev team"
2005 May 01
6
win32-changejournal 0.2.0-1 compile error
I get the following error when trying to compile:
win32-changejournal-0.2.0-1
on:
Windows 2000, Service Pack 4
Microsoft Visual Studio 6
Any ideas? Thanks,
Zach
----- ERROR BELOW-----
C:\unzipped\win32-changejournal-0.2.0-1\win32-changejournal-0.2.0>nmake
Microsoft (R) Program Maintenance Utility Version 6.00.9782.0
Copyright (C) Microsoft Corp 1988-1998. All rights reserved.
2005 Feb 26
7
Symlinks for Windows
Hi all,
Dave Burt mentioned the possibility of adding symlinks
to the Dir class.
http://www.sysinternals.com/ntw2k/source/misc.shtml#junction
There is also Autrijus Tang''s symlink Perl module at
http://search.cpan.org/~autrijus/Win32-Symlink-0.04/
Looks easy enough, but it only seems to work for
directories, not regular files. Should we add this to
the Directory class, or simply
2005 May 01
3
win32-dir 0.1.0 compile problems
I tried to download/compile/install win32-dir, but I couldn''t get it to
go. Over a private email Daniel Berger had me...
"Curious. What platform are you on exactly? Try
modifying the extconf.rb file. Add
''have_library("SHFolder")'' above
''have_library("shell32")''. If that doesn''t work, try
uncommenting the other
2005 May 18
1
Next release of win32-dir?
Dan,
Do you know when the next release of win32-dir is going to be available.
I really would like to rely on it for the junction capability that
Timothy Byrd posted. =)
Thanks,
Zach
2005 Mar 01
5
Open3.popen3 bug
Running this program:
require ''win32/open3''
i, o, e, pid = Open3.popen3("c:/ruby/bin/ruby.exe -e\"sleep 10\"")
i.close
Gives this result:
C:\_co\source\build\web\temp>ruby t.rb
t.rb:5: [BUG] Segmentation fault
ruby 1.8.2 (2004-06-29) [i386-mswin32]
This application has requested the Runtime to terminate it in an unusual way.
Please
2005 Apr 21
3
win32-changejournal modification
Hi all,
Should we make the same change for win32-changejournal
that we made for win32-changenotify (i.e yield an
array of structs rather than a single struct)?
Any objections?
Dan
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
2005 Feb 07
4
network drives
Another nicety may be handling network drives. I''ve been using a ruby
script which manipulate using the "net use" command to map network
drives, disconnect network drives, query to see what drives are
connected, etc..., but it''d be sweet if this type of functionality was
included in win32 package.
Maybe usage like:
nd = Win32::NetworkDrive.new(
2005 Nov 10
3
[ win32utils-Feature Requests-2811 ] Add UNC support to file / dir
Feature Requests item #2811, was opened at 2005-11-10 15:17
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=414&aid=2811&group_id=85
Category: None
Group: None
Status: Open
Resolution: None
Priority: 3
Submitted By: graham foster (fosterg2)
Assigned to: Nobody (None)
Summary: Add UNC support to file / dir
Initial Comment:
I''d like to see win32
2005 May 18
2
Networking functionality?
Is there (if not, can we get) the functionality to query for
workstations in the local workgroup or domain?
Zach
2005 Jul 15
1
Win32OLE ?
Dan/Park,
What are your thoughts about implemented portion of the win32utils
family that are written in ruby utilizing WIN32OLE.
I have found myself writing decent amount of ruby code accessing the
Windows Scripting Host (WSH) object models. I have a few scripts which
could be added. I do not believe the functionality is currently
available with win32utils:
- map network drives
-
2005 Feb 07
7
win32-driveinfo in CVS
Hi all,
I committed win32-driveinfo 0.1.0 to CVS.
What is it?
===========
A class for getting information of drives
Synopsis
========
include Win32::DriveInfo
(sectorsPerCluster,
bytesPerSector,
numberOfFreeClusters,
totalNumberOfClusters,
freeBytesAvailableToCaller,
totalNumberOfBytes,
totalNumberOfFreeBytes) = getDriveSpace(''c'').to_a
2004 Oct 13
4
win32-eventlog problem
Hi all,
I''ve logged a new bug for win32-eventlog based on Joey Gibson''s ruby talk
post (116528). Park, I''ve assigned it to you for now, figuring that you''re
probably the one who best knows how to fix it.
All help welcome.
Dan
2004 Dec 10
5
win32-process 0.3.1 is out
Hi all,
Just wanted to let you know that I released 0.3.1 last night. This
addresses Bug #712 and incorporates Patches #1087 and #1137 (thanks
Aslak).
I''ll try to get an open4 implementation out this weekend, though I
noticed that Aslak''s patch is different than what Park originally had,
so I''ll have to decide which I prefer, or if they can be blended
somehow.
2006 Feb 02
5
Fwd: win32-clipboard and Unicode zero bytes
Hi all,
I''m forwarding this message from Brian Marick. If you
run this test script and then paste the results into a
Unicode aware text editor, you''ll notice that it only
prints one character instead of three.
I tried changing the strlen to _tcslen and strcpy to
_tcscpy, but that didn''t help. I mucked around a bit
with the MultiByteToWideChar function, too, but
2004 Mar 07
1
win32-mmap problem
Hi all,
Ruby 1.8.1 (hand built, not the installer)
Windows 2000
I was just playing with win32-mmap. I tried running the test_server.rb and
test_client.rb. I started the server, which seems to be fine, but when I
run the client I get this:
C:\eclipse\workspace\win32-mmap-0.1.0\test>ruby test_client.rb
C:/ruby/lib/ruby/1.8/ftools.rb:23:in `initialize'': Permission denied -
2004 Dec 13
3
win32-thread experiment
Hi all,
I''ve checked in some semi-working code into CVS for win32-thread. I don''t
really expect this to ever work properly, given that the Ruby interpreter
itself isn''t thread safe, but I thought it was fun to tinker.
Anyway, with that in mind, give the following a shot:
require "win32/thread"
t = Win32::Thread.new{
puts "hello"
sleep 2
}
2008 Apr 25
4
win32-mmap test failures
Hi all,
This is odd. It looks to me like we have all 4 variations of memcpy set
in Windows::MSVCRT::Buffer but somehow this one creeps up. I actually
noticed it in a few cases with that earlier mmap sub/replace example,
but I wasn''t sure what was happening.
Note that windows-api 0.2.3 and windows-pr-0.8.3 are the latest versions
in CVS, but this happens with windows-api-0.2.2 and
2007 Aug 25
2
Speeding up win32-eventlog
Hi all,
I released win32-eventlog 0.4.5 today. It''s still a bit on the slow
side. The profiler (and general testing) indicates that it''s line 696
that''s the major culprit:
va_list = str.split(0.chr)[0...num]
Other than changing 0.chr to a literal "\0", does anyone have a way to
speed this up?
It''s not crucial, but I thought it might make a nice
2005 Mar 16
1
Problem with win32-service
It compiles fine, but when the resulting library is required, it says:
C:\_co\source\build\ruby\extensions\win32-service-0.4.5\test>ruby tc_daemon.rb
C:/_co/source/build/ruby/extensions/win32-service-0.4.5/win32/service.so:
`interactive?'' is not proper name for a struct member (NameError)
from c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:18:in
2004 Mar 11
5
win32-etc-0.2.2 testing wanted
I''ve commited code for win32-etc 0.2.2, which adds the configure_user and
configure_group methods. Testing appreciated. On my home system, I can''t
get configure_user to work, but I haven''t any real idea why it fails. The
configure_group method seems to work fine, however.
Dan
_________________________________________________________________
Fast. Reliable. Get