20,285 Topics
![]() | |
Hello All, I would like to programatically set the Column borders for a datagrid based on the column Index. So I would like Columns(3) for exampe, to have a border but not Columns(1) or Columns(2). The only thing remotely like this I can find is the datagridview grid setting. But … | |
Upon checking the corresponding check box, which is either Ladies Shoes, Men Shoes, Sneakers or Sandals, the program needs fill the listbox with the checkbox information. Can't figure the syntax, any help would be greatly appreciated. [code=VB] Public Class Form1 Private Sub chkboxLadiesShoes_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) … | |
Hi masters... How i can got last 3 character from string? Ex : Daniweb -> i got "web" is this possible? Please Help me Regards | |
I've created a local copy of my company's live site. It is developed using ms.net[vb.net] and am using msVisual Studio 2005 on my comp. when i build and run it ,it runs fine but evrytime i put breakpoints it would open 46 tag viewers and my system would crash. I … | |
| |
Hi guys, Is it possible to call a server side asp page from a VB.net application running a client PC and pass parameters to that page? My concept is a software activation system that queries the hardware of the users PC and generates codes. This is working fine in VB.net … | |
K i need to get the mouse click co-ordiantes outside of the form. i know how to get them inside the form; [CODE=vb] Private Sub mouse1_click() Handles me.MouseClick set1X = MousePosition.X set1Y = MousePosition.Y End Sub[/CODE] but i need to get cordinates from anywhere on the screen. and if it … | |
I have the mainmenu.vb and event.vb. I want event.vb appear when I click button (cmdRun), and mainmenu hide. How to write it's code? I use below code but was not as VB 2005. [CODE]hide.mainmenu show.event[/CODE] Any ideas? Thanks in advanced. | |
Hi guys I am able to add data to a textfile on a windows mobile device but can only get it to store within the 'My Device' folder. I have tried to place it within folders ... but it cries with a NullReferenceException [code] Dim path As String = "\testFile.txt" … | |
hi friends i got a combobox in datagridview, i need to insert data present in combobox into database by clicking a button,what i mean is select item in gridcombobox and press some button say submit and insert into database column.please send me code for this one.this is to be done … | |
i use this code to diffuse a picture box.. [CODE] Dim bmap As New Bitmap(PictureBox1.Image) PictureBox1.Image = bmap Dim tempbmp As New Bitmap(PictureBox1.Image) Dim i As Integer, j As Integer Dim DX As Integer Dim DY As Integer Dim red As Integer, green As Integer, blue As Integer With tempbmp … | |
i do need some guidence for incorporating barcode system in my VB.Net projects | |
Hi, I have developed a windows application using VB.NET, i need put a icon file for the .exe application file. I tried the following ways, Right clicked the project->went to properties-> there there is a option for putting application icon. I tried putting my .ico(16X16 and 32X32) file which i … | |
Hey, Can anyone help me solve this, i am trying to read the value of Console.Readline into a varible declared as Double using vb 2008. As shown below: [code=vbnet] Private Sub ReadQuantity() ' Read ask customer to input many liters Private quantity As Double Console.Write("How many liters (only whole liters … | |
Hi, i need to type some commands at a specific time of day in the console of counter strike to connect to a server automatically... i just need a way to type in the cs console... i can take care of the rest... if anyone has any idea on how … | |
Hello All, I would like to display charts based on some conditions being fulfilled. I have pseudocoded the information. If the use of pseudocode is not acceptable please inform me and I will code it in vb. Essentially I need to display inofrmation about Multidisciplinary Teams in a number of … | |
Hi, i need to print the form content. the content may be a label, textbox and may be a grid.. | |
Hi, I create one application, in that application i am calling one vc++ exe so i want to run that exe in background which is not visible to the user. If any one have idea about this please reply on this. Thnak you. | |
[B]hullo friends, am a little new in the field of VB and currently i have created a login and registration form i nkow how to connect to oracle but i need some code to help me register new users and post them to the oracle database and login form should … | |
there are web sites that provide e directory services, n i want to create a small application in vb.net to access the web site and getting the numbers..., without goin thru the web site.. i am very new in this...plx help:icon_wink: | |
hi friends, can anyone tell me how to convert data from datagrid to excelsheet | |
I have an application in which i have an MDI form and one more form which is placed inside the MDI form i.e. child of MDI parent now when i run the application the child form it it should be in normal size inside the MDI but when i reduce … | |
Hello out there ? i have one question rather a strange one i have two tables say admission and attendance with different fields however admn id , name are the fileds common to both of them when i add my data in admission table (via form) can i at the … | |
I would like to have a count down that have days, hours, minutes and seconds. I have labels, lbldays as Days lblhours as Hours lblminutes as Minutes lblseconds as Seconds I want to countdown to 1 January 2009, 0000, and it will counting seconds by seconds. When it reach the … | |
Hi everyone... i'm just a beginner in vb2008 i try to make a program that will shutdown pc in the network and i try the shell command below.... shell("shutdown -m \\PC04 -s") I type this code but nothing happen it just open a command promt look alike. PC04 has not … | |
hay, any one can help for my project,give some links or else give some title. | |
I Have To create a ToolBar,I searched on the Internet & I found the Foll. Lins Useful- [url]http://cgeers.wordpress.com/2008/02/16/internet-explorer-toolbar/#bandobjects[/url] [url]http://www.codeproject.com/KB/shell/dotnetbandobjects.aspx[/url] In both the links, ToolBar is Created using BandObjects. I have no idea abt it,Can somebody plz explain me what is BandObjectLib....... | |
![]() | Alright I am totally new to Visual Basic and might have just shot myself in the foot agreeing to do this class! Our first project is due tomorrow and not only has my book still not arrived but I was violently ill the past few days and missed class! (Senior … |
hello ppl, i have a doubt how do i append [B]MSWord[/B] in my proj. if i have a form on which i make a button now on clicking that button [B]MSWORD[/B] should open. If i use [B]system.diagnostic.process.start() [/B]and the whole path of [B]MSWORD[/B] in the bracket it will work but … | |
i need some project titles in vb.net .can u help me.reply to[I] << email snipped >>[/I] | |
I'm using the code [code=VB.NET] Sub PicCanvasMouseDown(sender As Object, e As MouseEventArgs) XPrev = e.X YPrev = e.Y End Sub Sub PicCanvasMouseUp(sender As Object, e As MouseEventArgs) XCur = e.X YCur = e.Y End Sub Sub PicCanvasPaint(sender As Object, e As PaintEventArgs) Dim p As New Pen(Color.Black, 10) Dim g … | |
I am trying to import data using xml file into Tally. For that i am using below code in vb.net. Here i am sending error file, for your ready reference. Dim strXml As XmlTextReader myLink = New RTSlink() strXml = New XmlTextReader("Test.xml") strXml.MoveToContent() Dim n As Long = myLink.Send(strXml.ReadOuterXml(), TallyServer) … | |
hi im new to VB.net can you guys teach me about VB.net? what i need to learn first ? i have knowledge of VB6 , is the code vb.net same as vb6? thx in advance | |
Does anyone know what's C++'s SETW() Equivalent in Visual Basic .NET ? SETW: Sets the number of characters to be used as the field width for the next insertion operation. Is there anythign similar in VB.NET. Note: I want to use in a ListBox. I've tried using: [CODE] Dim fmtStr … | |
I'm working with Visual Studio.net and Access 2002 to build an interface to add, edit and delete records in the database. Eventually, I'd like to build a web page to be able to view the data. Currently, I'm trying to search for a particular record in the database using a … | |
Hey, i am trying to display weight base on a age input without using a table vb.net. Say a age can be anyware from 1 to 18 yrs and weight at 1 = 11kg with a avg increase of 3kg per year. I thought of using a for loop but … | |
Hi all, I new to vb.net, and I have alot of questions. so Get Ready :) I had added a forum and set the IsMdiContainer to True and I noticed that the backcolor has changed to darkgrey Is there a way to change back the backcolor to normal? TIA Samir … | |
Hi experts, i just read some articles about Windows workflow foundation and i saw that this is very powerfull since it has a perfect integration with Communication Foundation, Presentation foundation and also Winform 2.0 So, my question is : Do i have to use the worflow foundation for almost all … | |
Hi all im Implementing wordcount feature in my appliction it counts the numberof lines in the document,number of pages, number of charecters with space and without space, numberof paragraphs in the document i implemented this function it is working fine but the problem is becoz of loops and im checking … | |
Hey guys, sorry for the vague title, I can't really think of a better way to describe my problem. The problem is this, I am making a web browser with a tab system. I got the tabs to work fine, and when I push the tab button or Ctrl+T the … | |
Hi Everyone, I am having some problems here and it must be that I don't have something turned on or something. I just started a new program and have placed buttons, text boxes ect. on the GUI. The problem is that when I go to the code portion of the … | |
Hey guys Ive been making sudoku for a high school project and I need help getting it to check the groups of 9 boxes. It already checks the vertical and horizontal rows but not the boxes. I need to find a consistent formula to change it to the right section. … | |
Hi guys... i am new to .net programming i have made a small s/w for hospital management for the hospital of my relative...... no, they want my application to run in their office on Network....along with a common Database i have made the application in C#.NEt and another application in … | |
I need to FICA and Federal Tax % to a weekly paycheck calculator. I think I have everything in the program that needs to but, I think I might have a line in the wrong spot or in the wrong order. Any help would be greatly appreciated. Thank you. [code=VB] … | |
Hi, I have come to ask about "System.IO.StreamReader.ReadLine" I want it to read line 1, then 2, then 3, and it keeps going for 20 Please just give me the code to read line 5 for example, then i will do the rest, here is the code for you to … | |
Help me with the code or tutorial on how to connect vb .net with sql. dbase. thank you | |
printing RTF document in VB was OK. After converting to VB.NET, the RTF file being printed is placed wrongly on the paper and there is next page problem the code is like that Public Function Yaz(ByRef argFileName As String, ByRef argValues As Dictionary(Of String, String), Optional ByRef argPreview As Boolean … | |
Hi All, I urgently need help creating reports using vb.net 2008 build in reporting tool. I just want an example of how to pass a dataset to the report. I know how to do this using Crystal Reports, but I am clueless of how to do this using the build … | |
hi,i've read a lot of tutorial about how to make .rpt from VB.net Just use add new item menu..and the crystal report will appear at template... but my problem is when i click add new item, i cannot found crystal report in template..so how to add crystal report to template? … | |
Hello guys...i need help with this problem...i'm creating a Bistro system...now i'm doing the Reservation part...i'm having some trouble here...its like this : Start Time : End time : And there is a button, to show my table...the button is green in color at first(to show its available)...once i click … |
The End.