Hey everyone,
We're looking to purchase some licenses (between 5 and 30) of Office 2007 Pro Plus for our users in the office here.
We have the option to purchase it with Software Assurance for $705/seat but I'm not sure if it is worth it. Without SA it looks like it will be about $420/seat (I'm waiting on this quote).
We're running mostly Office 2000, with some scattered 2003's in the mix.
...
User Profile
Collapse
-
Office 2007 Licensing
-
Update #2:
It looks like this is an issue with UDP Broadcasts not traversing through the VPN client/gateway.
Is there a way to get it so that these UDP broadcasts get forwarded? -
UPDATE:
I was able to get the path back to the VPN'd computer working with OpenVPN by adding a static route to the computer on the internal LAN and using the IP of the OpenVPN gateway as the gateway IP.
Code:route add 10.79.129.0 mask 255.255.255.0 192.168.101.5
Any suggest...Leave a comment:
-
VPN Clients - Routing Back to Them?
Hello everyone,
I'm setting up an Intranet messenger on our computers in the office to let everyone talk quickly. The application uses UDP broadcasts to discover who is online. Internally this works just great.
The problem is with VPN clients. I've tried using both OpenVPN and Microsoft's VPN services. They can connect, get an IP and connect to every device in the network, but the UDP packets don't seem to make it... -
So I created a class for it that mostly works for what I need it to.
I hope the comments inside help make sense of what is going on.
Code:class Inventory { var $my_array = array(); function Inventory($parent_id='', $level=0) { //constructor calls inner function $this->find_inv($parent_id, $level); } /** * Function to print out inventory
Leave a comment:
-
Let me provide a sample of some desired output (or rough idea):
Code:Loc_id Part_id Qty +1 ABC 5 --3 ABC 2 -+4 ABC 3 --5 ABC 1 --6 ABC 2
Leave a comment:
-
I actually use views somewhat regularly in our database here, I would have to develop a recursive stored procedure of sorts to do this, since there can be "N" levels of parents for the inventory location....Leave a comment:
-
Recursion - Inventory System
Hello Again Everyone,
I've got a few database tables set up as a test scenario to be able to find total inventory by company, by location, shelf, bin, etc..
Very simply the data structure is like this:
inv_location
inv_location_id
location_name
parent_inv_loca tion_id
Then inventory counts go here
inv_stocktage
inv_stocktake_i d
part_id
quantity... -
Great. I will take a stab at what I need to do with this.
Thank you.Leave a comment:
-
Dynamic Continuous Forms
Hello Everyone!
I'm starting to realize the project I'm working on is going to have a high demand for AJAX type integration. Most notably with the forms that need to be filled out by the user.
A great number of forms are used to enter "one-to-many" types of related data into the database. (ie., one shipment will have many items)
I would like the user to be able to enter all the information... -
I found something regarding CASE statement and MySQL.
http://dev.mysql.com/doc/refman/5.0/...statement.html
SELECT (CASE field1 WHEN 'Yes' THEN 1 WHEN 'No' THEN 0 ELSE 0 END) FROM mytable;
I'm super tired (yet suffering from a slight case of insomnia). So I'm mostly posting this find as a note source for sometime tomorrow or over the weekend....Leave a comment:
-
No no. You hit my question right on the head.
You said, much more clearly, what my "ORRR" section was attempting to explain. How, then, would I write a query when each of those ids relate to a different table?Leave a comment:
-
Does this help you?
Code:create procedure cursorproc(IN p_in INT, OUT p_out VARCHAR(30)) begin declare l_emp_name VARCHAR(30); declare cur_1 cursor for select emp_name from emps where emp_id = p_in; open cur_1; fetch cur_1 into l_emp_name; close cur_1; set p_out = l_emp_name; end;
Leave a comment:
-
Something about Qualifiers?
Good afternoon everyone...
I'm trying to remove unnecessary NULL values from within some of my tables.
Essentially I have this problem: An item can be assigned to a person/location/status. However, it is only in one of those places, never all three, and never a combination of them. I could define 3 columns person_id, location_id and status_id. Then generate 3 queries to find who/where/what that item is assigned to.... -
Code:SELECT a.reference_no, b.order, b.date FROM table_a AS a LEFT JOIN table_b AS b ON a.reference_no=b.reference_no WHERE b.order=1
:)Leave a comment:
-
Hey everyone!
I found a solution to the problem.
jQuery had a built-in function to do just this. My lack of knowledge of what the objects are called made it difficult to define a decent enough search for my purpose.
A few texts between a friend and me helped me define the words for my search and expand the thought.
Associative arrays in javascript appear to be called objects. Their values are properties....Leave a comment:
-
AJAX Post objects
Hey everyone,
I'm fairly new to javascript. I hardly ever use it, but my newest project is demanding that I have 'dynamic' drop downs where the user can type in their partial matches.
So, I come across jQuery Autocompletes. Works wonderful, except the framework I am using doesn't like using GET methods and they are less safe than POST data.
So I modified the code of the autocomplete to allow me to send... -
It appears the mysql_real_esca pe_string bug has been fixed for anything newer than 5.0.21 according to their site.
http://dev.mysql.com/doc/refman/5.0/en/news-5-0-22.html
I do like parameterized statements though. I plan on implementing them in the model section of my application....Leave a comment:
-
PHP MySQL Format Functions
I have these two functions that are used to sanitize data going into my database as well as format it for output.
I have tested them with strings like "c:\r\new\" to verify that lines aren't messed up.
These may be helpful to someone else, but please let me know if there are problems with them.
Code:/** * * Sanitizes data that is passed to it for entry into mysql database.
-
Thank you Mark.
I guess the form validation calls part of the form helper into it. Makes sense.
I will play around with that tutorial, though I am still confused as to how to setup the models within CI. I still have a lot to learn, but I am thankful for how well put together the CI user guide is.
Hopefully I will understand the MVC concepts more by the time I am supposed to have some 50+ table database application...Leave a comment:
No activity results to display
Show More
Leave a comment: