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

    JavaScript in ASP.NET!

    I have added a text box called "Email" and also I have two different check boxes are there. It is called supervisor and users. If I click the supervisor check box, I just want to add a email id in the text box. If I click the second users check box, I want to add multiple email ids on...
  2. z07924

    Logon failed error in Crystal Report

    It is basically an excape character. It doesn't matter. Anyway I tried that. It doesn't work out for me. Is there any other way to resolve this problem? I would highly appriciate any help. Thanks in Advance.
  3. z07924

    Logon failed error in Crystal Report

    Logon failed. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: CrystalDecisions.CrystalReports.Engine.LogOnException: Logon...
  4. z07924

    convert WORD to excel

    Is there a way to convert word document to excel? thanks.
  5. z07924

    Random Password generation using C#.NET

    // Random Password Generation VB.NET Randomize() whatsNext = Int((1 - 0 + 1) * Rnd() + 0) strNewPass = strNewPass & Chr(Int((upper - lower + 1) * Rnd() + lower)) The above two lines are in visual basic.net. I have converted the above lines to C#.NET. It is given below. C#.NET Random...
  6. z07924

    Password generation using C#.NET

    Thanks a lot. I am looking into it. This will definitly help me out.
  7. z07924

    Password generation using C#.NET

    How to generate random password with some charcters and numbers using C#.NET?. Is there any resource out there?. If anyone knows, pls let me know. Thanks in Advance.
  8. z07924

    Create Excel File

    If anybody knows, Is the same examples are available in C#.NET?. I am trying to use the same using C#.Net. Please give me some suggestion on this. Thanks in Advance.
  9. z07924

    Mouse Pointer state to Hourglass using web forms!

    I want to change the mouse pointer to Busy state(hour glass) during some process on a web forms(asp.net with c#). Please give me some suggestion and ideas on this.. Thanks in Advance.
  10. z07924

    Programmatically move datas to excel spread sheet!

    I have web page with some date options and commmand buttons. If I click the preview command button , It will generate data on crystal report. Also I have excel command button on the web page. If I click the excel command button, I want to move all datas to excel spread sheet. I am for sure, It...
  11. z07924

    Dropdown Control is not showing up on the design mode!

    I have already tried it. It doesn't help me out. I don't know, Is there any other way to solve this problem?.
  12. z07924

    Dropdown Control is not showing up on the design mode!

    I designed a in ASP.NET. It has some dropdown boxes and text boxes. Somehow I had moved the dropdown box. It is not showing up in the design screen. But If I run the form, I can see that dropdown box. BAsically my questions is here, Why it is not showing up in the design mode rather it is...
  13. z07924

    Database connection error!

    What is that for frontpage extensions?. Instead of giving Server.MapPath("fpdb\Sites.mdb;"), I gave direct path here. Does it cause anything?. Give me your suggestion.. Thanks in Advance.
  14. z07924

    Database connection error!

    private void LoginBtn_Click(object sender, System.Web.UI.ImageClickEventArgs e) { string strDSN = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\\\\Paragon\\databases\\Super_6\\Test\\ParaNet\\sl_new.mdb"; string strSQL = "SELECT RepName, Password, Email FROM Passwords WHERE...
  15. z07924

    Database connection error!

    Oops. The error: The Microsoft Jet database engine cannot open the file '\\Paragon\databases\Super_6\Test\ParaNet\sl_new.mdb'. It is already opened exclusively by another user, or you need permission to view its data. Even If nobody open the database also, I am getting the above error. For...
  16. z07924

    C# syntax for declaring a variable!

    Anyway Thanks, I have already found it.
  17. z07924

    C# syntax for declaring a variable!

    Dim li As New ListItem("Not Selected", "0") dlAccessType.Items.Insert(0, li) The above code is in VB.NET, I want to change the samthing in C#.NET. I don't know how to declare the li variable using C#. If anybody knows, let me know. Thanks in Advance.
  18. z07924

    Object reference not set to an instance of an object

    private void dlUserName_SelectedIndexChanged(object sender, System.EventArgs e) { lblOpDesc.Text = "" + Session["gUserID"] + ""; string varUserName = dlUserName.SelectedItem.Value; string strDSNUserID = "Provider=Microsoft.Jet.OLEDB.4.0;Data...
  19. z07924

    Disable Insert/Delete rows

    I tried that. But didn't work. Once I set the Sheet protection I am not able to insert rows anywhere in the sheet...

Part and Inventory Search

Back
Top