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 Chris Miller 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. bledileka

    Array and keys combination

    Hello ! Im got this array : $numra=array(1,2,3,4,5,6....); //x numbers, max 90 Well, now i want to find all the possible unique combinations of this keys, i came up with something but i got problems on distinguing combinations. Example : 1 - 4 - 3 - 5 - 6 is equal to 1 - 4 - 3 - 6 - 5. I need...
  2. bledileka

    JumpMenu populating !

    yea and its very cool :) Next step i would like to do is posting a textbox without reloading, using ajax again. Ajax is very useful and sexy :D
  3. bledileka

    JumpMenu populating !

    thnx :) i resolved it with XMLHttpRequest()
  4. bledileka

    JumpMenu populating !

    Hello everyone ! I got 2 jumpmenus that i wanna populate them from a table (mysql). The second one will be populated depending on the first one.Let supose categories and subcategories. My problem is that i dont wanna reload the page. Can anyone help me with any javascript or ajax snippet to...
  5. bledileka

    http_referer doesnt work in IE...

    Hi people ! I tried to secure one page with http_referer. this is wot i did actualy : <?php $kot = $_SERVER ["HTTP_REFERER"]; if ($kot == "page1.php") { echo "do some stuff"; } else { echo "<a href=\"java script:window.close()\"><font color=\"#000000\">Close The Window !</font></a> "; } ?>...
  6. bledileka

    webBrowser unload

    hi all im tryin to make and identification form that makes the verification in a website with cookies. Wehen i press login it makes the verification, if the username and password are right it shows a welcome message else it shows the wrong password error. But, in the first case, when the...
  7. bledileka

    Saving each row of MsFlexgrid in differned files ???

    thnx Andy but as i said i did it my way without askin. :) with ur help now i can do better. Thnx.
  8. bledileka

    Saving each row of MsFlexgrid in differned files ???

    this is the way i did for making a report of the products in the warehouse using files. I named files .lnk :)for the reasons: 1- that when u right click on it u dont see any open with and 2- coz i dont wanna spend time encrypting all the file texts.i dunno if this will be helpful but anyway u...
  9. bledileka

    Saving each row of MsFlexgrid in differned files ???

    hi chris ! to add the data in the first row i defined them on form load event like this : yourmsflexgridename.row=0 yourmsflexgridename.col=1 yourmsflexgrid.text="First Title" yourmsflexgridename.row=0 yourmsflexgridename.col=2 yourmsflexgrid.text="Second Title" like this till the number of...
  10. bledileka

    Saving each row of MsFlexgrid in differned files ???

    files like .txt or anyother.just for storing the information. Each cell will be saved in a file.
  11. bledileka

    Saving each row of MsFlexgrid in differned files ???

    hello everyone! im tryin to make a sales system using only files. I dont know if its useful but for me it looks the easiet way to learn visual basic. i did the invoice using a simple form in which i puted a lot of textboxes. When i save the invoce it saves automaticaly all products, quntities...
  12. bledileka

    MSFlex grid directly to Excel ???

    is there anyway to directly export msflexgrid data to MS Excel ?
  13. bledileka

    Working with Files !!!

    Thnx strongm ! Very helpful !!! :D
  14. bledileka

    Working with Files !!!

    (2 * x) + (2 * y) is in a label then in two text boxes named x and y i enter the values. the label contains the whole formula. Is that possible that when i press calculate, the result takes the formula from the label and replaces x and y with entered values from textboxes ? i uploaded an image...
  15. bledileka

    Working with Files !!!

    Hello everyone ! Im tryin to use a formula wich is loaded from a simple file to a Label named "formula". Formula type is like : (2 * x) + (2 * y). In the same form i have puted 2 text boxes. One named x and the other named y. When i press the button Calculate i want to have the result using...

Part and Inventory Search

Back
Top