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 strongm 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: jozino01
  • Order by date
  1. jozino01

    Do you know for a good and free icon editor?

    there is for example this one (online): http://www.favicon.cc/
  2. jozino01

    VS installer issue? VB6 issue?

    Sounds weird, but after I replaced my form icon downloaded from the Internet with one of standard Windows icons VS installer create msi file in a few seconds.
  3. jozino01

    VS installer issue? VB6 issue?

    cont. despite taking so long to build msi file, installation from this msi file was successful and program runs OK on XP machine. However, program gives an error message "Unexpected error" when trying to run on Vista even the installation on Vista went without any problems. any ideas, please?
  4. jozino01

    How to filter data/rows in MSFlexgrid

    OK, one for Bob too :-)
  5. jozino01

    How to filter data/rows in MSFlexgrid

    thanks for your help!
  6. jozino01

    How to filter data/rows in MSFlexgrid

    Thanks. What would be a better way to populate flexgrid (and do filtering)?
  7. jozino01

    How to filter data/rows in MSFlexgrid

    how is populated: ssql = "SELECT * From Vendors Order by [Name];" Set rs1 = New ADODB.Recordset rs1.Open ssql, cn, adOpenKeyset, adLockOptimistic MSFlexGrid2.Rows = 0 While Not rs1.EOF MyVendor = rs1("ID") & vbTab & rs1("Name") & vbTab & rs1("Address1") & vbTab &...
  8. jozino01

    VS installer issue? VB6 issue?

    Hi, I have one small application (VB6, ADO, Access) with one form ans following project references: VB for applications VB runtime VB objects & procedures OLE automation MS ActiveX Data Object 2.7 Library Everything seems working OK, but when I want to build msi file using VS installer 6, it...
  9. jozino01

    How to filter data/rows in MSFlexgrid

    Hi, I have msflexgrid populated with names and want to filter it based on the first letter. Is there any other way than just delete whole content and populate it with new data? I think it's pretty common task but couldn't find any sample yet...
  10. jozino01

    get values from ado/dataset

    well, i don't think the brackets are causing error since the following code (executed before Button2_Click) works ok: Private Sub ComboBox2_GotFocus(ByVal sender As Object, ByVal e As System.EventArgs) Handles ComboBox2.GotFocus On Error Resume Next Dim con As New...
  11. jozino01

    get values from ado/dataset

    hi, just trying to put together my first vb express 2008 application (after using vb6 for several years) i want to get values from access table (based on selection from two combo boxes) and insert them to text boxes: here is my code: Private Sub Button2_Click(ByVal sender As System.Object...
  12. jozino01

    get default printer (xp, vista)

    thanks, I got it working with this simple code: Private Declare Function GetProfileString Lib "kernel32.dll" Alias "GetProfileStringA" (ByVal lpAppName As String, ByVal lpKeyName As String, ByVal lpDefault As String, ByVal lpReturnedString As String, ByVal nSize As Long) As Long ... Dim...
  13. jozino01

    get default printer (xp, vista)

    hi, i am looking for a sample code how to detect default printer in xp/vista. i have a code for printing into pdf file using bullzip and cannot figure out how to set back original default printer. thanks.
  14. jozino01

    sort and read flexgrid

    ok, just in case anybody interested here is the code for sorting: MSFlexGrid1.Col = 0 MSFlexGrid1.Sort = flexSortGenericAscending
  15. jozino01

    sort and read flexgrid

    ok, i solved how to read data: MSFlexGrid1.Col = 0 Text1.Text = Form1.MSFlexGrid1.Text MSFlexGrid1.Col = 1 DataPath = Form1.MSFlexGrid1.Text MyPath = Form1.MSFlexGrid1.Text MSFlexGrid1.Col = 2 DataSelector = Form1.MSFlexGrid1.Text MyExt = Form1.MSFlexGrid1.Text MSFlexGrid1.Col = 3...
  16. jozino01

    sort and read flexgrid

    hi, i have one flexgrid populated with data (just text not numerical): Set txtStream = fsoStream.OpenTextFile(DataLoc) Do While Not txtStream.AtEndOfStream strTextFromFile = txtStream.ReadLine MyData = Split(strTextFromFile, ";") FeedData = MyData(0) & vbTab &...
  17. jozino01

    timed shutdown

    to error7 well, i want to allow computer run any time, but shut it down after midnight and shut it down right away if started between midnight and 6am. so i need to check time periodically and shutdown if time is between midnight and and 6am.
  18. jozino01

    timed shutdown

    thanks i am not using any form, just module so i can't use timer or can i? can you please give me some sample code using DoEvents() call after the Sleep()?
  19. jozino01

    timed shutdown

    hi, i want to create a program which would prevent computer running in defined time period (it would shutdown) i wrote some code but it's not working :-( when started it has status non-responding. Option Explicit Dim notime As String Dim RETVAL2 As Variant Declare Sub Sleep Lib "kernel32"...
  20. jozino01

    accpac 5.4/pervasive 7.8

    how can we get it? I went to www.accpac.com/myaccount but there is no option to get pervasive update, just accpac modules. ?

Part and Inventory Search

Back
Top