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 bkrike 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: treyball3
  • Content: Threads
  • Order by date
  1. treyball3

    RemovePreviousVersions problems

    I've created a program and using a setup and deployment project, I've created an msi file to use for installation. I'm including the Crystal Reports merge module, so the installation takes quite a while. The install works fine, it's when I create a new version that I'm having problems. I have a...
  2. treyball3

    Provider cannot be found. It may not be properly installed.

    I'm writing an application in VB.Net 2005. As I get to a good stopping point, I compile and build an install and send it to our tester friend. This is my first program that will need to be installed on Vista. The first version I gave him worked just great. But the second version I'm getting the...
  3. treyball3

    Vista access database problem - VB.Net 2005

    I've created an application in VS 2005 that houses data in an access database. I've also created a setup project to deploy the software. I'm having issues when trying to install on a Vista machine. I'm saving my database to the C:\ProgramData folder like I read somewhere. The first time that I...
  4. treyball3

    Trying unsuccessfully to compare/replace a tab!

    I'm reading a record from an access database. In one record, I have some tab and carriage return delimited information. Specifically, Name<tab>Address<return>Name<tab>Address<return> etc. Well, I'm then using that data to merge into a word document, so I needed to add formatting. So, now it...
  5. treyball3

    format a date in a repeater

    Ok, so I have a repeater on my aspx page. One of the fields is a date. I want to format this to the shortdate format. The date comes from a database, so it could be null, which is what causes the problem. Here is my code... <%# iif(not (DataBinder.Eval(Container.DataItem, "DueDate") is...
  6. treyball3

    html help workshop issues...

    I'm trying to create help files using HTML Help Workshop: 4.74.8702.0. I've created my alias.h and map.h files and my html files. I've also linked them to certain textboxes on my VB form. alias.h ---------- CNum_Help = Helpfiles\clientinfo.htm#clientnumber; FName_Help =...
  7. treyball3

    Using a string as an IF statement for validation....possible?

    Ok, so the subject doesn't really make sense, but I didn't know how to sum it up very well. Here's what I want to do, and hopefully its possible. I want to be able to pull a validation rule from the DB and store it in a variable. The reason for this is because the rules could change and we...
  8. treyball3

    Creating OLE field in Access on the fly

    Ok, here's my deal, I'm creating an access db from scratch on the fly. I need to create an OLE field in this db, but I'm having trouble doing so. For other fields I use something similar to this... fld.Name = "Date" fld.Type = dbDate tbl.Fields.Append fld Set fld = Nothing fld.Name =...
  9. treyball3

    error with cancelling a db update

    Ok, I'm using DAO and displaying a bound dbGrid on my form. Under certain circumstances, I need to cancel the transaction in the BeforeUpdate procedure. So, I use Private Sub DBGrid1_BeforeUpdate(Cancel As Integer) 'code to determine if I need to do a cancel Cancel = 1 End Sub...
  10. treyball3

    Drag and Drop - New Twist

    I've been searching through the forums and I haven't been able to find any code for what I'm wanting to do. I'm not well versed in javascript, so that's why I'm here. What I want to do is this... I have a bunch of links organized in different "folders" on my page. When I view this page, I see...
  11. treyball3

    IP Address - State of origin?

    Is it possible to find the state that an IP Address is from? I read that its not always true that you can find it, although I've seen some sites that can tell me what city I'm in even. I will be selling some items on my website and will need to charge sales tax if the buyer is located in my...
  12. treyball3

    Viewing Print Queue

    Ok, here's the scoop. I want to monitor a print job as it goes through our batch system and then as it goes into the print queue. I've got the monitoring of the batch systems down, but is there a way that I can poll the print queue and see if my job is still waiting in line? Thanks!! Todd
  13. treyball3

    DBGrid and Buttons

    I have a dbgrid control, with one column containing a button (this is the button from the dbgrid properties of the column). The column is a text field that contains either &quot;Yes&quot; or &quot;No&quot;. When the user clicks the button, it will toggle it to the opposite of what is in the...
  14. treyball3

    Doing your own hosting?

    Hi, I've done some web design and am considering wanting to do the hosting too. I know nothing about setting up my own server. Can anyone point me someplace to go? Or does anyone have any tips? I preferably want to set a windows server so I can run ASP on it. I kinda need like a checklist or...
  15. treyball3

    custom usercontrols and scrollbars

    First of all, I'm trying to make a UserControl and have no experience doing it. I want a control that is going to be fairly large. The form that this control will be on doesn't have a lot of room, so I would like to use scrollbars for the usercontrol. I'm trying to customize this usercontrol...
  16. treyball3

    datagrid - fixed column width - no data!

    Ok, so I'm using an access database and a datagrid. On my form load, I want the database to display in the datagrid. I can do this just fine if I let the datagrid define its own columns and widths. As soon as I try to set fixed widths to the columns (in the design) then when I load the form, I...
  17. treyball3

    entity list from VBA?

    with lisp, I can do (entget (car (entsel))) and select an entity and get it's entity list - something like ((-1 . <Entity name: 400b0438>) (0 . &quot;LINE&quot;) (330 . <Entity name: 400afcd8>) (5 . &quot;18F&quot;) (100 . &quot;AcDbEntity&quot;) (67 . 1) (410 . &quot;Drawing&quot;) (8 ...
  18. treyball3

    Cancel a command in VBA?

    Is there a way in VBA, or even lisp for that matter, that I can cancel a command? I was thinking like on the BeginCommand event in VBA, where I could test if it was a certain command and then cancel it if it was, to keep the user from using it. Is this possible?
  19. treyball3

    redefine an existing autocad command?

    Is there a way to redefine an existing command in autocad? I want to have a user double-click on an attribute and have it trigger attedit instead of eattedit. Is this possible? if so, how?
  20. treyball3

    Access Problem

    I've used Access before with VB, but it's been awhile. I have this code... Option Explicit Private Const gstrPNDB As String = &quot;C:\TestPartNumbers.mdb&quot; Private Sub cmdProcess_Click() Dim strSQL As String Dim strPartNum As String Dim strDate As String Dim...

Part and Inventory Search

Back
Top