Search:

Type: Posts; User: dbelley_office

Page 1 of 10 1 2 3 4

Search: Search took 0.05 seconds.

  1. VS 2015 Re: In VB.NET - Create a MS Teams conference and send emails to participants

    I've seen it. But I can't make anything work. No examples in VB.net
    I'd like a small example of a working example, not just a 2-3 lines of the general principles.
    I am unable to put the missing...
  2. VS 2015 Re: In VB.NET - Create a MS Teams conference and send emails to participants

    Thanks but I already have what is required to send emails. The question is really regarding the creation of an MS Teams meeting from a VB.net desktop app.
  3. VS 2015 In VB.NET - Create a MS Teams conference and send emails to participants

    Hello.

    From my VB.net desktop application, I would like to create a Microsoft Teams meeting and send an email to all participants.

    Is this possible? To create a MS Teams Meeting from a VB.net...
  4. Replies
    4
    Views
    949

    VS 2015 Re: Google Maps API ?

    Wow, I'm so dumb! Closing this thread.

    Thank you Shaggy Hiker.

    Sometimes you do so much work in a day, spread through multiple tasks and you get assigned to something you see as a mountain...
  5. Replies
    4
    Views
    949

    VS 2015 Re: Google Maps API ?

    I started trying things since my last message.

    I don't know limitations or performance or "RectLatLng". I'm not at that point yet. Just trying to make it work.

    But this snippet of code I...
  6. Replies
    4
    Views
    949

    VS 2015 [RESOLVED] Google Maps API ?

    Hello.

    I need a bit of help for what I have to do. Its important to mention I have zero experience with Google Maps API.

    This has to be done in a SOAP web service. The code will be server...
  7. VS 2015 Re: WebClient.DownloadString(URL) returns Error 403 - Forbidden

    Are you able to execute my code for that link?
  8. VS 2015 Re: WebClient.DownloadString(URL) returns Error 403 - Forbidden

    Render Unavailable from California is weird. GameStop is in USA.
    Where are you located? I am in Canada and from here it works in all browser.
  9. VS 2015 Re: WebClient.DownloadString(URL) returns Error 403 - Forbidden

    What do you mean "link returns 403 in the browser" ? How do you test that? I access the page in 3 different browsers (IE, FF, Chome) without any problems.
  10. VS 2015 Re: WebClient.DownloadString(URL) returns Error 403 - Forbidden

    Could not be simpler.




    Try

    Dim strHTML As String = String.Empty

    System.Net.ServicePointManager.SecurityProtocol = Net.SecurityProtocolType.Tls12
  11. VS 2015 WebClient.DownloadString(URL) returns Error 403 - Forbidden

    From the browser, the page is accessible without any problems, but from my VB.NET code, I get an error.

    When I try to download the HTML of this page : ...
  12. VS 2012 Re: Help with RTF code (arrow symbol : Wingdings)

    Thanks. I think I will use this. It does not produce exactly the same arrow, it is more flat, but its close enough.
  13. VS 2012 Re: Help with RTF code (arrow symbol : Wingdings)

    Copy/post in my SQL code does not work when viewing the result RTF document. It does not display any character.

    CHR(216) could work. But how to I set the Font to Wingdings in the RTF code?
  14. VS 2012 Help with RTF code (arrow symbol : Wingdings)

    Hi,

    If you look at the attached picture, you will better understand what I need to do.

    I have a RTF text containing a tag [MARKER_FLAG].

    I need to replace that flag with values I read in a...
  15. Re: Problem running old classic ASP website on my Windows 7, IIS 7 laptop.

    Ok. Just fixed it.

    Everybody was saying we add to do this:
    In the Advanced Settings dialog, there is a "Enable 32-Bit Applications" boolean value. It's default is false.

    I put it back to...
  16. Re: Problem running old classic ASP website on my Windows 7, IIS 7 laptop.

    Yes I had tried that already.
    I do not remember back in time how MDAC was installed, if there was an install app with "NEXT" buttons, but when I install it today, all I see is a window appearing for...
  17. [Resolved] Problem running old classic ASP website on my Windows 7, IIS 7 laptop.

    Hi,

    I developed a classic ASP website several years ago and out of the blue, today, the customer wants to make some changes to it. I could not convince him to rebuild it .NET.

    So I now have to...
  18. Re: Chart - Clustered and Stacked - How to ?

    Listview ?? I am trying to use a CHART control with clustered stacked bar.

    How to transform my datatable (see me picture for set of data) into the CHART as I described it.

    See my chart in my...
  19. Chart - Clustered and Stacked - How to ?

    Hi,

    I have a set of data like the one below (from April to March). To respect our fiscal year:
    95583

    This example is for 3 years, all years having 2 categories (local and world).

    I would...
  20. VS 2008 Re: Help with Chart control - Stacked bar Y labels value

    I modified my initial post.

    Thank you for helping.
  21. VS 2008 Help with Chart control - Stacked bar Y axis labels value problem when over 1000

    EDIT:
    I deleted my previous post, it was not relevant anymore.


    Here is my new issue.

    I have a stacked bar 2D chart control.

    If my data shown in the chart do not go over 100, the labels...
  22. [RESOLVED] Rebuild / Reorgazine Index Problem

    Hi,

    I just did a stored proc (code is below) that would allow me to rebuild or reorganize indexes in my databases.

    When I try to run it directly from the Management Studio (I have SQL Server...
  23. Replies
    5
    Views
    7,781

    Re: Convert datatable to javascript array

    Hi,

    From your message a start looking around and found this snippet of code that I tried:



    dt As DataTable = Session("ItemCode")

    Dim serializer As...
  24. Replies
    5
    Views
    7,781

    Convert datatable to javascript array

    Hi,

    I was wondering if someone could help me. I have a datatable that I need to convert into a javascript array. This will allow me to do client-side validations on my webpage.

    My datatable...
  25. An app. constantly looking into an SQL Table .. how to do ?

    Hi,

    I have a website on which several users enter SKU codes that have to be validated.

    The validation of a single SKU can take upto 2-3 seconds, so I do not want to execute it on the website...
  26. Re: I cannot find my usercontrol in my page

    Thank you all for your help.

    I am still new to ASP.NET and I did not know that dynamic controls have to be recreated at every postback.

    In my page load event, I just took few lines of code out...
  27. [RESOLVED] I cannot find my usercontrol in my page

    I have a survey.aspx page which is inside a masterpage.
    In that survey.aspx page, I have a placeholder.

    In that place holder, I dynamically add a usercontrol for each question the survey has. ...
  28. Replies
    5
    Views
    629

    VS 2005 [Resolved] Re: Browser issue .. IE versus FF

    My mistake !!

    Thanks to you rjv. Your comment made me review my code, I thought it was a browser issue, so I did not review my things, but it was not.

    At first, I had this code


    ...
  29. Replies
    5
    Views
    629

    VS 2005 Browser issue .. IE versus FF

    Hi,

    I have updated a website maybe a month ago. I changed the flash animation on the top.

    On IE is shows the correct animation, but in FireFox, it just keeps showing the previous and incorrect...
  30. Re: Display HTML page within a DIV within a MasterPage?

    I'll see.
    I wanted to avoid having to develop a form to save the their html code into a db table. It was easier to only use a html file they put in a specific directory.

    But I'll give if a shot...
  31. Re: Display HTML page within a DIV within a MasterPage?

    Yeah it should be simple html.

    That "concept" would be used on specific pages areas of the website.
    - Home page (not logged in) (PubDefault.html)
    - Customer home page (when logged in) ...
  32. Re: Display HTML page within a DIV within a MasterPage?

    This seems to work.
    Is it a good practice?



    <div align="left" style="width:100%; clear:left;">

    <iframe id="pub" name="pub" src="Promotion/PubAdmin.html" frameborder="0"...
  33. Display HTML page within a DIV within a MasterPage?

    Hi,

    I use Visual Studio 2008 ASP.NET (VB.NET)

    I have a MasterPage with a ContentHolder. (FrameMaster.aspx).
    I have a page called Default which use that MasterPage. And in the content of the...
  34. Replies
    3
    Views
    3,166

    Re: GridView & Custom Validator

    Just tried it.
    It is not working.
  35. Replies
    3
    Views
    3,166

    GridView & Custom Validator

    Hi.

    I have a gridview control on my form.
    In the footer row, which is used to insert a new item in the gridview, I have a button. The grid is too complex to show all, but for that specific...
  36. String.Empty to initialize a variable ?

    Hi,

    I always initialize my variables with a value when declaring them.

    I was wondering if using String.Empty to initialize a variable is correct.



    'Is this OK ?
    Dim strValue As String =...
  37. Re: Security error when running remote App (VISTA)

    I found my answer.

    On Vista 64bits you have to use a different caspol.

    I found that on another forum:
    My understanding is that there are versions of code access security for each version of...
  38. Security error when running remote App (VISTA)

    Hi,

    I have an VB.NET 2005 application installed on my Windows 2003 Server.
    I try to access that application for other computer on my network.

    Read below:

    I get this error when running a...
  39. Replies
    4
    Views
    2,824

    Re: [2008] Image button : OnClientClick

    I just noticed that in the FormLoad, I had to put the code out of my IsPostBack condition, otherwise, the javascript code was disappearing.

    So even if it is a PostBack, I have to execute the VB...
  40. Replies
    4
    Views
    2,824

    Re: [2008] Image button : OnClientClick

    hello mendhak.

    I am new to ASP.NET, so it was the first time for me using ClientScript.RegistreClientScriptBlock ..

    Below is the way I did it, could you tell me if is sounds correct to you or...
Results 1 to 40 of 371
Page 1 of 10 1 2 3 4



Click Here to Expand Forum to Full Width