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 SkipVought 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: RBCDS
  • Order by date
  1. RBCDS

    Rendering the SliderExtender

    I have a ajaxControlToolkit Slider extender i am using and i would like to be able to render the sliders handle through javascript when i set it's value. My slider has two input controls that are decoupled from the slider - price: price is calculated based on a formula using the percent -...
  2. RBCDS

    SQL Server Registry Info

    Thanks Rick, There's a lot more control over what I want to do using sqldmo than going into the registry. Dan
  3. RBCDS

    SQL Server Registry Info

    I'm using ado.net and i need to create a connection wizard that will have drop-downs for all of the current sql server connection, and the related tables for the selected sql server. With this I will create my connection string. ConnString = "Data Source=SQLServer;" & _ "Initial...
  4. RBCDS

    Treeview Checked property won't check

    John, excellent post. That fixed up my problem right away. The only thing I had to add aside from the "Me.Show" was a "DoEvents" call to wait for the controls to be loaded. Thanks Dan If (blnValidateProfile(defMnu)) Then ' SET SELECTED MENUS CHECKED STATUS TO TRUE defMnu.Checked =...
  5. RBCDS

    Treeview Checked property won't check

    Gregoriw, have you had any luck with this issue? I am experiencing the same problem. The only twist is that I can select different user profiles on my form to repopulate the treeview. My code works fine when I call the populateTree() procedure after the form is opened but if I call the...
  6. RBCDS

    Call Modal form as Function

    vb5prgrmr: I like the way you went about this with the single line of code, it also allows it to be re-used as often as necessary. mattKnight: I did a few keyword searches and came up with your response from a post from before and ended up using the "property" method. It works nice. Thanks...
  7. RBCDS

    Call Modal form as Function

    I have an application that prompts users to save a profile as... What I would like is to call a function "saveAs()" that returns an ID value just as msgbox() returns a value. My Save As dialog is designed to look similar to a regular Save As dialog box except the items are populated from a SQL...
  8. RBCDS

    Default Form/Report Icons (Access 2000)

    I've searched around and I haven't found a way to change the default Access Icons found on forms or reports. I need to stop the confusion when multiple forms are open and the taskbar shows 5 of the same icon. Does anyone know how or if this is even posible? Dan
  9. RBCDS

    Auto Expand ComboBox Not Working

    I'm having the same problem you were describing. On my machine everthing works fine. Unfortunately on the persons PC next to me it fails. If I type in a value in the comboBox it doesn't work. If I select a value from the comboBoxes dropdown list it works. Strangely, Yesterday @ 5:00 everthing...
  10. RBCDS

    Link SQL Server tbl to mySQL Database

    Thanks guys, I've been getting the same result from every source I've been searching. Dan [pc3]
  11. RBCDS

    Link SQL Server tbl to mySQL Database

    Thanks for your post, I've been searching the web endlessly for a solution. Do you know of any reliable 3rd party vendors we should consider? Dan
  12. RBCDS

    Link SQL Server tbl to mySQL Database

    I have a SQL server database that contains an Employee table. Our client uses mySQL. Our client needs to link our Empoyee table to thier mySQL database. Does anyone know how to accomplish this task? Let me know if I'm not being descriptive enough. Thnx, Dan [pc3]
  13. RBCDS

    Copy File from local PC to web folder

    I don't have a semi-colon in my code I guess I typed that in the response from Java habits. I've gotten the code to work on my local machine but not to a web folder. Dan
  14. RBCDS

    Output a query to a text file

    Here's the easiest way. syntax: DoCmd.OutputTo objectType, [objectName], [Format], [newFile], [autoStart] example: DoCmd.OutputTo acQuery, "q_ClientName", "MS-DOSText(*.txt)", "c:\query.txt", True, "" Dan
  15. RBCDS

    Copy File from local PC to web folder

    I have a file on our network that needs to be posted to the web weekly. Does any know how I can do this through VBA code. Below is what I tried with no avail. Dim myFile As FileSystemObject Set myFile = CreateObject("Scripting.FileSystemObject") myFile.CopyFile...
  16. RBCDS

    Custom Msgbox

    Does anyone know how I can create a msgbox that displays my own button options. (ie. btn1 = add, btn2 = edit, btn3 = cancel) Thanks Dan
  17. RBCDS

    Generate a Random number between x and y

    Thanks, I really needed that for a sim I was working on. public double generate(int min, int max) { double rdmNo = Math.random() * (max - min) + min; return rdmNo; } Dan
  18. RBCDS

    Generate a Random number between x and y

    Does anyone know how to generate a random number that falls between a given range??? Dan
  19. RBCDS

    Link/Import Outlook Wizard Add-In

    Thanks alot, now I don't have to run this DB off of my workstation.
  20. RBCDS

    Link/Import Outlook Wizard Add-In

    A few months ago I downloaded an Add-In that Links MS Outlook with MS Access. I have built a database that requires this add-in. I have to share this database with others but I can't without the add-in. Does anyone know where I could find the add-in again. X-)

Part and Inventory Search

Back
Top