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
U

united18

@united18
About
Posts
20
Topics
5
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Problem in SQL Connectivity code
    U united18

    Hi Kevin I added the above lines of code. I am getting the same error. However, Thanks for your help :)

    Visual Basic help database question

  • Problem in SQL Connectivity code
    U united18

    Hi, The following code is generating an error....I have put comments in front of the line that generated error. Can anybody help me in this? :) Thanks,:):-O Public Sub ConnectSQL() Dim conn As New SqlClient.SqlConnection Dim da As New SqlClient.SqlDataAdapter da = SqlDataAdapter1 'This Adapter is manually created using the Wizard conn = SqlConnection1 'This Connection is manually created using the Wizard Dim selectCommand As New SqlClient.SqlCommand("SELECT cFName from PersonalDetails") 'Selecting The first column from the table da.SelectCommand = selectCommand Dim Reader As SqlClient.SqlDataReader Dim RecordCount As Integer = 0 conn.Open() Reader = selectCommand.ExecuteReader() 'This line is generating an error!! Dim Records As String While Reader.Read() Dim i As Integer = 0 For i = 0 To Reader.FieldCount - 1 Records &= Reader(i) & "-" Next RecordCount += 1 End While

    Visual Basic help database question

  • Help me please... TextBox Control
    U united18

    1)yes u should try the keydown() 2)to replaceonly a part of a textbox u should use replace func. :- TextBox1.Text = TextBox1.Text.Replace("IBeam", "new text")

    Visual Basic tutorial csharp help

  • Packaging/Deploying a VB.Net
    U united18

    go to new project and select 'setup and deployment projects' from the left pane. and then u can either select 'setup wizard' or any other template as per your convenience. Before that test ur software for any bugs.

    Visual Basic csharp question workspace

  • Help me please... TextBox Control
    U united18

    "I need that when i type in textbox... if text starts with "<" then i get combobox with items for html tags... buth annywhere in textbox if i type i get thet... Get it now?" in the key press event of the textbox u can check for < or .......if(textbox1.text="<") then u can either i) create a combo box or u can set the visible property of a combo box to true --- (combobox1.visible=true) sorry can't get ur second ques - is it that u wanna fetch a value from a dialogbox and use it in a textbox???

    Visual Basic tutorial csharp help

  • i need help please anyone
    U united18
    1. prompt for and accept the day’s date cout<<"Enter date"; cin>>date; (but before this u need to create a variable for date - i guess u already know that) 2) - initialise all the hours in the day to “free” u can use a for loop for this. and yes for 'hour' integer variable u need to create an int array. 3)- repeatedly prompt the user for an hour number i don't understand.....repeatedly means what intervals it should follow? 4) - if the hour is “free” mark it as “booked” use the if else construct for this 5)- otherwise tell the user “already booked” same if then used as in 4) 6)- display the day and its appointments in a for loop u need to use cout. I hope that helps u? Regards
    Managed C++/CLI c++ csharp design data-structures help

  • Help me please... TextBox Control
    U united18

    pls can u tell step by step what exactly u want? Regards, uni

    Visual Basic tutorial csharp help

  • Alphanumeric
    U united18

    u can fetch the value of textbox and store in a string variable and perform the validation on the string variable.

    Visual Basic question csharp

  • string concat
    U united18

    i know this sounds strange, even u can check like this when u get time and if possible clarify me if u think i am making a mistake. Whatever, atleast this way (labels) it is working. btw the class i was using for fetching id3 tags from mp3 files is : http://www.codeproject.com/vb/net/vbmp3header.asp

    Visual Basic com help

  • string concat
    U united18

    yes.... u r right. 1) i will copy the code rather than typing it here. 2) objMP3V1.Frame(MP3ID3v1.FrameTypes.Title) .This code return the value of title and similarly objMP3V1.Frame(MP3ID3v1.FrameTypes.Artist) returns the value of Artist. But when i try to concat by either i) artist + title or ii) artist & title ---- it returns only artist's value. But this problem was solved when i created 3 label fields :- label1, label2, label3. what i did was:- label1.text=objMP3V1.Frame(MP3ID3v1.FrameTypes.Title) label2.text=objMP3V1.Frame(MP3ID3v1.FrameTypes.Title) label3.text=label1.text + "-" + label2.text With this code it was concatening. But in this case also if i make these 3 label fields invisible ('label1.visible=false') then it doesn't concatenate again. So i have to always set the visible property to true of these 3 labels. This is quite strange though. Anyways thanks a lot for your help. Regards

    Visual Basic com help

  • File Properties - mp3
    U united18

    thanks a lot. my application is now complete. I will post the application as soon as i design it fully and deploy it. strings were not concatenating so i created labels and then concatenated them.

    Visual Basic help

  • string concat
    U united18

    I tried this also, then also it is not concatenating. Both ways i do not get a compilation error, but only one value is stored in 'newName'

    Visual Basic com help

  • string concat
    U united18

    sorry actually i wrote dim newName as string it was just a typing mistake here. in the program i wrote 'newName' only and not 'new name'

    Visual Basic com help

  • string concat
    U united18

    Hi, I am facing a strange problem in this. http://www.codeproject.com/vb/net/vbmp3header.asp When i try to trap the value of artist and title as: dim artist as string artist = objMP3V1.Frame(MP3ID3v1.FrameTypes.Artist) dim title as string title = objMP3V1.Frame(MP3ID3v1.FrameTypes.title) dim new Name as string newName = artist + title The variable 'newName' does not contain the values of both title and artist. It only contains of artist whereas individually i am able to see the values of artist (msgbox(artist)) and title (msgbox(title)). Pls reply within half hour.......

    Visual Basic com help

  • File Properties - mp3
    U united18

    Hi, I am facing a strange problem in this. When i try to trap the value of artist and title as: dim artist as string artist = objMP3V1.Frame(MP3ID3v1.FrameTypes.Artist) dim title as string title = objMP3V1.Frame(MP3ID3v1.FrameTypes.title) dim new Name as string newName = artist + title The variable 'newName' does not contain the values of both title and artist. It only contains of artist whereas individually i am able to see the values of artist (msgbox(artist)) and title (msgbox(title)). Pls reply within half hour.......

    Visual Basic help

  • File Properties - mp3
    U united18

    Thanks :)

    Visual Basic help

  • File Properties - mp3
    U united18

    In mp3 files there are tags/properties of Artist Name, Song Name, Album Name. Is there any way through which i can fetch these values (provided i have a list of mp3 files) into variables. Pls help Thanks :-0

    Visual Basic help

  • Browse
    U united18

    Thanks Steve. :-O

    Visual Basic help question

  • Browse
    U united18

    Hi, I am developing an application in which i have to create a browse button and a list box. as soon as the user clicks on the browse button, he gets an option to choose a directory from the hard disk. As soon as he chooses a folder, the contents of the folder are displayed in the list box. Can someone help me on this? Thanks :-O

    Visual Basic help question

  • installation problem
    U united18

    When I am trying to install .NET i am very much able to install 'Disc 1' and 'Component'. But after I install Disc 1 it does not prompt me to enter Disc 2 and even if I enter Disc 2 there is no setup file in it. Please suggest. :confused: UNI

    .NET (Core and Framework) csharp help workspace
  • Login

  • Don't have an account? Register

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