Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. bedrock

    Fun with focus

    Dave: Thanks for your suggestion about SET CONFIRM ON. However, I made it work with just a couple of lines. Once I started using my brain, I realised that the scanner appends two newline characters, and the textbox loses focus as it would from an 'Enter' keystroke. So I just have a simple...
  2. bedrock

    Fun with focus

    My appologies. Let me try and explain better... Focus begins on the textbox. When a user scans a barcode, focus automatically transfers to another control. I want the focus to go back to the textbox once this happens, so that another barcode can be scanned without clicking in the textbox. The...
  3. bedrock

    Fun with focus

    in some ways this continues thread1254-839231. go skim that over, then head back to this thread. the thread above addresses the problem of when to run code from Valid. ive implemented some ideas from there, but i still have some issues to deal with. my form has 2 buttons (save and discard), a...
  4. bedrock

    Form parameters

    hehe...thanks :) what we see depends mainly on what we look for. --John Lubbock
  5. bedrock

    Form parameters

    thanks dsumm, ill give it a try after lunch :) what we see depends mainly on what we look for. --John Lubbock
  6. bedrock

    Form parameters

    i got rid of the properties and execute my sql from init, that is working fine. im confused why this doesnt work though: SELECT myCursor BROWSE && this brings up window correctly thisform.mygrid.RecordSource = myCursor &&gives 'variable MYCURSOR not found' what we see depends mainly on what...
  7. bedrock

    Form parameters

    mgagnon: thanks for your quick response. i do understand the parameters can only go in init(). what i forgot to mention is that the parameters set two properties of the form, which works fine except the grid control seems to be looking for its source data in my form's load() method. since...
  8. bedrock

    Form parameters

    hi all, although this is my first post to the VFP forums, id like to point out i've been reading your archived posts as i learn VFP, and it's been very helpful. thanks. anyway, my form has two text boxes which ask for a name and order number. then i pass these two values as parameters for the...
  9. bedrock

    bho in c#

    i ended up using vc++ code for the bho, although im a fairly convinced it can be done in c#. there are lots of examples on codeproject.com that should provide atleast a starting point. personally though i havent worked on that code in months, so im a bit rusty with the whole it all. what we see...
  10. bedrock

    New Redhat Licensing Scheme

    i switched from redhat to debian when i got word there were scrapping linux, and im more than happy with the switch. 1) network install: no big isos to download (this speeds up the install process CONSIDERABLY) 2) apt-get/dselect: similar to up2date, except there's no subscribing or paying for...
  11. bedrock

    horde login error

    take a look at /path/to/horde/config/horde.php you will find authentication configuration there, as well as how to setup db for preferences, etc. what we see depends mainly on what we look for. --John Lubbock
  12. bedrock

    fqdn and snat

    i currently have a machine (rh7.2 i believe) running iptables/snat or masq (what exactly is the difference?)/port forwarding to my other machines (linux/winxp). i have httpd, mysqld, postfix, sshd running on one or more machines behind this firewall. id really like to be able to access machines...
  13. bedrock

    service installer problem

    i modified the generated code from vs and hard-coded my username and password into the service. i now get the following error: "no mapping between account names and security IDs was done" anyone run into this before? what we see depends mainly on what we look for. --John Lubbock
  14. bedrock

    service installer problem

    ive been developing a service that up to this point has been run under the local system account. im now trying to run this service as a user account for several reasons. my problem is that when i am prompted for a username and password during installation, i am never allowed to install, telling...
  15. bedrock

    shared class members

    i have a c# library with 2 objects, say object1 and object2. object1 is created each time an instance of internet explorer is opened (through a bho written in vc++). object1 then creates an instance of object2, which stores data and does some logging type operations. this works fine, except...
  16. bedrock

    bho in c#

    hi all, ive been working on a project for quite a few weeks now that i need to create a browser helper object. i want to do this in c# because i know little or nothing about com/atl, and in c# i can get away with as little as possible. i found a 'good' tutorial here...
  17. bedrock

    System.Management library

    hi all, im working on a service that needs to watch for events when a specific application opens. the system.management library seems to be promising, but im pretty new to c# and .net, can someone give me some pointers on where to start? thx what we see depends mainly on what we're looking for...
  18. bedrock

    ip masq w/pppoe

    ok, i think ive located the problem. pppoe sets itself as the gateway device, but when i had masquerading working before i had to set eth1 as a gateway device for the internal machines to use. so with ppp0 set as the gateway, the internal network has no gateway to send requests to, and with eth1...
  19. bedrock

    ip masq w/pppoe

    output of ifconfig -a: eth0 Link encap:Ethernet HWaddr 00:02:2A:D5:CA:29 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:22378 errors:0 dropped:0 overruns:0 frame:0 TX packets:10404 errors:0 dropped:0 overruns:0 carrier:0 collisions:0...
  20. bedrock

    ip masq w/pppoe

    thanks for your replies. morsing: which netmask are you referring to? i thought 255.255.255.0 was correct for 192.168.10.1. i would guess that matters a great deal if it is not correct. also, all the output i posted was from the machine doing the masquerading (rh). this is why the ping is to...

Part and Inventory Search

Back
Top