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. FireFett

    Help with building a stored Proc that updates using an if test

    Hello everyone. I need some help building a sp with an if statement (really need to get a book but hoping someone can help me out right now) I have a table with the following fields: User varchar(25) UserName varchar(50) PUID varchar(25) TS TimeStamp Now what I want to do is make an...
  2. FireFett

    Problem with a Stored Proc Returning Values

    I know its a newbie problem that much I do know but not sure what I am doing wrong I have three output parameters defined outUserID outUserName outPass The select statment that I want to execute is: Select UserID, UserName, Pass from tbl_security Looking at the documentation the Stored...
  3. FireFett

    Concurrency Using VB.NET & MySQL Help/Understanding Needed!

    Hello, I have been spending the past couple days trying to understand how to implement row locking in MySQL for program we plan in porting from betrieve 6.12 and Random Access flat files in VB6. Having read and scoured the net I have not found any significatant material to understand how to...
  4. FireFett

    Help getting the path/filename from an image

    I have been digging in the Image object and haven't found a property or method to extract the path/filename out of the object only the setting it via image.fromfile. Currently I have an app that has a property grid that has an image type defined and the users can select the image they want...
  5. FireFett

    Importing Data Problem - URGENT

    Hello everyone I have numerous PDF files that are Template files that have data pushed into them when opened from vb application When I have the following javascript: importTextData("/c/cu00.inf",0); importTextData("/c/laser.dau",0); for(var i=0;i<this.numFields;i++) {var...
  6. FireFett

    Problem: Querying Float Fields with a decimal

    Thanks I had just found that out when I got your reply. I was basing my data types on the Visual basic/MySQL data Types Document that says Singles in VB = Floats in MySQL I have since made changes to the table to convert the floats to doubles.
  7. FireFett

    Problem: Querying Float Fields with a decimal

    Hello everyone I have a table that contains a FLOAT(13,1) field When I perform a query on it if the select statement on that field tries to find a value of 5.1 it will not return a record. Example of Data in Table Rec1 5.0 Rec2 5.1 If I Perform the following SQL Statement SELECT AcctNum...
  8. FireFett

    Using Adobe Library To Print a PDF file to a Specified Printer

    I have an issue similar to this where we set the default printer to print a pdf then close the PDF and Reset the Printer Default to another printer and open another PDF to be printed however it still wants to use the default printer that was specified in the first print. It appears the Adobe...
  9. FireFett

    Form Focus Issue

    There is no cancel for the keypress that I could find. But think I might write a larege generic function that when the render window gets focus all controls on anyother midi get disabled and on lost focus re-enabled. :S not exactly what I wanted but should work.
  10. FireFett

    Form Focus Issue

    No problem bob. I have done the project in VB 6 and this issue doesn't happen it appears to be something new in the .Net framework in the Forms Class that is causing the problem. I will adventually get to the bottom of it.
  11. FireFett

    Form Focus Issue

    Sorry realized that all the code did not make it down Private Sub frmCamera_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'SET WINDOW POSITION Me.Left = pfrmWorkspace.Width - (Me.Width + 12) Me.Top = 0 'SET ENGINES DISPLAY...
  12. FireFett

    Form Focus Issue

    Yes the steps you outlined are infact what is happening here is the code I have on the Renderwindow 'SET WINDOW POSITION Me.Left = pfrmWorkspace.Width - (Me.Width + 12) Me.Top = 0 'SET ENGINES DISPLAY VIEW PORT...
  13. FireFett

    Form Focus Issue

    I am having some problems with a mdi app that has two children side by side one is a 3dRenderview port and has code that when the mouse is over it to primary loop checks the 3dInput object for key input. (This part works fine) the second window(additional windows) are property windows for...
  14. FireFett

    Mouse Over Form

    Using the MouseHover and MouseLeave Event Looks like it will work if I use it on Picturebox. Then pass the Rendering Engine the Handle to the Picture box Thank Rick
  15. FireFett

    Mouse Over Form

    There is no Viewport control I pass the windows.Handle to the 3dEngines class. Using TrueVision3d. However maybe binding it to a picture window on the form would do the trick will try that out.
  16. FireFett

    Mouse Over Form

    Hello everyone I am hoping someone can answer this question for me. I have a mdi app in VB.Net of course and I have one child window that when ever the mouse is over the form sets a Boolean flag and when the mouse is not over the window sets the flag to the opposite. I looked at the...
  17. FireFett

    ScaleLeft Equivlent?

    Can anyone tell me how I would do this in vb.Net If MouseX > Form1.ScaleLeft And MouseX < Form1.ScaleLeft + Form1.ScaleWidth And MouseY > Form1.ScaleTop And MouseY < Form1.ScaleTop + Form1.ScaleHeight Or MDIForm1.LMC.Checked = False Then
  18. FireFett

    Need to know a replacement for GetActiveWindow

    Ok I have a vb 6 app and moving it to .net but I am having a problem with finding a replacement for the following Public Declare Function GetActiveWindow Lib "user32" () As Long If GetActiveWindow = MdiForm1.Hwnd then Execute other code End if I am trying to do the following in .net but it...
  19. FireFett

    Urgent Can someone look at this and tell me what I am doing wrong?

    Can some one give me a hand please. I have the following script on the page open event. It is to scan all the fields on the PDF and if any field has a value sets my variable d to 1. Currently it always returns a 0. The Script: var d= 0; for(var i =0;i<this.numFields;i++)...
  20. FireFett

    Some Help With a Java Script

    Can some one show me how to make a java script that goes on the Page Open Event that will loop through all fields on the PDF and check if there is a value and if any of the fields contains a value sets a flag variable Thanks.

Part and Inventory Search

Back
Top