20,284 Topics

Member Avatar for
Member Avatar for saj_amo

hi guys , help me in this i have made a report in crystal reports 10 in that i want the field only displays data without the special characters like its showing 11-00-3200-002-37 but i want it would show the field like this 1100320000237 without (-). so does any one …

Member Avatar for saj_amo
0
288
Member Avatar for jayawant.sawant

Hi, How to captures instant messages of msn live messenger.How to captures(keystrokes)form live conversion of msn in vb.net.how to create the txtfile of that capture keystrokes of that instant messeges og live messenger of MSN. Thanks,

Member Avatar for Dr.Cooper
0
65
Member Avatar for kroysemaj

Okay so I just got my first contract job... from my wife. (Dun Dun DUNN!) My wife works in clinical research and spends a lot of time traveling and scheduling site visits for her job. She asked me if I could write a program for her that would give her …

Member Avatar for kroysemaj
0
135
Member Avatar for altXerror

sorry for long post name. anywyas, i'm converting an emulator a friend of mine made into VB form C. i came into some problems at the end where return is casuing an error. here is the code: [CODE] 'The following #define macro was replaced in-line: 'ORIGINAL LINE: #define ROPCODE(offs) ((oprom[offs] …

0
93
Member Avatar for MrVBLearner

I am trying to control the security board using the Windows Firewall which connects to my server that was made in VB.Net. My only problem is when I open the Windows Firewall my server crashes. It also displays this error: "Error, win%fir%90y4e does not support this server. Please upgrade you …

Member Avatar for Crack Cracker
0
289
Member Avatar for Mike Bishop

I am doing some calculations and the outcome of those sums are like 0.743449889958 the sum is calulated like so textbox.Text = (textbox1 * _Units) / _priceincur how would i format the string so that it only shows 0.7434 (rounded)

Member Avatar for Luc001
0
120
Member Avatar for Mykal73

I have an application which updates some files overnight from an oracle server. the application runs fine until at the very end when it closes. Then I get the message "Application has encountered a problem and needs to close. We are sorry for the inconvenience." when I click on the …

Member Avatar for Mykal73
0
114
Member Avatar for chris007

hello guys. i got a method that someone showed here BUT it doesnt work 100%... i mean..i put this folder C:\Users\chris\Documents .. if i search for *.docx, it finds only the docx files that are in SUBFOLDERS inside the Documents.. it does NOT find docx files that are in C:\Users\chris\Documents …

Member Avatar for chris007
0
1K
Member Avatar for BattleBlazer

Hi This post is more for information purposes rather than help. I have just been tasked to investigate the upgrade for our applications to run on Windows 7. Oh, yes - easy one might say... Not!! We have a few applications running on a central Oracle server. To upgrade the …

0
43
Member Avatar for moone009

I'm working on an app to parse Excel files. I need to remove invalid characters in column 2 and then in column 3 I need to trim and upper that column. Any ideas? [CODE]Dim sql As String Dim xlApp As Excel.Application Dim xlWorkBook As Excel.Workbook Dim xlWorkSheet As Excel.Worksheet ' …

Member Avatar for sandeepparekh9
0
386
Member Avatar for harris7139

I work as a console technician for an audio company in the north eastern United States. My job is to prep and manage all of our audio console before they go out on tour. I would like to build an application to assist in our testing process. Basically all is …

0
44
Member Avatar for Tyster

Hello Everyone, I have what I hope will be a simple VB question: I am building an app with multiple forms. It has a MainForm, which is the main interface, and several sub-forms that are started using buttons on the MainForm. The MainForm Load method has some code that runs …

Member Avatar for Tyster
0
707
Member Avatar for horserider

[code] ListBox2.Items.Clear() Dim myCoolFolder As String = "F:\" Try For Each myCoolFile As String In My.Computer.FileSystem.GetDirectories _ (myCoolFolder, FileIO.SearchOption.SearchAllSubDirectories, "*.*") ListBox2.Items.Add(myCoolFile) Next Catch ex As UnauthorizedAccessException MsgBox(ex.Message) End Try MsgBox("Total Files: " & CInt(ListBox2.Items.Count).ToString("#,###,###")) [/code] This code is for listing all folders including subfolders. but when i run this code …

Member Avatar for chris007
0
1K
Member Avatar for BilalAKhan

Hi, I have a done the following steps which can help you understanding my problem: 1. I took a decimal point number, suppose 192.123456 2. Then removed the decimal point 3. Concatenated the L.H.S and R.H.S and stored it in a string 4. The string that I got was 192132456 …

Member Avatar for dxider
0
173
Member Avatar for pretom

[B]I have 3 textbox. I want to change Background color when cursor go there, other wise there will be no change.[/B] [B]How can i do this?[/B] [B]My mail address [EMAIL="pretom82@hotmail.com"]pretom82@hotmail.com[/EMAIL][/B]

