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

  • Users: steve4king
  • Content: Threads
  • Order by date
  1. steve4king

    Reasons to call a JS func using JQuery

    FYI, I'm a complete newb when it comes to JQuery, and pretty new to LAMP dev in general.. so please.. be gentle haha. I'm updating a web application built on LAMP using PHP, JS, JQuery, Backbone.js, and Yii. I have a series of buttons(php widget) which call javascript functions. Some of these...
  2. steve4king

    Hide/Show report form summary programatically or disable printing blank pages?

    I have a report form that includes an addressed section for windowed envelopes, both for sending and returning. The section for the first envelope is in the title band. The section for the return envelope is in the summary band. Prior to printing this report I give the user options to disable...
  3. steve4king

    Unable to delete files as sudo

    ls -la shows a bunch of files in a temp directory. Any time I try to modify the directory, it lists every file within that directory and tells me "no such file or directory" for each one. I'm thinking the issue has to do with the file names, which contain '^%'. Even surrounding the file name...
  4. steve4king

    impact of expressions in composite indexes

    Maintenance on an old program: No candidate keys, but the candidate key for this file would be: tranid char(7) + tranline number(4,0) I need to add an index to speed a routine that looks for missing rows in a mirror table. Currently the semi applicable index is: tranid + DTOS(date) Just...
  5. steve4king

    set("order") vs. order()

    I'm fixing an issue with some old code: select sometable lcOriginalIndex = set("order") set order to SomeOtherIndex ** **do stuff ** set order to &lcOriginalIndex Set("order") returns "tag myIndexName of [full path of current cdx file]" The problem is that if there is a space in my path...
  6. steve4king

    _Screen 'X' button does not change immediately after Modal form is opened or closed.

    I see this issue all over this forum, but no definitive solutions. Hoping someone has learned something since then, or clues from my scenario will aid in finding a better solution. This is an old app I'm working with, but currently building with VFP9 sp1. I launch a small procedure from a...
  7. steve4king

    Registry.vcx / wow6432node

    Apologies if this is elsewhere.. (Saw lots of registry entries.. but surprisingly nothing pertaining to this question) My application will make use of a registry key at HKLM\Software\MySoftware My installer correctly creates the key and string values at HKLM\Software\MySoftware\AppDir However...
  8. steve4king

    Accessing DLL - Issues with .net or VB dll

    I'm trying to access a MagTek library to control some hardware. (IPADLib.dll / MTIPADlib.dll) MagTek has also included MYIPADLib.h and MTIPADLib.lib. (The MT..dlls are used for VC/VB) I found a .tlb in some sample code which loaded into the Fox object browser, so Intellisense is working...
  9. steve4king

    Field not updating unless re-selected..

    Why is it that the Found() block updates ctra.invoice, but the else block, does not? (unless I select ctra right in front of it) SELECT cinv SET ORDER to cinvuid SELECT ctra SET ORDER TO Ctrauid GO TOP SCAN SELECT cinv SEEK cuid IF FOUND() IF ctra.invoice != cinv.iinvoice...
  10. steve4king

    initializing a two-dimentional array with data

    OK, so I know I've done this in C# and Java.. I know I can do this like: Dimention Arr[5,3] Arr[1,1] = "1a" Arr[1,2] = "1b" Arr[1,3] = "1c" Arr[2,1] = "2a" Arr[2,2] = "2b" Arr[2,3] = "2c" But.. I'd like to do it something like Insert(Arr[] = new string[,]{"1a","1b","1c"}) Is there...
  11. steve4king

    Making an application using MSComm more responsive

    I've worked with a few point of sale applications, and in a few rare cases seen where a cheap USB-Serial converter would cause occasional lockups when attempting to send messages to a display pole. I've recently had a few users complain about locks or long delays which have been attributed to...
  12. steve4king

    Grid cell focus behavior - Select all characters instead of dropping cursor at a specific character

    I've got a read only grid, there's no reason anyone would want to drop a cursor into the middle, beginning, or end of a value. However, for sorting reasons, I do want to be able to select the cell (specify column/row) The problem with dropping the cursor into the cell's value, is that I cannot...
  13. steve4king

    form vs component init order and parameter availability

    Alrighty, this seems like a really newbish question, but it's got me stumped for the moment. When a form is created/displayed using "do form with.." The order is: Form.load Components.init Form.init Parameters passed during "do form _ with " are only accepted by the form's init process. Since...
  14. steve4king

    Disabling form events

    I've got a form1 that calls a process, which hides form1(to display an external form) then alters form1's values, then returns to form1. I need to set the focus on a specific field on the form prior to returning. However, setting focus displays an "alias 'thisform' is not found" error. I...
  15. steve4king

    Code completion for properties of custom classes. (created visually)

    I've created a class using the UI to generate a VCX/VCT and am successfully using this class in my code. This is the first class I've created in this manner in VFP. Most of my properties have assign methods, no access methods. I understand that code completion of my properties/methods is...
  16. steve4king

    Broken VCX? What did I do wrong?

    I just created a new class through the fox UI. Spent the last six hours or so on this. The class was functioning just fine, but the project seemed to have cached an old version of the class and only called the new one if it was dragged onto a form. The class exists in two directories: MyDocs...
  17. steve4king

    Using mt.exe to embed a manifest post build - erases my executable instead

    My version of InstallShield predates windows Vista and it's implementation of a embedded manifests/definable execution level. I've found a bit of information suggesting that I could create a manifest and embed it using mt.exe. However, whenever I attempt to add this manifest, it appears to wipe...
  18. steve4king

    How to allow a window to be dragged without a title bar

    I'm sure this has come up before.. but not finding any clues about this. Using a title bar for child windows in an application is a very outdated look. However, once removed it's not possible for the user to relocate the window without stretching it around. I expect there is a neat little hack...
  19. steve4king

    Coloring themed grid headers

    I've seen several posts about having no control over themed headers. So far people just say, "OK turned of themes and it works now." Problem is.. that's not good enough. Using this solution the grid will look flat and outdated. The only solution I can think of is a semi-transparent overlay...
  20. steve4king

    Limitations of rushmore in sql style queries

    This is mostly an academic question as my application serves it's purpose fast enough.. I'm doing a process to kill some sensitive data that we don't need. One of the fields I just shrink, truncating the bad data before updating. Next: Wait Window "This may take a few minutes - TRANLOG Step...

Part and Inventory Search

Back
Top