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

    Old Version Help

    rgbean, Thanks a bunch that worked perfectly. yes i am a VB guy by trade but can still hack up some VFP. -Bueller
  2. bueller

    Old Version Help

    Hi all, I have been trying to get this code below to compile or am open for a better method to do it with. I need to strip out illegal characters that users might enter into a textbox. I have a routine that should work but keeps error and i have no clue why. This is written in VFP 6. thanks in...
  3. bueller

    Checking variables containing nothing

    Hylsan, To do this use the is nothing command in the so it would look like this. if iVariable is Nothing then ... end if HTH, Bueller
  4. bueller

    Help setting the Width of a table cell.

    Francis, are you meaning that you want to format the cells within a datagrid? if so then what you need to do is to add a tablestyle to the datagrid and then you can set the width of each column. HTH, bueller
  5. bueller

    Insert not working properly on datagrid

    Jonathan, my first question is are you really using question marks in those fields? if so then try setting them to nothing or 0 or ''. Also what type of fields are they. HTH, bueller
  6. bueller

    add button to the Toolbox

    Bjorn, to add something to the toolbox right click on something in the toolbox then go down to customized toolbox. Here you can add in any stuff that you want to. HTH, bueller
  7. bueller

    Getting periodic "General network error"

    Hi, How are you guys connecting to the SQL serves. are you using a data adapter and sqlconnector or straight ADO. another thing to do is to see how are you connecting to sql server named pipes or tcp/ip. also make sure you are running the latest version of ado. HTH, bueller
  8. bueller

    ConnectionString Property not initialized

    Jonathan, not sure if this helps but encompass the select query in a string then just call the strin lstrsql = "SELECT COUNT(*) AS Expr1 FROM(tblCustomer)" & pstrSQL myCommand.CommandText = lstrsql hth, bueller
  9. bueller

    Can you downgrade a compiled app?

    tekhed, Here is a way to force it. i do not know if this works in 2003 but it should. <?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?> <configuration> <startup> <requiredRuntime version=&quot;v1.0.3705&quot; safemode=&quot;true&quot;/> </startup> </configuration> HTH...
  10. bueller

    DataBinding Question

    AkutaSame, No, i am saying that i believe it is easier to do it in code using ado instead of using the wizard since i have not done it using the wizard to generate the dataset/adapter/connection/etc. The way i have done my databinding is to do it all in code without any wizards. that way i can...
  11. bueller

    Can you downgrade a compiled app?

    tekhed, you can force the app to use the 1.0 dll's. Check in the app.config file. It does it by default vs 2002. if i find how to do it i will post it. HTH, Bueller
  12. bueller

    FileSystemWatcher &amp;quot;created&amp;quot; event won't fire as a service - HE

    Steve, I have been having the fun or getting windows services to run and do kinda what you want them to do. After much messing around i use a different method to do my windows services. I create a base class that has all of the onstart onstop,etc services commands then in he main service i...
  13. bueller

    How to get the logged in user?

    bigfoot, this is what i used to get logged in user and computer name works quick and easy. Public gstrUserName As String = System.Windows.Forms.SystemInformation.ComputerName.ToString & &quot;\&quot; & System.Windows.Forms.SystemInformation.UserName.ToString hth, Bueller
  14. bueller

    DataBinding Question

    AkutaSame. Have you tried removing all binding to the label withing code and then rebinding the data to it. i had a similar problem and that is all i had to do to get it working. HTH, bueller
  15. bueller

    ADO.NET(XML) Option Missing

    OrWolf, How much of the .Net compenents did you install. if you didnt install everything you dont always get those options. HTH, Bueller
  16. bueller

    Tab Control

    Manch, Are you using a dataset or connecting each thing to a datasource and retreiving the data. You could you a dataset that has multiple data tables in it then have each tab use a different data table within the dataset. or if it is driven off of one datatable then you can have each tab page...
  17. bueller

    Crystal Reports 9 and MYSQL

    IcTech, are you attaching directly to the DB or are you going thru a DSN. It might work if you go thru a DSN instead of direct connection to the database. HTH, Bueller
  18. bueller

    Connecting to Sybase

    Joe, My suggestion would be if you just need to grab a quick static recordset and then store it locally store it in a local XML file on the Pocket PC. It is easy to do with .NET. as long as the XML file is not to huge. HTH, Bueller
  19. bueller

    Editing a recordset

    Jamie, Is this a bound recordset or a disconnected recordset that is being displayed. The way i do it is i move the data into a dataset then work with it. HTH, Bueller
  20. bueller

    Panel refresh

    Hi, I have run into a weird problem with a panel on one of my forms. I have a sub that all it does it clear out the 10 texts boxes and inactivates them on the panel. i also have refresh button on the panel. Now when i call the sub from a button just sitting on the form it goes thru the steps of...

Part and Inventory Search

Back
Top