Member Avatar for Luc001
0
381
Member Avatar for moone009

Variable 'loNode' is used before it has been assigned a value. A null reference exception could result at runtime. does anyone know why I am getting this error? [CODE]Imports System.Xml Module Module1 Sub Main() Dim doc As New XmlDocument Dim loNode As XmlNode Dim nodes As XmlNodeList doc.Load("C:\Desktop\Template.xml") nodes = …

Member Avatar for sandeepparekh9
0
101
Member Avatar for Joshua Kidd

Hello, Im creating a TS3 server admin tool. And Im having a Problem adding items to the DAtagrid View. Ive got like 8 Columns and I want to add this data to the correct Column But IDK What Im Doing Wrong [LIST] [*]# [*]Server ID [*]Server Port [*]Server Status [*]Clients …

Member Avatar for Joshua Kidd
0
145
Member Avatar for leo88

Hi, I wants to ask how to convert DBNull to Date type? [CODE] For Each row As DataRow In dt.Rows i = 0 Dim array As Object = row.ItemArray Dim a As String If array(i + 10) IsNot Nothing Then a = CDate(array(i + 10)).ToString("yyyy-MM-dd hh:mm:ss") Else array(i + 10) …

Member Avatar for leo88
0
1K
Member Avatar for BleepyE

Ive bin looking for some code to export the contents of a DataGridView to CSV so I can view it in Excel. I found this but ive got errors; [CODE]Dim sr As StreamWriter = File.CreateText(strExportFileName) Dim strDelimiter As String = strDelimiterType Dim intColumnCount As Integer = DataGridView.Columns.Count - 1 Dim …

Member Avatar for kvprajapati
0
3K
Member Avatar for moone009

I'm trying to figure out how to update the <to>,<from>,<heading>,and <body> through textboxes. Any ideas? [CODE] <?xml version="1.0" ?> - <note> <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget me this weekend!</body> </note>[/CODE]

Member Avatar for moone009
0
45
Member Avatar for bettybarnes

hi i have a stored image in my database. i want it to be displayed in picturebox. anyone here know how to that? here is my code [CODE]Private Sub ListView1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListView1.SelectedIndexChanged Dim index As ListView.SelectedIndexCollection = ListView1.SelectedIndices Dim i As Integer = …

Member Avatar for debasisdas
0
89
Member Avatar for ninjatalon

I'm pretty sure its a false positive. My program does create and delete files when using it. Is there a way to stop showing as a false postive?

Member Avatar for makman99
0
103
Member Avatar for deva.v

Hi i am trying to write dataset into excel using oledb connection. I get an error "The microsoft access database engine could not find the object 'testTable' Make sure that name and path is correct". I understand that dataset is not in the excel thats y i get an error …

0
57
Member Avatar for ninjatalon

My table gets its information from a Mysql database online. I'm not sure which would be quicker to retrieve the row that contains the information specified. EG. table1 Name________Age John_________5 Joe__________20 At this moment i have a while loop that looks for john and gives me the row. But is …

Member Avatar for debasisdas
0
134
Member Avatar for saj_amo

Hi guys, I am creating a window application in vb.net that need to use sql server database. I want to install this application to client machine without installing sql server so that my application can still connect to a database is there any way for this ?

Member Avatar for saj_amo
0
99
Member Avatar for ryan311

can anyone help me? i have a problem in converting a 1,000,000.00 number to words i always get result 1 MILLION THOUSAND PESOS ONLY which is wrong. it should be 1 MILLION PESOS ONLY here is my code [CODE]Public Function ConvertMoneyToText(ByVal value As String) As String value = value.Replace(",", "").Replace("$", …

Member Avatar for kvprajapati
0
185
Member Avatar for deva.v

Hi I would like to get simple code on reading and writing into excel files using console application in vb.net.

Member Avatar for kvprajapati
0
89
Member Avatar for deva.v

Hi, I've created an application using VB.net windows application, but now i want to invoke it only from command prompt by giving inputs and outputs. How can i give inputs and get outputs to windows application in command-prompt. My windows application takes file as input and it process and makes …

Member Avatar for codeorder
0
133
Member Avatar for moone009

I'm very new to programming and was wondering why I am receiving a warning. "Function Checkbox doesnt return a value on all code paths. A null reference exception could occur at runtime when the result is used" I then want to execute this function through button.click event: CheckBox.ExecuteNonQuery() [CODE]Function CheckBox() …

Member Avatar for Momerath
0
125
Member Avatar for Steve Mac

Hi everybody.. was wondering if it is possible for a person to set a specific height value for the detail section in crystal reports.I want the section to have 10 records and maintain a certain height.If the records are for example 2 or any number less than 10, the detailed …

Member Avatar for Steve Mac
0
95

The End.