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: FireFett
  • Content: Threads
  • Order by date
  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

    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...
  7. 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...
  8. 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...
  9. 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
  10. 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...
  11. 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++)...
  12. 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.
  13. FireFett

    Using Saving an Existing PDF to New PDF with out JavaScript?

    I have a project that was handed to me that belonged to a programmer no longer with the company and have very little experience in Adobe and Java so please bare with me. We have a program in vb 6 that opens a PDF document. The document has a Java Script on the Page Open Event that imports...
  14. FireFett

    Removing JavaScript from PDF using VB?

    I have a project that was handed to me that belonged to a programmer no longer with the company and have very little experience in Adobe and Java so please bare with me. We have a program in vb 6 that opens a PDF document. The document has a Java Script on the Page Open Event that imports...
  15. FireFett

    Docking A Window to a control

    Hello everyone I have a problem I am trying to work through and don't quiet have my hands around how to solve it yet. I am sure someone out here has done this already. I have a mdi app and numerous child windows. on one of the child windows I have a button beside a text box that does nothing...
  16. FireFett

    Problem with VbControlExtender

    I am having problems catching events from the VbControlExtender. I have an right now just a generic activex control no code or control placed in it and complied it as and OCX. I then have a project that dynamically loads the the control and want to catch any events that might be fired from the...
  17. FireFett

    Noob Question on Updating Data

    Can some one show me how to make a Update Query that updates values from one table with values from another here is a sample of what I am trying to do. Table one has the following fields StorageID Isle Row Bin Table2 has the following field ToolID DestIsle DestRow DestBin StorageID I need to...
  18. FireFett

    Forcing a Mdi Child Window Size

    Hello everyone. I have a mdi app where I display a mdi child that I want to have default set to a specified size in normal view but when it gets shown its size gets reduced. Is there an api that I can use to enforce the windows default size when being shown in the mdiparent?
  19. FireFett

    Drag Drop Emulation Between Forms

    I been assigned a project where I need a Top most form that acts kind of like the VB Control Bar acting as a list of controls available that a user can select and them drag them to a blank mdi child form at run time. Has anyone ever tried to do this I am sure I can come up with something...
  20. FireFett

    Need Help ASAP - Retrieving Values from XML using DOM in ASP

    I have an XML Doc that stores Query Parameters. <?xml version="1.0" ?> <?xml-stylesheet type='text/xml' href='test.xsl'?> - <!-- sample xml file created using XML DOM object. --> - <Parameters created="using dom"> <UserID>Chris</UserID> <PWD>Pass</PWD> </Parameters> and I have...

Part and Inventory Search

Back
Top