Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
A

Anshul R

@Anshul R
About
Posts
28
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Vb6 sybntax counterpart of VB.Net.
    A Anshul R

    You need to include references to SQL in VB6. But I doubt if it is supported..

    Visual Basic csharp database com question

  • text to speech problem
    A Anshul R

    BackgroundWorker Component Do you know about them? What u hav 2 do is Write the code to be executed in their DoWork event. Then the play button should have code like BackgroundWorker1.RunWorkerAsync() Read about BackgroundWorker. That is a simple and effective solution

    C# question help

  • Issue with running .exe(compiled in 34 bit) in window7 64bit enviornment
    A Anshul R

    Change the title of the thread. Clean your solution. Create a new Solution Platform for 64-bit(x64), change the build settings and then build the project. remember to take a backup.

    Visual Studio help debugging tutorial

  • msvcp70
    A Anshul R

    See the Dependencies in the Project Properties or use dependency walker(comes with VS2005)

    Visual Studio question csharp visual-studio help announcement

  • combobox selected index chaged code
    A Anshul R

    Try the SelectionChangeCommitted Event or SelectedValueChanged Event

    .NET (Core and Framework) database

  • Memory allocation for List
    A Anshul R

    It is like a linked list(not really.. but for the memory allocation part). It can have any number of items while memory is free. It is like using malloc function

    .NET (Core and Framework) performance question

  • Do you still need 3.5 if you only install 4.0?
    A Anshul R

    If you are creating an installer with the .NET Framework specifications/requirements, it will compel the user to install the version you have specified even if the user has a newer version.

    .NET (Core and Framework) question csharp

  • How to change reference path in VB6
    A Anshul R

    Why don't you copy the code to new files in a new project? (Know it is a boring way. But might help you if you lack time)

    Visual Basic tutorial question

  • Determining if given DateTime is older than a Hour
    A Anshul R

    Its very simple Use DateDiff Function First Argument is the Difference Interval See the DateInterval enumeration(has hours, seconds etc.) The Second Argument is the date you retrieve The Third Argument is the current date(Date.Now) The code will be like

    Dim hours As Long = DateDiff(DateInterval.Hour, retrievedDate, Date.Now)

    Visual Basic question

  • CSMA / CA
    A Anshul R

    Event Driven Code

    Algorithms csharp hardware question

  • algorithm to get each individual digit from a decimal number (integer)
    A Anshul R

    Convert the number to string Loop through the characters, store it. Eg : <pre> Dim digits As New ArrayList For Each digit As Char in CStr(number) digits.Add(CInt(digit)) End For </pre>

    Algorithms algorithms help tutorial

  • Sending a keystroke to all applications
    A Anshul R

    Enumerate all processes See if the process has a UI(to distinguish from other background processes) The code will be like

    For Each x As Process In Process.GetProcesses
    If x.MainWindowTitle <> "" And x.MainWindowTitle <> Me.Text Then
    AppActivate(x.Id) 'If you know the application's title, AppActivate("Title") will also work
    SendKeys.SendWait("KEYS YOU WANT TO SEND")
    End If
    Next
    AppActivate(Me.Text)

    .NET (Core and Framework) question javascript hardware help tutorial

  • exe creation for single time installation problem in .net for window application
    A Anshul R

    Identify the system with any unique identifier like IP Address or MAC address or anything and check for it in a database you have created(the program adds the identification to it everytime it SUCCESSFULLY installs) But this is not a good idea :^)

    .NET (Core and Framework) csharp help

  • In which language CLR is written??
    A Anshul R

    Native C++

    .NET (Core and Framework) dotnet question

  • combobox selected index chaged code
    A Anshul R

    Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged
    'What You Want To Do
    End Sub

    .NET (Core and Framework) database

  • VB6: invicible .exe
    A Anshul R

    :) Sorry for my mistake too. Hope you got it

    Visual Basic question

  • Child Form From its parent form
    A Anshul R

    You can also try Protected Friend in their declarations

    C#

  • text to speech problem
    A Anshul R

    Use the Speak command in a background worker so that nothing else is defunct till the speech is over.

    C# question help

  • Clone Windows Forms Information
    A Anshul R

    Assign the control to a new control in form2

    C# question database winforms

  • Advancing On Pressing Enter
    A Anshul R

    In the KeyDown event for the form, see if the key hit is enter and if so, write code to proceed

    C# debugging json question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups