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 Mike Lewis 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. sgkdnay

    mySQL - Wrap Around Map

    I have a grid that goes from 0,0 to 799,799 (800x800 blocks). The issue I'm having, I can't get my head working on this, an guidance or hint of help would be great. I can get the result as long it's inside the stated grid, but when it comes to wrap around the grid, it won't give me results. ie...
  2. sgkdnay

    Hidden/Visible - Load Once.. Not Again...

    I can't think on top of my head nor any site gives good example. I have a web going where I create tabs on top of the screen. Within those tab will open "your fave browser" in an iframe. (personal project) Question here is: when I click those tab, it would load, click another tab, it will...
  3. sgkdnay

    MyISAM or Insert Issue or MySQL Server Issue? *pulls hair*

    Thats the answer I was really looking for. I stand correct that the system was too fast for mySQL to keep up with all those "chuck" of data to it's queue, no matter how much I tried to tweak it. Hence I had to "reprogram" my VB to loop into certain chucks to allow mySQL some time to add some...
  4. sgkdnay

    MyISAM or Insert Issue or MySQL Server Issue? *pulls hair*

    I've tried everything, tweaking setting, re-code my VB6 and for the life of me, I couldn't figure out what I'm doing wrong. I have 14k rows of data in my text file which is subsequently read into datagrid then it would attempt to update the table in database. Now the issue is that everytime I...
  5. sgkdnay

    Better Way to Check/recode Listview?

    I know there is a better way, I'm a self-learner. It works fine but takes TOO long to search thru the listview and compare each other and pulls new data listview from old data listview. Is there a better way to re-code this? Code as follows: For x = 1 To ListView3.ListItems.Count...
  6. sgkdnay

    Trouble with IE Control

    I created a VB with IE control long ago, all key function works as intended when IE is in focus. ie: backspace, CTRL C, CTRL V, DELETE, etc... I copied my old VB 'CTL' and created an new VB, parameter and all such things as exactly the same, just pondering one thing... backspace, CTRL C, CTRL...
  7. sgkdnay

    JS - Pass Value from Child to Parent

    Tried your suggestion, funny thing... it works.. Thanks a bunch for helping solve this :D
  8. sgkdnay

    JS - Pass Value from Child to Parent

    the code is a bit long, i set it on web for you to check if you like. 3 parts of files: http://www.deafpah.com/crm/index.txt http://www.deafpah.com/crm/notes.txt http://www.deafpah.com/crm/dhtml.txt (it normally goes into dhtml folder. The actual website is www.deafpah.com/crm/ for action...
  9. sgkdnay

    JS - Pass Value from Child to Parent

    Any other idea that could help this issue? Other another path should be taken to defeat this purpose? Thanks
  10. sgkdnay

    JS - Pass Value from Child to Parent

    tsuji: Yes you're correct, all lowercase and set as it was supposed to function but gives me 'undefined'. The pop-up is windowless modal (similar to VB) but using JS/Ajax. The (name).Open is crm=DHTMLWindows.open(parameter). Sort of "windows in a windows", not an IFRAME or New Windows PopUp...
  11. sgkdnay

    JS - Pass Value from Child to Parent

    jax: I apologized for the case sensitive char, its all lower case in the parameters. I changed AddN to AddNo, this time in Firefox no error but no result, in IE it gave me error: Object Expected tsuji: I tried your method, still gives me 'undefined'. Thanks
  12. sgkdnay

    JS - Pass Value from Child to Parent

    Im driving myself nuts for the past 2 days. Tried everything to fix this, even tweaking, still no go. Might have overlooked a thing or 2... Originally (both using Element ID (not Name)): On Parent Windows - Form Called (NewCRM) and TextArea called (NoteAdd) On Child Windows - Form Called...
  13. sgkdnay

    Looping Incorrect?

    Tried that suggestion, got an error: Run-time Error '35600' Index Out of Bound The Code is so simple, I just can't pinpoint it in VB itself cuz it pulls data from the web. I was testing to "save" data to the file but before I do that, I was testing it to textbox (with multiple lines setting)...
  14. sgkdnay

    Looping Incorrect?

    Im trying to export data from Listview. I don't think I have enough sleep atm LOL... aside that, goal is to read data from ListView (Clist) like: Row Name Town 1 John Anywhere 2 Ann Somewhere 3 Jon Whereever and export it to text, I got the export part...
  15. sgkdnay

    LV & Imp/Exp - Right Direction...

    I've been looking left to right and run into dead-end in some area that not providing what I'm really looking for. Hope you can help me point to the right direction. My objective is on "How To": -Export Listview (with arrays) -Export to CSV (or txt) -Import CSV (or txt) Many links in Tips...
  16. sgkdnay

    Learning Arrays.. Cant get it working :(

    yup just learned the hard way LOL when i use sub without those "ParamArray values()" it works fine, the result came out just the same as I mentioned above with function.. as i said, Im still learning :D Thanks again
  17. sgkdnay

    Learning Arrays.. Cant get it working :(

    I found it, you gave me plenty idea how to tweak it and this one works but wont work as SUB only FUNCTION: Private Function arraytest(ParamArray values() As Variant) As Integer() 'On Error Resume Next Dim Sta() As Variant, lSta As Long Dim ABC() As Variant, lABC As Long Dim i As...
  18. sgkdnay

    Learning Arrays.. Cant get it working :(

    Wow, something new to me, result came out like: 1 - 0 : 0 2 - 0 : 1 ... 1325 - 50 : 24 1326 - 50 : 25 so on Almost like what I wanted, however would like to display something like 1 - AL : A 2 - AL : B ... 1325 - WY : Y 1326 - WY : Z Hope this is clear to you..
  19. sgkdnay

    Learning Arrays.. Cant get it working :(

    Tried to find the "proper" way to do arrays, but for the life of me, couldnt get it to display on my listbox test. Trying to learn few things here and there. Hope you could help shed some light here. Private Sub arraytest() 'On Error Resume Next Dim Sta() As String, lsta As Long Dim...
  20. sgkdnay

    InnerHTML & Listview... Not loading "Fast" Enough...

    Further ado, when i do a step by step "code watch" it pulled all the data just fine, but when it runs real-time, sometimes it pulls well until letter "k", then it messed up, other time another letter messed up, how could i get the "loop" to wait (not using sleep(x)) before resuming or the like?

Part and Inventory Search

Back
Top