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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by OrangeWire

  1. OrangeWire

    Would like to fill web forms in VB Application -- where to start?

    thank you, i will look over it. Any other links?
  2. OrangeWire

    How can i remove the browsing element in a Datagrid?

    so that is making it by default load a table into the grid, correct? Can i simply just turn off the property that shows that or something? ive been getting the same answer on a few other boards but im unclear as to why peopl ekeep saying set it equal to a table rather than just disable that...
  3. OrangeWire

    Would like to fill web forms in VB Application -- where to start?

    I would like to create an application that i can use to load a webpage (form) within the application, then fill it with specific data. Can anyone point me inthe right direction such as: -what areas i need to learn/study to be able to do this. -any good links -sample source ? (wishing lol)...
  4. OrangeWire

    How can i remove the browsing element in a Datagrid?

    I have a datagrid that i use to display some DB query results on and when the application loads, i would Like the datagrid to be totally empty. Instead, the grid loads and has a collapsed tree of my db tables on the second row looks something like this: |> + During run time if you click...
  5. OrangeWire

    How can i grab data from an Access DB with READ permissions ONLY?

    Hey thank you very much. I think i found the problem though and it really is beyond what i posted. Basically the db is a .mdb file stored on a share that only a select few poeople have write access to. The vb application can get into the DB fine and pull data for us with r/w permissions on...
  6. OrangeWire

    How can i grab data from an Access DB with READ permissions ONLY?

    Yes i think thats what im asking. i am VERY new to vb. I am having problems getting it to dump the data to a datagrid. Here si the code im using: Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load OleDbConnection1.Open()...
  7. OrangeWire

    How can i grab data from an Access DB with READ permissions ONLY?

    I have a simple VB app that pulls data from a DB (access .mdb file not a server) and throws it on a datagrid. It works fine for me (i have read/write access) but for someone with read ONLY it craps out and gives all kinds of errors. Im using the following to connect: OleDbConnection1 >...
  8. OrangeWire

    How can i get a data grid on a form that can change data sources?

    Thank you i will try this out. Any other suggestions or more professional approaches?
  9. OrangeWire

    How can i get a data grid on a form that can change data sources?

    I would like to have a form laid out in the fashion of: Buttons on top for different queries Data grid below with changing data based on the button choices. Is this possible? I have been unable to get a datagrid onto my form -- i am however able to create a form that is 100% a data grid (no...
  10. OrangeWire

    Merging Arrays

    what do i do to add them to the array?
  11. OrangeWire

    Merging Arrays

    how can i use those functions ? do i put them in a loop?
  12. OrangeWire

    Merging Arrays

    what i am doing is trying to write a simple search engine that parses some data i have stored in 3 areas. If it finds the word in all three areas (As specified) the result is the Most relevant if it finds it in only 2 areas(As specified), those results are more relevant. if it finds results...
  13. OrangeWire

    Merging Arrays

    i would like to merge these 3 arrays into a single that 1) Does not have duplicate entries 2) Keeps the order of elements $result1 = mysql_query($closest); $result2 = mysql_query($closer); $result3 = mysql_query($close); im a newbie so i might be using the wrong...
  14. OrangeWire

    Merging Arrays

    After reading php.net all day Im REALLY confused about how i should go about doing this... i would like to merge 3 arrays into a single that 1) Does not have duplicate entries 2) Keeps the order of elements Here is the code i have so far: //Dont Mess With This Stuff, Jigga...

Part and Inventory Search

Back
Top