User Profile

Collapse

Profile Sidebar

Collapse
blyxx86
blyxx86
Last Activity: Nov 19 '10, 10:39 PM
Joined: Nov 14 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • blyxx86
    started a topic Office 2007 Licensing

    Office 2007 Licensing

    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.
    ...
    See more | Go to post

  • blyxx86
    replied to VPN Clients - Routing Back to Them?
    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?
    See more | Go to post

    Leave a comment:


  • blyxx86
    replied to VPN Clients - Routing Back to Them?
    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
    However I'm still running into issues with the application since it uses simple broadcasts to find other clients.

    Any suggest...
    See more | Go to post

    Leave a comment:


  • blyxx86
    started a topic VPN Clients - Routing Back to Them?

    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...
    See more | Go to post

  • blyxx86
    replied to Recursion - Inventory System
    in PHP
    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
    ...
    See more | Go to post

    Leave a comment:


  • blyxx86
    replied to Recursion - Inventory System
    in PHP
    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
    Where under Loc_id Qty equals 5, as you add up all the locations beneath it. Qty 2 in Loc 3, and then recursively lookup Loc_id 5 and 6 to come with a total Qty of 3 in Location 4 (Which has...
    See more | Go to post

    Leave a comment:


  • blyxx86
    replied to Recursion - Inventory System
    in PHP
    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....
    See more | Go to post

    Leave a comment:


  • blyxx86
    started a topic Recursion - Inventory System
    in PHP

    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...
    See more | Go to post

  • blyxx86
    replied to Dynamic Continuous Forms
    Great. I will take a stab at what I need to do with this.

    Thank you.
    See more | Go to post

    Leave a comment:


  • blyxx86
    started a topic Dynamic Continuous Forms

    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...
    See more | Go to post

  • blyxx86
    replied to Something about Qualifiers?
    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....
    See more | Go to post

    Leave a comment:


  • blyxx86
    replied to Something about Qualifiers?
    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?
    See more | Go to post

    Leave a comment:


  • blyxx86
    replied to Variable table name for cursor
    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;
    See more | Go to post

    Leave a comment:


  • blyxx86
    started a topic Something about Qualifiers?

    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....
    See more | Go to post

  • blyxx86
    replied to MySQL Subselect
    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
    You don't actually need to define the SELECT statement within the join. Unless I am missing what you are trying to do.

    :)
    See more | Go to post

    Leave a comment:


  • blyxx86
    replied to AJAX Post objects
    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....
    See more | Go to post

    Leave a comment:


  • blyxx86
    started a topic AJAX Post objects

    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...
    See more | Go to post

  • blyxx86
    replied to PHP MySQL Format Functions
    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....
    See more | Go to post

    Leave a comment:


  • blyxx86
    started a topic PHP MySQL Format Functions

    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.
    ...
    See more | Go to post

  • blyxx86
    replied to Undefined Variable Solution??
    in PHP
    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...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...