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

    Ajax Controls Doesn't Work

    I installed Ajax Control Extensions in my visual studio 2005 IDE. When I create a new Web site, all controls work perfect. I have a couple of Web sites already working. I'm trying to use Ajax controls in those pages but any control work in those aspx pages. I tryed on Windows XP and Vista...
  2. jpreciado

    Get axSpreadSheet Cells values

    I need to asign a Cell value to a variable but what is asigned is the object's name instead of the cell's value. here is the code: string MyValue = axSpreadSheet1.Cells[1,1].ToString(); this works though: axSpreadSheet1.Cells[iRow,iCol] = "HELLO";
  3. jpreciado

    Place Windows Control Library Outside the Form

    I Created a Windows Control Library which I need to use it in a project but I like to place it outside the form I'm working with. Just as the tooltip, and some other controls placed below the form in design mode Thanks in advanced
  4. jpreciado

    User Defined Control's property with a list of posible values

    I need to know how to create a User Defined Control where I can set a property from a combo box from a list of posible values when it is used in a project. thanks in advanced
  5. jpreciado

    Not showing Form Icon in Windows ToolBar

    I have an application with multiple modaless Forms I have as many as 6 forms opened at the same time. I need to hide some of the form Icons shown in status bar. Thanks in advanced.
  6. jpreciado

    Convert Control to specific object

    I'm trying to get all Controls in a form. If it is a specific type of Control, I need to convert it to that type so I can change some properties. thanks in advanced. here is the code: public class Enable_Disable { public void ChangeProperties(Form myform) { foreach (Control c in...
  7. jpreciado

    SQL Server 2005 asign permissions to users

    I'm trying to asign permissions to users on tables. I've been using Querys like: DENY DELETE ON [Schema].[Table] TO [User Name] GO Then the "Query Excecuted Succesfully" is shown. When the user not allowed to delete is connected. He can Delete! Rows from the table he is supoused not allowed...
  8. jpreciado

    Open Excel File

    I created a programa in a computer where I can open an Excel File everything works fine. In another computer, I'm trying to create another program but it can't open an Excel File. In toolbox I verified if Excel component was installed but it was not listed. I uninstalled MS Office and...
  9. jpreciado

    Create .Exe File

    IT WORKS FINE!!!! Sorry I hadn't clicked Reset Thank you very much
  10. jpreciado

    Create .Exe File

    Tool bar is selected. I've profesional edition and I've been created Exe files for months. Now only create Exe file option is disabled.
  11. jpreciado

    Create .Exe File

    The create Exe file in IDE's File menu is disabled. How can I enable this option? Thanks in advanced
  12. jpreciado

    MessageBox.Show Doesn't Show text message

    Sometimes When Using MessageBox Object it doesn't show the text in the message window. I can see buttons and Icon but not the text message It supouse to show. How can it be fixed? Thanks in advanced.
  13. jpreciado

    JustifyText in a DataGrid

    I´m trying to Right-Align a Text of a specific column in a DataGrid using c#. Thanks in Advanced
  14. jpreciado

    Show Database table Items in DataGrid

    I'm new in c#. I have a DataGrid bounded to a DataSet. Everything works fine but I have to click first A PLUS SIGN AND THEN A table link to view the data. Whow can I do to let the DataGrid shows directly the DataSet contents without clicking the plus sign and the table link?
  15. jpreciado

    Change the properties of controls from another form

    In C#, I need to change the properties of controls on another form. For example, with a label control on Form 1, how can I change its text property from Form 2?
  16. jpreciado

    visual basic 6.0 and spywares

    After Using Visual basic for years, it came the day I cluldn't open any form that contained at least one common control in it (forms with OCX controls could be opened). For a long period of time I searched what has happened. I was at the point to format and reinstall everything when I Installed...
  17. jpreciado

    Can't Open Forms With Standar Controls in it

    Im using Visual Basic 6.0. I cannot open forms in design mode if they have some standard controls like Label, TextBox, CheckBox, Image. A form can be opened in design mode if it has some other standar controls like Frame, Command button, Picturebox as well as all active X (OCX files). I...
  18. jpreciado

    Can't Open forms (frm Files)

    I can open the code of any form but I can't open its design. It happens in any project is already built. New Projects work fine. I uninstalled VB 6 and reinstalled it but it didn't work. I copied some of the projects to another computer and it worked fine in the other one. ¿Does anyone know...
  19. jpreciado

    How to Get NetWork Users or PC's names

    How can I get the users logged in to a network or PC's names attached to it?. I 've been tried with winmgmts Object but I could'nt find how to get logged users or computer names from it this code but I Thanks in advance.
  20. jpreciado

    FlexGrid MultiLine Cell

    FlexGrid.TextMatrix(X,Y) = "string1" & vbCrLf & string2 doesn't work. thanks

Part and Inventory Search

Back
Top