Search:

Type: Posts; User: Prahlad

Page 1 of 4 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    1
    Views
    15,242

    Re: Fetch Azure Time Series Insight Gen2 Data

    Azure Time Series Insights Gen2, our pay-as-you-go IoT Analytics offering, is now generally available and features a number of new capabilities that are powerful, yet simple to use:

    1.Built for...
  2. Re: Fetch time from database and schedule task in Azure at that perticular time

    You can use Azure logic app in the following way:

    Keep monitoring the table(database) for any updated timestamp of the schedule. Fetch and store in a variable. ...
  3. Replies
    4
    Views
    1,203

    Re: How to send value date today ?

    Use new Date() to generate a new Date object containing the current date and time.


    var today = new Date();
    var dd = String(today.getDate()).padStart(2, '0');
    var mm = String(today.getMonth() +...
  4. Thread: Ready Themes

    by Prahlad
    Replies
    1
    Views
    5,382

    Re: Ready Themes

    FREE Metro Light and Dark Themes for WPF and Silverlight Microsoft Controls
    https://brianlagunas.com/free-metro-light-and-dark-themes-for-wpf-and-silverlight-microsoft-controls/



    install Nuget...
  5. Replies
    0
    Views
    3,637

    variable value set in MVVM in WPF

    I have a Dto File in which I get the value. Now I need it in another file in the variable that I access from the get-set but the value is 0. The original value does not come. My code is as...
  6. Re: Show firstname and familyname after login.

    When you open the form2, you only have to pass variable to the constructor of form, and pass it to some control, which will show the value (ie. username):


    'on form1:
    Public Property...
  7. Re: Find an empty textbox on form and populate it with text

    Are the textboxes placed in panels or other grouping controls? If so, the form's Controls collection would not contain references to them; they would only contain the immediate children (which would...
  8. Replies
    8
    Views
    2,849

    Re: Adding a label to specific Images

    you should consider opting for a cleaner solution. You can instead use the PictureBox's Paint event:


    PB = new PictureBox();
    PB.Paint += new PaintEventHandler((sender, e) =>
    {
    ...
  9. Replies
    10
    Views
    5,257

    5.0 Re: DBNull to Textbox Value

    You can use the string.IsNullOrEmpty or string.IsNullOrWhiteSpace methods to check your TextBox value.


    string yourValueToPutIntoDatabase = (string.IsNullOrEmpty(yourTextBox.Text)) ?...
  10. Replies
    5
    Views
    1,298

    Re: VB.NET How to Title Get Exe

    Have a look at the System.Diagnostics.Process class:


    Process p = <Get process>
    Console.WriteLine(p.MainWindowTitle)

    Reference: link
  11. Re: Error Sending Email from VB. (System.Net.Mail)

    This error usually means that the target machine is running, but the service that you're trying to connect to is not available. (Either it stopped, crashed, or is busy with another request.)

    In...
  12. Re: How do you learn Visual Basic on the internet?

    https://docs.microsoft.com/en-us/visualstudio/get-started/visual-basic/tutorial-console
    https://www.vbtutor.net/
    https://www.homeandlearn.co.uk/NET/vbNet.html
  13. Replies
    5
    Views
    1,360

    Re: vs2010 OR vs2019 Community

    Whenever new versions arrive, there are always new Features. You will only benefit if you update I find some new feature of vs2019 so that is beneficial for you let see

    1.Lightweight and modular...
  14. Re: How to duplicate a column in the same table (SQLite)

    This helped and it supports BLOB/TEXT columns.


    CREATE TEMPORARY TABLE temp_table
    AS
    SELECT * FROM source_table WHERE id=2;
    UPDATE temp_table SET id=NULL WHERE id=2;
    INSERT INTO source_table...
  15. Replies
    7
    Views
    1,941

    Re: Syntaxe sql - multi table

    Try it


    Imports System.Data.OleDb
    Public Class addNew
    Dim conn As New OleDbConnection()
    Dim sqlCom As New OleDbCommand()

    Private Sub btnAddNew_Click(sender As Object, e As EventArgs)...
  16. Thread: xml encoding

    by Prahlad
    Replies
    4
    Views
    1,437

    Re: xml encoding

    Dim Stream As New IO.StreamReader("File.xml", System.Text.Encoding.UTF8)
    Dim Reader As New Xml.XmlTextReader(Stream)

    Reference : https://stackoverflow.com/a/17528811/11954917
  17. Replies
    29
    Views
    6,870

    Re: Using Visual Basic to update excel file

    Dim oExcel As Object
    Dim oBook As Object
    Dim oSheet As Object

    'Start a new workbook in Excel
    Set oExcel = CreateObject("Excel.Application")
    Set oBook =...
  18. Replies
    2
    Views
    1,089

    Re: How to move taskbar button ?

    Imports Microsoft.WindowsAPICodePack.Taskbar

    Private WithEvents ttbButton1 As ThumbnailToolbarButton
    Private WithEvents ttbButton2 As ThumbnailToolbarButton
    Private WithEvents ttbButton3...
  19. Replies
    22
    Views
    8,684

    Re: Drawing on a Track Bar

    Public Class Form1

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    TrackBar1.Minimum = 0
    TrackBar1.Maximum = 11 ' 0...
  20. Replies
    2
    Views
    12,747

    Re: Food delivery app development

    lots of things but I have to suggest some important point from my point of view

    1.SIMPLE AND CLEAR DESIGN
    2.QUICK LOGIN AND CHECKOUT
    3.CONSISTENCY AND SIMPLE NAVIGATION
    4.PROMINENT CART BUTTON...
  21. Replies
    3
    Views
    1,756

    2.0 Re: Error generating Win32 resource ?

    added a new project and saved it, found the problem solved !!!!!!!!!!!!!!!!!!!!!

    somethings come by luck!
  22. Replies
    6
    Views
    1,645

    Re: Can someone help convert this nodejs code

    plz follow this link

    https://dzone.com/articles/integrating-nodejs-c-dll
  23. Replies
    11
    Views
    5,481

    VS 2013 Re: Change color HUE of picturebox ?!

    Private Sub PictureBox1_Click(sender As Object, e As System.EventArgs) Handles PictureBox1.Click, PictureBox2.Click '<--This is where we append the objects
    ActivePbox.BackColor =...
  24. Re: Why do I copy Table1 contents to Table with the error ?

    it's worked good for me
    plz try this :


    INSERT INTO DB2.TB1 SELECT * from DB1.TB1;
  25. Replies
    10
    Views
    3,572

    Re: Problems with ViewState

    Hello,@.paul.

    Please follw this step,To Problems with ViewState

    Step 1

    Create an app.browser file in App_browsers directory. Plug in page adapters in the app.browser file as follows:
    ...
  26. Re: [RESOLVED] What CTRL in .NET can display B-Code without parsing?

    You could add a reference to Microsoft Script Control Library (COM) and use code like this to evaluate an expression. (Also works for JScript.)


    Dim sc As New MSScriptControl.ScriptControl()...
  27. Replies
    1
    Views
    5,654

    Re: Nav Bar not displaying 1 sub menu

    Hello,@kuldevbhasin

    Please try this code,To nav bar not displaying 1 sub menu



    <script src="Scripts/jquery-3.4.1.min.js"></script>
    <script src="Scripts/bootstrap.min.js"></script>
    ...
  28. Replies
    8
    Views
    7,183

    Re: remove all security

    Remove security follow this link
    "https://support.microsoft.com/en-in/help/290991/how-to-manually-remove-sql-server-2000-default-named-or-virtual-instan"

    Import/Export
    Right click the database...
  29. Replies
    4
    Views
    3,263

    Re: print listbox item in multiple pages

    In regards to actual printing, I simple set the DocumentName of the PrintDocument, there is of course more to do here so it actually prints.


    Public Class SomeDemo
    Private dt As DataTable =...
  30. Re: [AngularJS] Single or Multiple Service & Controller

    Hello,@FunkySloth

    Please try this code,To Single or Multiple Service & Controller



    angular.module('myModule', [])
    .controller('MyController', [
    'Service1', 'Service2',...
  31. Replies
    34
    Views
    7,693

    Re: The titlebar with different colors

    Add This to a Module:

    Declare Function SetSysColors Lib "user32" _
    (ByVal nChanges As Long, lpSysColor As _
    Long, lpColorValues As Long) As Long

    Public Const COLOR_CAPTIONTEXT = 9

    And in...
  32. Replies
    2
    Views
    11,072

    Re: JQuery > button > click created link

    Hello,@Ecniv

    Please try this code,To JQuery > button > click created link



    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="utf-8">
  33. Replies
    2
    Views
    1,053

    Re: vb6 ListView click/ lostfocus bug

    You can try in MouseUp event.


    Private Sub lvlcheckin_MouseUp(sender As Object, e As MouseEventArgs) Handles lvlcheckin.MouseUp
    If e.Button = Windows.Forms.MouseButtons.Left Then

    ...
  34. Replies
    2
    Views
    1,051

    Re: Disable/Enable keyboard mapping

    If you want to "disable" other keypress events, maybe look at using code and ASCii to prevent certain events on taking place when user pressed the key for instance the 'TAB' key.

    Attached is the...
  35. Replies
    5
    Views
    1,669

    Re: [RESOLVED] Append table to ADO database

    Hello,@boops boops
    Please try this code,To Append table to ADO database



    adVarWChar = 202
    adInteger = 3
    file = "C:\TEMP\NEW.MDB" ; change to suit your situation...
  36. Replies
    17
    Views
    4,038

    Re: VB6 Bubble Sort

    Public Sub Array_BubbleSort(ByRef vArrayName As Variant, _
    Optional ByVal lUpper As Long = -1, _
    Optional ByVal lLower As Long = -1)

    Dim vtemp As Variant...
  37. Re: VB6 - how create a function with 2D array on parameter?

    Sub studentScores(ByVal name As String, ByVal ParamArray scores() As String)
    Debug.WriteLine("Scores for " & name & ":" & vbCrLf)
    ' Use UBound to determine largest subscript of the array.
    ...
  38. Re: How To select many fields by DISTINCT one field ?

    Hello,@nader

    Please try this code, How To select many fields by DISTINCT one field ?



    SELECT * FROM
    GPSReport AS G1
    JOIN (SELECT device_serial, max(datetime) as mostrecent
    FROM...
  39. Replies
    5
    Views
    1,617

    Re: HOW TO READ a vb 6.0 project in VB Net

    Although 2008 and the below version provide an automatic function to convert Vb6 code to VB.net framework. But the problem starts after the conversion, it Skips some code, adds function/variables on...
  40. Re: The problem with name and size column of DGV

    Hello,@nader

    Please try this code,To The problem with name and size column of DGV

    You could set the width of the abbrev column to a fixed pixel width, then set the width of the description...
Results 1 to 40 of 131
Page 1 of 4 1 2 3 4



Click Here to Expand Forum to Full Width