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 Chriss Miller 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: ZmrAbdulla
  • Content: Threads
  • Order by date
  1. ZmrAbdulla

    HTA vs HTML

    I am trying to create an xml file through the details entered in the fields in an HTML page using vbscript. It works as I required with a small problem. If I execute an HTA file then the errorchecking is done, not when the script is executed from an html page. Error cheking code is below If...
  2. ZmrAbdulla

    Nokia messages to MS Access

    Not sure if this is to be done with MS Access.. One of my client requires to connect his nokia phone to PC and recieve messages to MS Access DB or compare the messages to records of the DB. It should be done automatically. Is there anything I can look into? Nokia PC suit may be used with this...
  3. ZmrAbdulla

    Emailing via Outlook & vb.net

    Seen many snippets to send mails from vb.net via outlook. All of them required to set reference to installed Outlook library. I am not sure my client will have the same library that I have(Suppose I have 11.0 and client maybe having 9.0). Will it work? or is there any other way? Is there any...
  4. ZmrAbdulla

    OleDbSchema ... Possible to get type of "View/Query" ?

    I am trying to get details of an Access DB thorugh "OleDbSchema". DB_Connection.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, _ New Object() {Nothing, Nothing, Nothing, "VIEW"}) Is that possible to get type of Query(View) through this? I need to know what type of query is that...
  5. ZmrAbdulla

    Time validation in maskedTextbox

    How can I validate input of maskedtextbox with time value? masking style is __:__ I need to use Military Time (24hr format) ________________________________________________________ Zameer Abdulla Help to find Missing people
  6. ZmrAbdulla

    Data Access Class programming

    Can anyone explain please.. If I have a Class like below Imports System.Data Imports System.Data.OleDb Public Class Categories #Region "Declarations" Private _CategoryID As Integer Private _CategoryName As String Private _Description As String #End Region #Region "Properties" Public...
  7. ZmrAbdulla

    Restart an application

    My application requires a restart at a certain point. I was trying like this Private Sub LogOutToolStripMenuItem_Click.......... If MessageBox.Show("Please confirm log out", "Confirm", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) = Windows.Forms.DialogResult.OK Then...
  8. ZmrAbdulla

    AccessDataSource not refreshing..

    I have a datalist populated from an "AccessDataSource". It should pick a random record. If I run the query itself it works fine as it should be. But when populates it brings up only the same record. SQL of it is SELECT TOP 1 Rnd([RecID]) AS Rec , tblProverbs.Proverb , tblProverbs.Source...
  9. ZmrAbdulla

    ListBox Flickering on Menu Mouse Hover

    ListBox that is databound from an Access DB is flickering when mouse hover on menu. Is there any way that I can stop flickering it? Menu is on the MasterPage and Listbox is on Content Page. ________________________________________________________ Zameer Abdulla Help to find Missing people...
  10. ZmrAbdulla

    Record MachineName & PageTitle to db

    I need to record MachineName and PageTitle to DB for a survey purpose. ASPX pages used in our intranet. What is the best way to do that? Dim Machine_Name As String = System.Environment.MachineName Dim Page_Title As String = Page.Title These informations I need to record. OnLoad Event I am...
  11. ZmrAbdulla

    Conditional formatting in GridView

    In Datagrid I have a simple procedure to bold entire row like below. Protected Sub DataGrid1_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) If (e.Item.Cells(6).Text = "Yes") Then e.Item.Cells(0).Font.Bold = True...
  12. ZmrAbdulla

    How do you get DataGrid.SelectedItem.Text value

    I have a datagrid shows list of employees. SL/No EmpName Extension ..... ....... .......... I want to click on the "EmpName" to redirect the page to the details of selected employee. The redirecting part is OK for me. But I don't know how to get the selected name value. What I will...
  13. ZmrAbdulla

    Response.Redirect; string truncates at "&"

    I have a page redirect from a linkbutton like below. Protected Sub LinkButton1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Dim Comp As String = Me.ListBox1.SelectedValue.ToString Dim Dept As String = Me.ListBox2.SelectedValue.ToString...
  14. ZmrAbdulla

    Drag & drop Tables to forms from Data Sources

    I remember it was possible to drag & drop tables from Data Sources /Database Explorer(Server Explorer) on to the form to create GUI easily. Now I am not able to do that. Now the Data Sources tab grays out when I am in form design. Any one has a clue...
  15. ZmrAbdulla

    Error locating SQL Server

    I am getting a message like below when I am trying to connect with SQL Server Express 2005. I am using SQL Server CTP. ========================================================= TITLE: Browse Server for Database ------------------------------ An error has occurred while establishing a connection...
  16. ZmrAbdulla

    Hyperlink in detailsview?

    Is that possible to create a hyperlink in the "DetailsView"? My aspx page shows the details of employee including email id. Now it displays as text without hyperlink. I need it to be displayed as hyperlink for user to click on the mail id to open their default email client. thanks...
  17. ZmrAbdulla

    Return All if parameter is null

    This must be covered earlier.. Please direct me if there is one. I have a "view" like below. SELECT EmployeeName FROM tblEmployees WHERE (EmployeeName LIKE '%' + @EmployeeName + '%')ORDER BY EmployeeName The Parmeter is taken from an asp.net page textbox. If nothing entered...
  18. ZmrAbdulla

    SQL Server or SQL Server database file?

    Using SQL Server 2005 Express Visual Web Developer 2005 Express ============================= I have created some aspx pages to use them in a network in our office. I need to use SQL Server as data provider. I am working from a machine where "SQL Server Express" installed. Later I need to...
  19. ZmrAbdulla

    DetailsView row label text align = right ?

    Is that possible to align the field captions to right in a detailsview? Now it looks like EmployeeName Zameer Abdulla Extension 121 Direct 04-3146121 Mobile 66666666 SpeedDial 7733 need to change like EmployeeName Zameer Abdulla Extension 121 Direct...
  20. ZmrAbdulla

    Synchronize textbox & listbox

    Redirected from thread855-1294393. Thanks for any help. ________________________________________________________ Zameer Abdulla Help to find Missing people Sharp acids corrode their own containers.

Part and Inventory Search

Back
Top