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 Chriss Miller 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: Mike555
  • Content: Threads
  • Order by date
  1. Mike555

    Problem w/ Culture in System.Globalization

    In one of my asp.net sites, I set the thread culture equal to the language specified in a user's browser. The code I use to achieve this is pretty lengthy, but in a nutshell if the user's browser language is English-US, the thread culture equals 'en-us'. Periodically users will report errors...
  2. Mike555

    Duplicate Assemblies in the GAC (server vs. localhost)

    I have an assembly named AccountingLogic.dll which is referenced by over 15 different ASP.NET applications. On my production server that runs all the .NET apps, there are multiple versions of this assembly in the GAC, all with the same Public Key Token. My older sites are using older versions...
  3. Mike555

    Execute VB.NET Function from JavaScript Function

    I'm trying to build a javascript function which executes an existing vb.net function in the current page. I can't find any examples of how to do this, so I'm totally stuck. Could someone please give me some advise on how to accomplish this? <script language="JavaScript">...
  4. Mike555

    Assign variable value based on textbox value

    I'm trying to set a javascript variable equal to a label value in an asp.net page. This is what I currently have, but it doesn't work. Could someone please let me know what I'm doing wrong? Thanks. variable="document.findcontrol(lblBrand).text";
  5. Mike555

    Simple IF/ELSE javascript help

    Hi. I'm trying to set a javascript variable named tire_type equal to a vb.net variable named TireBrand. TireBrand is a PUBLIC variable in the code-behind. As you can see I'm trying to set tire_type = "AfterMarket" if the TireBrand varible is Null. However, I keep getting the error "Name...
  6. Mike555

    Can I Dynamically Modify a Remote View's Sort?

    Hi. I have a Remote View in VFP that does not have a SORT BY clause. However, I want to apply a SORT BY clause at runtime. Basically each time I call the remote view I'd like to 'pass in' a SORT BY clause. This would allow the view to dynamically sort based on the current situation. Is this...
  7. Mike555

    Upsizing an Index

    I'm in the process of converting several Visual FoxPro 6.0 databases to SQL Server. Table indexes in VFP can be expressions. For example - I have a VFP table with an index expression as follows... Location+DTOS(StartDate) But you can't create indexed expressions such as this in SQL Server...
  8. Mike555

    VFP String Builder

    Hi. I'm trying to build a simple string in VFP, and I'm receiving the error "Operator/Operand type mismatch". Here's what I'm doing... MSG = "Note: This item is deleted as of " + DATETIME() + "." It's seems pretty simple, but I can't figure out what I'm doing wrong :( Thanks.
  9. Mike555

    What is PICTURE &quot;999999.99&quot;?

    I'm working with a VFP6 report which contains several instances of code that looks like this... ?? variablename PICTURE "999999.99" What exactly does the 'PICTURE' command do here? I've tried searching but came up with nothing. Thanks.
  10. Mike555

    INSERT INTO from SELECT Values

    I'm trying to use the VFP Command Window to insert data from one table to another. Each time I try this I get a "syntax error" error message. Both tables reside in the same directory. First I use the USE command to specify that I want to use both tables. Then I run this statement: INSERT...
  11. Mike555

    What is the .Module Property/Method?

    I have an application using a form named mo_main3 and a table named mo_main3. In the code for the form I have a button click event that looks like this... cmd = "" cmd = ALLTRIM(mo_main3.module) I'm not sure what the .module method/property is. Could someone please explain to me what...
  12. Mike555

    Simply Compile Command Window

    I have a query, written in the command window, which I need to run at multiple client locations. What is the simplest way to basically make this query compactable so I can burn it to a CD take it with me? For example, Could I compile the command window somehow and create a file which I can...
  13. Mike555

    USE statement + Relative Positioning

    I'm not too fluent in FoxPro, and seem to have gotten stuck on this question: Is it possible to specify the path to a table using relative positioning (you know the ../../ stuff) instead of specifying a hard file path? So instead of having USE c:\folder\tablename I could use ..\..\tableName...
  14. Mike555

    How Accurate is the First Impression?

    I recently had 3 job interviews back-to-back and have subsequently received 3 job offers. I'm now trying to make a decision as to which offer to accept. This proved to be quite difficult, as I haven't switched jobs in some time. Surprisingly I'm considering accepting an offer from the company...
  15. Mike555

    Multiple Image Control

    I'm looking for an asp.net webform control which can display multiple images from either an xml or database source on the webform. Here's a perfect example of what I need it to look like... http://www.foxnews.com/story/0,2933,162584,00.html Notice the frame containing the tabs...
  16. Mike555

    Search Results Stays on Taskbar after Being Closed

    Whenever I open Start > Search and then close it, the Search Results window stays on the Taskbar for an additional 10-15 seconds before disappearing. This also occurs on other workstations in my network. Everyone is running WindowsXPSP2 with the latest updates, etc. Can anyone tell me how to...
  17. Mike555

    Can I use a CSS to Standardize this?

    If this is the wrong forum for this question please advise. I'm a programmer who's slowly learning the art of web design. As such I have a question which probably has a relatively simple solution. On each webform in my asp.net project I have the following HTML... <a href="default.aspx"...
  18. Mike555

    Null Dataset Row Produces System.IndexOutOfRangeException

    I have a dataset which contains between 1-70 records. I also dimension 70 string variables which hold the "BundleID" value from each record. If I have 8 records in the dataset, the first 8 string variables will populate successfully, but then I get the following error on #9...
  19. Mike555

    Connect to Win2k Server via Remote Web Workplace

    This seems like a very simple question, but I have been unable to find a simple answer. I have 2 servers: 1 SBS2k3 Server & 1 Win2k Member Server. When connecting to my SBS2k3 server and launching Remote Web Workplace to connect to other computers, I am unable to connect to the Win2k Member...
  20. Mike555

    Telnet Error when connecting to Spectrum24-based network

    Hi. I have a Spectrum24-based network comprised of 2 WAP, 2 Symbol PDT8100 handheld scanners, and a Wavelink Studio COM application which the scanners connect to. There are periods of time where users attempt to connect to the Wavelink host and receive an error dialog titled 'Telnet' w/the...

Part and Inventory Search

Back
Top