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 Wanet Telecoms Ltd 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: mjk9564
  • Content: Threads
  • Order by date
  1. mjk9564

    Allow others to edit a profile property in SharePoint 2010

    I have been asked to allow users to edit a custom Property we created in SharePoint called Extension. Is this possible to do w/o giving them access to the "Manage User Profile" section in the Central Admin? Any help would be appreciated?
  2. mjk9564

    Combobox displays off screen

    Is there a dropdownposition property or something you can set so the combobox's dropdownlist will not display off screen when it is displayed on the right of the screen?
  3. mjk9564

    Case Statement in Where Clause

    Can anyone tell me the correct syntax to do this or even if it will work. I'm using SQL Server 2005. It compiles but when it runs I get this error: "Msg 512, Level 16, State 1, Line 2 Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , >, >= or...
  4. mjk9564

    Checkbox inside a combobox

    I'm looking for a checkcombobox for VB.NET 2005. Does anyone know of a control or how to add this functionality to a combobox?
  5. mjk9564

    Imagelist Brings In Image at Wrong Size

    I'm using VB.NET 2005 and am having troubles loading my images into my imagelist. Even though I set the size to 16x16 when I import the images they always come in as 32x32. The icons do have different sizes saved inside them and the only way I can get the 16x16 to show up is if I delete all...
  6. mjk9564

    Set Combobox Height

    Is there a way to change the height of a combobox w/o adjusting the font? I'm looking to create a custom combobox and would like to adjust its height. Thanks! Matt
  7. mjk9564

    Can I store VB Code in a Database field and then run it in VB.NET

    What I want to do is store vb code in a database field and depending on what the user selects from a combobox run the code. They call this Macro Substitution in Visual FoxPro. Example dim strCommand as String = database.fieldname.tostring() &strCommand 'This would be visual foxpro way...
  8. mjk9564

    Using SSIS to convert VFP table to SQL Server

    I’m trying to use SSIS to convert Foxpro to SQL Server. I have an ADO connection setup and a Data Reader reading the VFP data and a Data Conversion object to set all the data to the correct data types. The problem I’m having is with Memo fields they all are set to Null in SQL Server. When I use...
  9. mjk9564

    Get Process Username

    I'm writing code to shutdown a process in a Terminal Service Environment and I'm running into the problem that it shuts down that process for all users. I know the user that is trying to shutdown the process now I need to find out the username for each process. Here is the code I'm currently...
  10. mjk9564

    Help with Interoperability VB.NET 2005 DLL.

    I created a dll in VB.NET 2005 and I’m trying to access it in FoxPro 9. This works fine on the development machine, but after I register it on the test machine I get errors saying the file cannot be found. After doing some research I found out that the development machine has a CodeBase registry...
  11. mjk9564

    The Grid Control's Delete Mark In FoxPro 9 doesn't work.

    We are trying to upgrade to FoxPro 9 Service Pack 1 from FoxPro 8 and we have noticed that the delete mark on our grids can no longer be clicked. We have several grid controls that are bound to a cursor and the users can delete the records by clicking the delete mark on the grid. Now when the...
  12. mjk9564

    Shutdown a Windows Server 2003 Service

    There are couple services on one of my servers that I'm required to shutdown frequently I am wanting to automate this. Is there a way that I can shutdown a service that is running through code? Thanks! Matt
  13. mjk9564

    Compile a Access Project to an exe

    Is it possible to compile an Access project into some sort of an exe file so that you only need runtime files on a machine to run it not access? I'm trying to compile Access 2003 if it is possible so I don't have to have a Access license for each machine that will use it. Thanks!
  14. mjk9564

    VB Programmer Trying To Learn VFP

    I am new to Visual Fox Pro like right now new. I just started a new job as VB programmer, but there is a old system in VFP that they want me to learn. I was wondering if any of you know any good books and sites that would be helpful in relating my VB knowledge to VFP. Thanks Matt
  15. mjk9564

    System Tray Icon with a number

    How can you create a system tray icon that is just a number or a picture with a number on top of it? Like you see in a lot of RAM programs or in weather bug. I know how to create the system tray icon, but I was hoping for an easier way to this other than creating a different icon for every...
  16. mjk9564

    Detect Busy Signal

    Does anyone know how you can detect a busy signal with an mscomm control or of another control you can use in VB to make phone calls and detect busies? I haven't used the comm control to often, but I believe this should be possible with it.
  17. mjk9564

    Get object Type

    I'm trying to get an object type. In VB.Net you can get the type, but what about in VB6. I would use type name, but it only returns the name of the control. I'm passing a form as an object to my error handler dll. I can't pass a form because it is private and the COM is public. Any help would...
  18. mjk9564

    Print horizontal instead of vertical

    I'm trying to print one record horizontally instead of vertically in the detail section. Does anyone know how I can do this? Example: It currently prints out, for each record field-1 field-1 field-1 I want to print the records horizontally. field-1 field-1 field-1
  19. mjk9564

    Query a Recordset

    Is it possible to query a recordset? I have a query that I need limit the results on. Maybe you can think of another way to do it. Dim rsLimit As New ADODB.Recordset Dim rslimit2 As New ADODB.Recordset Dim strSQLLimit As String Dim strSQLPass As String 'Limit the results with the...
  20. mjk9564

    For loop with controls

    What I'm trying do is write a For Next Loop that will allow me increment a label name by one each time it goes through the loop. I have 14 labels all named the same except for the last digit. I don't know what I would even search for and am not sure if it is possible here is an example of what I...

Part and Inventory Search

Back
Top