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

  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.

    Thanks. Is there a way to install either of those with the install? Is it just another reference needed in my setup and deployment project? Sorry if my questions are rookie... I've not done an install before. thanks again! Thanks - Todd
  3. treyball3

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

    I'll give that a try, but one more question. What about computers that don't have Office at all? Right now I'm including the adodb.dll in the install, which works on my Vista test machine, because I don't have office installed. Thanks - Todd
  4. treyball3

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

    If I use Ace, will that work on machines that don't have Office 2007? Or is there an include I'll need for those older machines? Thanks - Todd
  5. treyball3

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

    He has office 2007 on his computer, but my software worked fine on his computer with the first version I sent him, so it had to have used Jet correctly I would think. I have a connection string in my code to connect to the db... "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &...
  6. treyball3

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

    I guess a couple other things I should mention... I have Vista Business on my laptop. And the tester has Vista Home Premium. On my laptop, the main program installs to C:\Program Files\ (with data still going to ProgramData), but on the tester's computer it goes to C:\Program Files (x86)\, even...
  7. 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...
  8. 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...
  9. treyball3

    Trying unsuccessfully to compare/replace a tab!

    I figured it out. I was assuming it was a tab. I had also tried comparing it against vbCrLf. But, as it turns out, it was just a vbLf. oof! Thanks - Todd
  10. 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...
  11. 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...
  12. 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 =...
  13. treyball3

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

    Thanks Jeff! The eval() function was just what I needed! (star for you) Thanks - Todd
  14. treyball3

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

    well, the whole validation could change. I was just using a simple example. It could be anything like the following... sStringFromDB = "(cint(sVariable) > cint(200) or cint(sVariable) < cint(100))" sStringFromDB = "nCategoryID = ""1000""" ...and since this can change to whatever to be able...
  15. 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...
  16. treyball3

    Constrain Image Proportions in Crystal 8.5?

    just want to move this back up to the top, cause I'm having this same problem and am still looking for a solution :) (anyone?....anyone?) Thanks - Todd
  17. treyball3

    Creating OLE field in Access on the fly

    ok, I figured this out. Had to "reverse engineer" it. I created the field in my DB, then stepped through the code and in my recordset when I was on that record, I did a ?rs("fieldname").Type in the immediate window to figure out what the code was using. Turns out that its a dbLongBinary, in...
  18. 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 =...
  19. treyball3

    error with cancelling a db update

    Ok, thought I'd post the solution for this in case anyone else has this problem. We seemed to have stumbled upon it. Basically, all we ended up doing was in the dbGrid1_Error sub, we set Response = 0. That seems to take care of it. Thanks to all who posted! Thanks - Todd
  20. treyball3

    error with cancelling a db update

    Hmm... When I get the error message, it doesn't have a number associated with it. I tried the err.source, no success there either. The error isn't being thrown until the Exit Sub. If I remove that line, I still get the message, but not until the end of the DBGrid1_BeforeUpdate sub. Basically...

Part and Inventory Search

Back
Top