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 TouchToneTommy 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 irlbinky

  1. irlbinky

    Query conundrum

    I was thinking about your problem a bit more. Are you running the query once an hour or once a day? Are you populating a grid automatically with the reply from your query or are you/can you process the recordset your query returns? And do continuous items last for the full day? If you are...
  2. irlbinky

    Query conundrum

    Hi, I am wondering if in trying to keep the data entry to 4 fields are you making it confusing for an end user? Would it be better to add in 1 column or drop down to indicate a priority of the date/time field? This new field could either be retrieved with the message or repeat your query for...
  3. irlbinky

    Can I connect in either direction on a network?

    at a guess to stop the "server" trying to manage another connection.
  4. irlbinky

    Copy picturebox to drive (not screenprint)

    I am not at home so I can't test it fully but as far as I can see from some old code there is a SavePicture function for saving images from picture boxes. SavePicture Picture1.Picture, "C:\filename.bmp
  5. irlbinky

    Adding Data to Ranges Object

    Hi, you can put my code in a loop with different ranges, I wasnt fully sure of the code for looping the ranges so just wanted to show the range changing and new graphs being created :) ~cathal
  6. irlbinky

    Adding Data to Ranges Object

    you could try something like Dim rng As Range Set rng = Sheets("Sheet1").Range("A1:B4") Charts.Add ActiveChart.ChartType = xlPie ActiveChart.SetSourceData Source:=rng ActiveChart.Location Where:=xlLocationAsObject, Name:="Sheet3" Set rng =...
  7. irlbinky

    Import XML String into Access table

    I can think of 2 ways to do this at the moment - both have their drawbacks and both snipets could be modified to be more pleasing to the eye. temp1 = "<Date>2009-03-17</Date><Name>JOHNSON</Name><Position></Position><Age>21</Age>" mylength = Len("<date>") myinterval = InStr(1, temp1, "<Date>")...
  8. irlbinky

    Convert excel sheet to PDF in VB? How?

    The only way I know would be to download a program from http://sector7g.wurzel6.de/pdfcreator/ that sets up a dummy printer to create pdf files. Then in a vb macro/script use code like this Sheets("sheet1").select Application.ActivePrinter = "PDFCreator on Ne00:"...
  9. irlbinky

    Looking through Excel cells for Date

    just a suggestion but if you split the date up 3 parts Month, Day and Year. Dim myDate as Date Dim eachword as variant dim individualword dim mymonth, myday, myyear as int eachword = split(mydate,&quot;/&quot;) mymonth = individualword next individualword myday = individualword next...
  10. irlbinky

    copying part of a picture box

    Thanks - that was a great help and found thios site which explains it simply http://www.geocities.com/SiliconValley/Campus/9449/BitBlt.htm
  11. irlbinky

    copying part of a picture box

    Hi, does anyone have any suggestions/code on how to copy part of a picture from one picturebox to another picture box?, or trimming the edges off a picture? Thanks Cathal
  12. irlbinky

    about combobox in VB

    One option could be instead of using a combobox use a datacombo instead (you will need to set up the connection option) In Project - > components make sure Microsoft ADO Data COntrol... and Microsft Datalist Control Other choice is to do this Set objConn = New ADODB.Connection...
  13. irlbinky

    crystal report parameters

    Hi I need help - preferably in code form as how I can pass the parameters to a Crystal Report Query (below) from text boxes in a form. SELECT * FROM $ACCOUNT_TREELIST$$(1,0,NULL,(?param1), (?param)) Both paramaters are numbers. Any help would be appreciated. Thank Cathal
  14. irlbinky

    Textbox names

    Thanks, that will work perfectly and cut down a lot of code. thanks again Cathal
  15. irlbinky

    Textbox names

    Hi, I was wondering if anyone can help me. I have about over 30 textboxes on a form in the following order 1A 2A 3A 1B 2B 3B and so on with each text box named after it's grid location. I am reading values in from a database and depending on 1. The value in field1...

Part and Inventory Search

Back
Top