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

    Retrieve / Read Database Names

    This has to be simple but I've never done this. I would like to return a list of database names from PostgreSQL, MySQL and perhaps others. Maybe this is more a sql or database specific question, but search subject lines is gone and I can't figure out what I should search for. Anyway, I've...
  2. TLowder

    Oh no! Search subject lines is gone?

    Sorry not vb but I went to search subject line and that option seems to be gone. I'm at a loss cause my search words are, well everywhere. I'll repost my issue in new post. But please why is this option gone? Or am I just not seeing it. Tom
  3. TLowder

    Round <> FormatCurrency

    round(0.125,2) <> formatcurrency(0.125) Why didn't I get the memo? I always thought .005 went up but not with round. I can't believe I'm just now finding this out (or maybe I just forgot). I guess as long as the code is consistant it doesn't matter. I mostly use formatcurrency but was...
  4. TLowder

    Text Object - Character Spacing

    Crystal 8 (maybe doesn't happen in newer versions) This is just a minor annoyance so it's not a big deal to me. But when I'm typing in a text object the character spacing looks like it should. When the object looses focus or is previewed, the character spacing is different. This causes...
  5. TLowder

    Read ID after .update

    Hello, I'm new to PostgreSQL and am converting from MySQL, using VB6. I ussually do something like this to read the id of the new record. Rec.CursorLocation = adUseClient sql = "Select * From MyTbl" Rec.Open Sql, GCon, adOpenForwardOnly, adLockOptimistic rec!addnew rec!whatever =...
  6. TLowder

    Insert Into Different Database

    Hello, I'm trying to find the best way to insert data from one MySQL database to another. The structure is identical. I would like to do this in one sql statement as opposed to looping through each record, movenext etc, but I'm not sure how. I've seen examples such as - "Insert into " &...
  7. TLowder

    Crosshair Cursor then IDE Crash

    Hello, When I open a specific project, others are fine, and move the cursor over a form view, it shows a crosshair cursor instead of the normal arrow. Then if I click on most objects it causes a crash. I found a few objects I can click on, in certain forms that when I click on them the...
  8. TLowder

    &quot;Bar Touch&quot; Manual

    Hello, Does anyone know if there is an online manual for "Bar Touch" POS. A google search for "Bar Touch" and variations there of, turn up way to many unrelated results. Its a very difficult software name to google accurately. I can't even find their company web site. They might be the...
  9. TLowder

    Goto Variable

    Is is possible to use goto with a variable? It probably just isn't possible in the same way you can't refer to forms and controls directly as variables. For example - Dim x as integer x = (retrieve some value - 1,2,3 etc.) goto x 1.. 2.. 3.. Without having to doing this - Dim x as...
  10. TLowder

    automation error library not registered

    Hello, error -2147319779 automation error library not registered This occurs at filesystemobject This is another one of my issues where it works fine under admin but not under user. I uninstalled my app and reinstalled it for another reason, then the error occurred. System restore isn't...
  11. TLowder

    Error 419 (permission to use object denied)

    Hello, Error 419 (permission to use object denied) I've solved the problem but I thought I would share the issue to see if anyone has any comments or if it might help someone else if they encounter the issue. Under the XP Admin account it works fine but under User I was getting this error...
  12. TLowder

    Network Folder - Free Space

    I've read a lot and tried a lot of ways to read the free space of a network folder. Such as API, WMI, FSO none seem to work on a network folder. I found if I map the drive I can easily read the free space; but i would rather not have to. Anyway what I do is backup the data set to another...
  13. TLowder

    Prevent Unlicensed Use

    Hello, I want to create a license / registration key. I've done a lot of reading here on the subject and haven’t exactly found what I’m looking for. I'm not trying to make a hack proof system but simply a deterrent that pops up a prompt for an activation number. I feel many people believe...
  14. TLowder

    Error 339 *.OCX' or one of its dependencies not correctly registered

    Hello, VB6 setup via Package and Deployment Wizard XP Pro Run-time error : 339. component '*.OCX' or one of its dependencies not correctly registered: a file is miising or invalid I'm getting the error on one computer when logged in as user. The program was installed under admin and works...
  15. TLowder

    Field length with mysql varchar

    Hello, I have an ongoing problem with crystal reports fields truncating my data. This only happens when the database field definition is a varchar. What appears to be happening is crystal does not accually recognize my size definition but it recognizes the accual data length of what is...
  16. TLowder

    System Restore - Clicking next button does nothing.

    Hello, I'm trying to do a system restore and everything works fine until the screen that says "Confirm Restore Point Selection"(Screen after restore point is selected). When I click next it does nothing. I can click back or cancel so it isn't locked up. Tried in safe mode too. Thanks, Tom
  17. TLowder

    IDE Crash on OCX - Solved but not sure why.

    Hello, Not a big deal because its working now but I'm unsure as to why my solution was needed and why it worked. My program started crashing in the IDE when a particular form loaded (exe worked fine). As far as I know this started for no reason. I tested on two computers with the same...
  18. TLowder

    Custom Scrollbar

    Hello, I'm looking for a custom scrollbar with better looking graphics or more customizable graphics than the standard scrollbar. I've found a few on the web but I want your opinions from experience on which is better. Or maybe its best to just change using API? I have ListViews and some...
  19. TLowder

    msgbox causes form to disappear

    I just wanted to post this because I encountered the same issue as thread222-1099505, which is closed, and there is no solution posted. Most of you probably know this but it through me off at first. Problem: A msgbox is activated then the current form goes away until the msgbox is answered...
  20. TLowder

    Call Waiting Caller ID

    Hello, I'm able to get MSComm to work fine for normal caller ID with the following lines of code. Form_Load() MSComm1.PortOpen = True MSComm1.Output = "at+VCID=1" + Chr(13) End Sub Private Sub MSComm1_OnComm() If MSComm1.CommEvent Then Text1 = Text1 & MSComm1.Input & vbNewLine End If...

Part and Inventory Search

Back
Top