Search:

Type: Posts; User: gib65

Page 1 of 2 1 2

Search: Search took 0.05 seconds.

  1. Replies
    2
    Views
    641

    Re: formatting datetime as dd/MM/yy

    Thanks Wild Bill.
  2. Replies
    2
    Views
    641

    [RESOLVED] formatting datetime as dd/MM/yy

    Hello,

    I'm trying to format a date as dd/MM/yy and the FormatDateTime(...) function is not helping me. According to this link:

    http://www.w3schools.com/vbscript/func_formatdatetime.asp

    the...
  3. Replies
    2
    Views
    934

    Re: HTTP error 404 problem

    Solved it: needed to enable directory browsing.
  4. Replies
    2
    Views
    934

    HTTP error 404 problem

    Hello,

    This problem is more about webapp configuration and deployment, but I'm sure the problem has something to do with ASP.NET. Please go to http://www.mm-theory.com and observe the HTTP Error...
  5. Replies
    1
    Views
    1,045

    running service from command line

    Hello,

    I have a service programmed in VS that compiles as a dll. To run the service, I need to open VS and run it. Is there a way to run my dll from the command line (i.e. without having to open...
  6. Replies
    2
    Views
    1,667

    Re: image quality needs improvement

    Thanks x-ice,

    I found that adding this line solves half the problem:

    PdfExport.ImageQuality = ImageQuality.Highest;
  7. Replies
    2
    Views
    1,667

    image quality needs improvement

    Hello,

    I have an image that I would like to make more "crisp".

    The code (in C#) for producing the image looks like this:



    Bitmap bitmap = new Bitmap(rectangle.Width,...
  8. Re: how can i reposition control with relative coordinates

    Thanks for that AceInfinity,

    Sorry for not replying earlier but I got busy and forgot that I posted this.

    In any case, the problem is solved (not by me though so I'm not sure how it was solved).
  9. Replies
    1
    Views
    986

    Panel won't show up in UserControl

    Hello,

    I want to add a Panel to a UserControl but it's not showing up.

    Here's my code:

    Adding the UserControl (to another UserControl -- i.e. QuickStartControl):
  10. how can i reposition control with relative coordinates

    Hello,

    I have a container that has three panels in it: HeaderPanel, ControlPanel, ButtonPanel. They are all vertically aligned in that order.


    I'm having trouble repositioning the...
  11. Replies
    4
    Views
    4,893

    Re: can't send email

    Yes, you're right. Both SMTP server names I was trying are internal servers (i.e. they are accessable only to computers running on the same networks they run on). I finally fixed the problem.
  12. Replies
    4
    Views
    4,893

    [RESOLVED] can't send email

    Hello,

    I've got an application in which I'm trying to send email and it won't let me for some reason. Here is my code:



    try
    {
    MailMessage message =...
  13. trying to create Dictionary object based on English

    Hello,

    I would like to create a Microsoft.Office.Interpol.Word.Dictionary object that's based on the English language but with additional words. How can

    I do that?

    Here is the constructor...
  14. Re: 20120102 - i00 .Net Spell Check - Code Project prize winner!

    Sorry if this has already been asked: does this software come in C#? Will it ever?
  15. looking for third party spell checking + dictionary software

    We're working on a software project in which we want to implement spell checking. We don't want to write our own spell checking software from scratch, and we definitely don't want to write our own...
  16. Re: callback functions for ASP.NET server-side controls

    This will run the javascript function before the codebehind gets executed. I need something that will run in javascript after the codebehind is done.
  17. callback functions for ASP.NET server-side controls

    I have an ASP.NET control (a button) in a WebApp. It has an onclick attribute:

    onclick="SaveButton_Click"

    SaveButton_Click()

    is a C# function in the codebehind file. When the user clicks the...
  18. Replies
    6
    Views
    1,422

    Re: AJAX request call not working

    Splitting up the string worked.

    The callback function was receiving an empty XML document. Now it is not empty.
  19. Replies
    6
    Views
    1,422

    Re: AJAX request call not working

    Thanks Penagate

    We think we've found the problem though we haven't tested it yet via an implementation. We believe the data string is too long and that it's cutting off somewhere in the middle....
  20. Replies
    6
    Views
    1,422

    Re: AJAX request call not working

    UPDATE: it doesn't seem to like "x-www-form-urlencoded". If I replace that with "x-www-form-utf8encoded", as in the following line:

    http_request.setRequestHeader("Content-Type",...
  21. Replies
    6
    Views
    1,422

    [RESOLVED] AJAX request call not working

    Hello,

    I'm trying to track down a bug.

    On the client side, I've got some javascript code that makes an AJAX request to the server. The request seems to be returning to the callback function...
  22. Replies
    2
    Views
    636

    searching active directories on the server

    When I access Active Directories to get user credentials, what machine does it look in: the client or the server? Can I get it to look on the server even though the code may be running on the client?
  23. VS 2008 Re: sending windows credentials from Active Directory to web app

    Thanks,

    I managed to figure out how to do this using the DirectoryEntry object:



    protected bool authenticate()
    {
    // search active directory for user with same...
  24. VS 2008 [RESOLVED] sending windows credentials from Active Directory to web app

    I've been asked to program a web app for a client's intranet. They want the web app to users in using their Windows credentials. So far in my online research, I've been finding that Active...
  25. Replies
    4
    Views
    2,845

    Re: can't get Session variable to work

    Ah yes, that works. I realized my mistake was that I was going off a C# example rather than a VB one.



    I guess I am. Is that a good thing or a bad thing?
  26. Replies
    4
    Views
    2,845

    [RESOLVED] can't get Session variable to work

    Hello,

    I'm experimenting with the Session variable in VB.NET (and ASP.NET). I've got a login page here: http://www.shahspace.com/autobody/index.aspx and it contains this snippet of code:


    ...
  27. Replies
    4
    Views
    521

    Re: looking for free version of VS

    Thanks very much.
  28. Replies
    4
    Views
    521

    looking for free version of VS

    Hello,

    Does anyone know where I can download a free version of Visual Studios from?

    I tried searching and I found sites that look like they're offering Visual Studios but it turns out to be...
  29. Replies
    4
    Views
    727

    Re: creating page reload subroutine

    The solution to this problem is here: http://www.vbforums.com/showthread.php?&t=638561&is_resolved=1
  30. Re: Page_Load subroutine not being called

    Yes, that worked. Thank you stanav.

    BTW, just for my own information, what is the Autoeventwireup (if you don't mind my asking)?



    Yes, I know. Every time I put it back in I get this error...
  31. [RESOLVED] Page_Load subroutine not being called

    Hello,

    Please have a look at my VB/ASP code and tell me if you can see what's wrong (I have bolded the important segments):



    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
    ...
  32. Replies
    4
    Views
    727

    Re: creating page reload subroutine

    I mean when the user hits the refresh button on his internet browser.



    After testing this, I realized not even the Page_Load subroutine is being called on the first page load.

    My code now...
  33. Replies
    4
    Views
    727

    [RESOLVED] creating page reload subroutine

    Hello,

    Is there a VB.NET subroutine that gets executed on page reload? I have the following load subroutine:



    Sub Page_Load(sender As Object, e As EventArgs)

    username_textbox.Text = ""...
  34. Re: programming a connection to database

    Um... mainly because I didn't know there was a free version of it out there. Now that I know I will download it.

    I the meantime, I figured out what the problem was. It was kind of a stupid...
  35. Re: programming a connection to database

    Thanks Shaggy, but is there any way to do this if I'm not using Visual Studios? I'm just using Notepad and programming from scratch.



    Thanks for pointing that out techgnome, but I think I need...
  36. [RESOLVED] programming a connection to database

    Hello,

    I'm trying to build a login page and I'm having trouble programming the connection to the database.

    The page can be found at http://www.shahspace.com/autobody/index.aspx

    Here's the...
  37. Replies
    3
    Views
    1,162

    Re: enabling SMTP authentication

    Thanks bear, but I'm not sure how SMTP authentication works with VB.NET. Is there a link I could follow?
  38. Replies
    3
    Views
    1,162

    enabling SMTP authentication

    I'm trying to setup a form on my website here. If you fill in the form (which you can go ahead and do) you get this error message:



    Basically, I need to know how to enable SMTP authentication....
  39. Replies
    0
    Views
    403

    SERIOUS PROBLEM with authentication

    Help!

    I just created an .aspx file with password protection, but now ALL my .aspx files are password protected. There's two page to be exact: admin.aspx and register.aspx. I want admin.aspx to be...
  40. Replies
    1
    Views
    570

    arithmetic on date/time objects

    Hello,

    How do you do date/time arithmetic in VB.NET? If need some way of deriving a date for n number of days before today. The application is a list of clients drawn from a database who...
Results 1 to 40 of 50
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width