Software Development Network Logo
  • Visual Basic
  • Visual Studio
  • Microsoft ISV
  • IE Development
  • SharePoint Products
  • Smart Devicet
  • Audio and Video
  • Visual C#
  • Visual C++
  • .NET Development
  • SQL Server
  • Windows Vista
  • VS Team System
  • Game Technologies
  • Windows Forms

Software Development Network >> Trevor E Hilder's Q&A profile

Trevor E Hilder

Member List

v_praveen
VisualDragon
Rups11
Gabriel Vila
subhasam
sathishraj
remedios_
alexsk8
TICarson
lsb_lsb
ShEi
jackinthegreen
James_Steven
billqu
Milos Kompjuteras
DSent
Trent Saunders
Deanrm
TA123
Barry Kwok
Only Title

Trevor E Hilder's Q&A profile

  • Windows Forms How dos tooltip works

    Hi Noamlly i use msgbox to tell something about the field the user shall write somethning about in Can i use tolltip her Or something else Alvin not sure I follow. If I understand correctly, you wish to set tooltip text for a control, such as a textbox, to notify the user on what they need to type/helpful hints correct if so then try this: in the textbox mouseHover event, create a tooltip which will show the tooltip on the textbox. So once this event has been implemented then use the tooltip object to show the tooltip text: Dim theToolTip as new ToolTip() theToolTip.SetToolTip(Me.theTextBox, " your tooltip text here ") does this help ...Show All

  • Visual Basic IDE Commands documentation

    Is there any documentation that explains what each command, available in the IDE, does I haven't had any luck finding any. Thanks, Allen I'm not asking about documentation for controls. I'm asking about documentation about the commands that can be added to the IDE toolbar or menu. Within the IDE go to Tools/Customize/Command tab. Those are the commands I'm asking about. Thanks, Allen ...Show All

  • Visual Studio Express Editions Textbox Display web browser's URL

    I would like to know how to make my ToolStripTextBox1 display the URL of WebBrowser1. I want it to display the URL of each new page WebBrowser1 loads. Thank You. Private Sub webBrowser1_Navigated( ByVal sender As Object , _ ByVal e As WebBrowserNavigatedEventArgs) Handles WebBrowser1.Navigated textbox1.Text = WebBrowser1.Url.ToString() End Sub Private Sub Navigate( ByVal address As String ) If String .IsNullOrEmpty(address) Then Return If address.Equals( "about:blank" ) Then Return If Not address.StartsWith( "http://" ) Then address = "http://" & address End If Try WebBrowser1.Navigate( New Uri(addre ...Show All

  • Visual Studio Team System In VSTS, how to modify the version of the reference in webproject by asp.net2.0 designed

    1- From the Start menu, choose All Programs a Microsoft Visual Studio 2005 a Microsoft Visual Studio 2005 2- From within Visual Studio, choose File a Open a WebProject … . Then Open a webproject in VSTS. 3- Right click on the project, and choose P roperty Page, display the property windows 4-Choose Reference, I find that some versions of references are auto-update. 5-If the versions of reference is auto-update, In my project,the reference dll will has a refresh file. In my vsts, the refresh file is checking but my reference dll is not checkin 6-The other workmember will not find the reference dll ifrom our vsts Why How can I do Who can help me How can I modify the version of th ...Show All

  • Microsoft ISV Community Center Forums Argument syntax problem

    I have a problem with the syntax of my code. I first have a loop that checks if an object in the selection is a chart. If it is a chart then it passes that chart on to a sub as an argument. In that sub changes are made to the chart in therms of style, size etc. My code: Sub arrayLoop() Dim obj As Object For Each obj In Selection If TypeName(obj) = "ChartObject" Then Call linjeDiagramKnapp(obj.Chart) End If Next End Sub Sub linjeDiagramKnapp(argChart As Object) Dim mySize As Double With argChart.Chart .ApplyCustomType ChartType:=xlUserDefined,TypeName:="Standard" With argChart.Chart .Height = 150 .Width = 150 .Top = 100 .Left = 100 End With My problem is that I do not know how to write the part of the code referring ...Show All

  • SQL Server Sql 2k5 INSTALLED ON THE SERVER

    Hi All, My program is written in VB.NET and the DB is SQL 2005 Ex Ed. I have installed both, the SQL SERVER 2005 and my program on the SERVER. But when I try to run my program I get the following error mssg: The application attempted to perform an operation not allowed by the security policy. The operation required the SecurityExceptio. To grant this application the required permission please contact your Systems administrator, or use the Microsoft .Net security policy administration tool. If you click continue...... Request for the permission of type System.Data.SqlClient.SqlClientPermission. System Data, Version = 1.0.5000.0 = neutral. PublicKey Token = b77a5c561934e089 failed. My Systems administrator says I have got full control of the ...Show All

  • Windows Forms Capturing events in an ActiveX Controls...

    Hi All, Is it possible to capture events of an Active-X Control in an HTML page, similarly to the onclick, onMouseOver events which we do for a HTM textBox etc. I need to capture an event from a Card Reader, and then parse the Card Track Data and fill my HTML TextBoxes. I would prefer to point the CarddataChanged event, in my object tag to a javascript which will populate my Textboxes. What should I do to have this kind of a functionality. What are the things which i need to keep in mind when I build my Active-X Control. Please Help, Thanks In Advance, Joe. Guys, I found it, we just need to set some properties in the activex control which we develope and then access them in our web page using jav ...Show All

  • .NET Development Is there any way to tell if a Process has been Killed?

    If I've got a Process object, is there any way to tell whether it exited normally or was Killed ( I believe the answer to my question is "no", but just wanted to verify that.) Thanks...Rick I haven't tried this.. but one thing you might do is to inherit from the Process Class and add a new Property called WasKilled. Override or create a new Kill method for this object and set the wakilled value to true Public Class ProcessEX Inherits System.Diagnostics.Process Private _waskilled As Boolean Public Readonly Property WasKilled As Boolean Get Return _waskilled End Get End Property Public Sub KillMe() Mybase.Kill() _waskilled = true End Sub ...Show All

  • Software Development for Windows Vista Windows workflow foundation version 3.0.4203.2

    Hi, Can anybody please send me the installer link for Windows workflow foundation version 3.0.4203.2. I require that to install sharepoint server 2007.Thanks in advance for your help You can find the Pre-released Microsoft .NET Framework 3.0 Uninstall Tool here: http://www.microsoft.com/downloads/details.aspx FamilyId=AAE7FC63-D405-4E13-909F-E85AA9E66146&displaylang=en Maurice ...Show All

  • SQL Server Conversion fails. Please analyze error msg.

    Msg 245, Level 16, State 1, Procedure CompactL1RecordsFromfirstINTRAD, Line 177 Conversion failed when converting the varchar value 'DECLARE rows_cursor CURSOR FOR SELECT ask, dateTimed FROM iDay_Compr_GOOG WHERE DAY (dateTimed) = ' to data type int. I get this message while executing a stored procedure. It works "half way" but skips this statement and the whole block as a result. In the table @table_name ask is declared as float and dateTimed as DateTime. Similar statements work happily in other stored procedures with no problem. Even in the same stored procedure I have places where I use DAY (dateTimed) and they seem to work as far as I can see although it is a very branched out code with many IF ... ELSE's. SET @SQL = 'D ...Show All

  • Smart Device Development login screen acting as a spash screen

    I am having some issues with my login form. Its acting like a spash screen where it stays on only for a few seconds until my program loads and then closes. I have made sure that I created the login form with the template and checked my code, but it shouldnt be that difficult! Help! Yup. I tried getting rid of the me.hide and that screen still just shows up for a minute and then disappears like a splash screen...ARGH!!! Its making me so angry!! ...Show All

  • Visual Studio Changing devenv.exe.config for AddIn purposes

    Hi! We have VS2005 AddIn that connects to the web services published on the remote server. As a result of different time zones, the clients usually get the following error: Microsoft.Web.Services2.Security.SecurityFault: Message Expired ---> System.Exception: At least one timestamp has expired. The known solution for this issue is adding timeToleranceInSeconds property to the app.config. This is the code:    <microsoft.web.services2>     <security>       <timeToleranceInSeconds>86400</timeToleranceInSeconds>     </security>   </microsoft.web.services2> However, it should be added not to the AddIn config file, but to devenv ...Show All

  • .NET Development Rename Folder in Sharepoint 2003 document library

    I need help to rename the folder in Sharepoint 2003 document library. I tried to use the SPFolder object, but all the properties are ready-only. Any suggestions Thanks This forum does not have the Sharepoint 2003 expertise. You might try: http://msdn.microsoft.com/office/server/moss/community/ Best Regards, Aaronru ...Show All

  • SQL Server Aggregete() function doesn't work for SQL query results! - Part 2

    I am writing my own MDX query inside Reporting Services, bypassing the graphic MDX generator. Both MDX query and SQL query return identical results and both have detail level values and high level values. During the flattenning process, null value from MDX is still null, but null value from SQL is translated into blank. Thus only the MDX result works for Aggregate() function, not the SQL result. Because Aggregate() function is triggered by null value, not blank. Someone suggested to use MDX stored procedure to do custom calculations. Thus my report is calling a MDX query, not a SQL query. I have tried this approach already, but MDX is not as flexible as SQL. For example, in SQL, I can easily join, pivot, order by, group by, fil ...Show All

  • Windows Forms Disable TreeView node selection?

    Hi, I have a requirement where the treeview needs to get populated in a readonly mode. I tried using treeview.Enabled = false but it also freezes the scrollbar. The user should be able to navigate through the treeview using scrollbar but it should not allow node selection. How can I do this Please help.... Thanks in advance, Narendra. Hi Narendra The easiest way is in the AfterSelect event of the treeview, unselect the node if in read only mode. This causes a tiny little flicker but gets it done. HTH ...Show All

©2008 Software Development Network