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 SkipVought 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: *

  • Users: hug
  • Order by date
  1. hug

    Change the order of records in a database

    WOW! you wanted to swap values, then that's the way to do it.
  2. hug

    Very wierd "429" error

    Any body have a clue?<br> A have an App with severals DLLs, if I call any of the modules I get a 429 error, but if I use the same routine called by the MainApp I NEVER got the 429 error again, the relations are OK.<br> Any ideas?<br>
  3. hug

    Did someone ask about editing per chacter entry

    I use this one a lot, I use the tag property for the filtering.<br> The Val(&quot;12,2&quot;) is to find out what the decimal point is comma or a period intead of using an API to find the locale.<br> <br> Function filtext(KeyAscii As Integer, tag As String) As Integer<br> Dim txt As String<br>...
  4. hug

    Any tips on Linking an Array and a Random access file ?

    You can use either, the important factor is the result :)<br>
  5. hug

    Change the order of records in a database

    use the ORDER BY fiedyouwanttoorderdatabasewith to do it
  6. hug

    Any tips on Linking an Array and a Random access file ?

    What I do is put a chr(255) a the beginning of the field and check for it when I read the file, if is Chr(255) is a deleted record. You have to make a compact function to pack the file without the deleted records, but don't have to do it all the time.<br> Maybe is not what you wanted but is...
  7. hug

    Access a DOS windows in ASCII

    That works if you are in DOS, the problem I am having is to access the DOS windows from a WIN app. I tried some hooks, but they don´t work when I switch to a DOS windows, I am running out of Ideas
  8. hug

    Access a DOS windows in ASCII

    I can't figure this out, I need to access get all the info from a DOS app, I can't find the correct function to capture the whole session in ASCII anybody can help me?<br> I know that if the DOS window is in Whole Page mode and I press PrintScreen, I can have the characters from the APP in the...
  9. hug

    Image1.picture = LoadPicture(.....) crashes the IDE on some files

    Yes!, I was able to replicate the same error, I am trying to figure it out.
  10. hug

    Image1.picture = LoadPicture(.....) crashes the IDE on some files

    How big are they? are you absolutly sure they are images?<br> Put an error trap <br>
  11. hug

    I can't get the server to talk to my vb application

    Did you close the connection?<br> Are you using Mscomm.Port<br> It looks like a IRQ conflict
  12. hug

    VB6.0 and Access

    <br> set db = ws.opendatabase("yourdata",,,"Ms Access *.mdb;PWD=;")<br>
  13. hug

    Passing variable to active X control

    Create a property for the variable into the ActiveX control, or as Parameter when you use the control
  14. hug

    User Data Source on the installing machine

    How can I create an user DSN from Code?<br> It should be created AFTER the program found the database file to be used.<br> No clue at the documentation
  15. hug

    Changing a DLL, EXE error

    I did, but the documentation is not clear on this, I hope someone had the same problem and would give some advice.
  16. hug

    Changing a DLL, EXE error

    If I change the code a recompile a DLL project, the EXE file return an error ActiveX cannot create object, and I have to recompile the EXE again, is there a solution that I missed?<br>
  17. hug

    ADO Connection

    how are you referencing to your data base?<br> It may be looking for the database at the same place it was when you compiled your project<br>
  18. hug

    Opening a Secure Access Database in VB5

    This question was made before, here:<br> <br> <br> I get it done. The statement is <br> <br> Set mDBPIS = db.OpenDatabase("\PIS.MDB", False, False, "MS Access;PWD=philip")<br> <br> <br> Thanks the help from everybody.
  19. hug

    VB and Internet Transfer Control

    Check this site out:<br> http://planet-source-code.com/vb<br>
  20. hug

    Visual class from a form?

    Making an AxControl you can create your own properties, you should create control arrays and change their properties.<br> Is like subclassing.<br> On your property page of the Axcontrol you define all the diferents properties you want to make available and change them at design time.

Part and Inventory Search

Back
Top