Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #2K
~59.2K People Reached
Favorite Forums
Favorite Tags

51 Posted Topics

Member Avatar for steven509

[QUOTE=steven509;529875]I need help generating a timestamp the same way you generate one in flash (actionscript) [code]new Date().getTime()[/code] That's how you generate it in actionscript, it returns a 13 character int. eg 1202497647515 [code] Dim date1970 As Date = "#1/1/1970 12:00:00 AM#" Dim datenow As Date = Date.Now days = DateDiff(DateInterval.Second, …

Member Avatar for JonyGreen
0
189
Member Avatar for Wilderness Bob

[QUOTE=Wilderness Bob;547848]I need to be able to limit the text entered into a text box, I need to make it so that only whole numbers can be entered and not decimal places. I have already limited it to just Numbers but need help with this. I think checking a box …

Member Avatar for Reverend Jim
0
2K
Member Avatar for rajsharma_85

[QUOTE=rajsharma_85;537222]Hi, How can I set the the cursor initially in the text box whenever my application executes? Please help. Thanks[/QUOTE] You could also use the focus in code and something like txtName.focus in the load form event and also use the radButton1.Enabled = True for the radio button

Member Avatar for Rahul47
0
5K
Member Avatar for shoebodh

[QUOTE=shoebodh;401596]I am a beginner in VB. I am trying to make a simple unit converter. Can please some body tell me how can I delete the last character of the number I enter in my inputbox? thank you[/QUOTE] You also could use the IsNumeric(TextboxName.Text) Then TextboxName.Text.Length -1 as the other …

Member Avatar for Reverend Jim
0
31K
Member Avatar for VidhyaThiyagu

I'm having a similar problem with SQL or Access either one. Using the MS Visual Studio DataSet binding source and dataset table binder. I can enter data into my forms, but it's not being saved into the tables, when I press the save button, or add button, created in VS.2005 …

Member Avatar for ahmedyakson
-1
2K
Member Avatar for SolTec

Is there a way by naming convention say for example to clear all textboxes with a "txt" name prefix in a form that has multiple textboxes? Or, am I going to have to name each textbox individually and use either "" or string.empty? Thank you in advance for any and …

Member Avatar for Pie46
0
9K
Member Avatar for SolTec

Hello, I'm looking to, with code, create a report that is numbered 1 through 10000 using MS Access, Visual Basic.NET or C#.Net. Any assistance, would be greatly appreciated. I know I'll have to use a looping structure, and logic with an If Then Else probably. Thank you in advance.

Member Avatar for adam_k
0
87
Member Avatar for gccriaz

[QUOTE=gccriaz;533883]plz tell me how can I add date box in the vb.net form[/QUOTE] adding a date box? do you mean a label or textbox control or are you talking about a calendar control, where the user can pick a date from a calendar type GUI? if it's a textbox or …

Member Avatar for Netcode
0
1K
Member Avatar for blondie.simon

[QUOTE=blondie.simon;541458]Hello I have written a piece of code that works fine on my computer and all other computers that I have tried it on when running XP. I have tried it on a few machines running vista and they have all worked fine but one of my customers is running …

Member Avatar for karthiyayiniyp
0
215
Member Avatar for Artgenos

If you are working on a LAN, you could have your VB.NET program look at your network neighborhood and it would give you the machines currently logged on and you could assertain the IP address through the ROUTER or FIREWALL by ID sampling.

Member Avatar for peter_budo
0
142
Member Avatar for rhinocort23

Be careful with what you wish for. If you record all the mouse activity, the current position of the X and Y axis you could easily over load the cache and potentially crash a computer. Keystrokes and Mouse location and clicks can and to qualify as "KEYLOGGERS" and therefore most …

Member Avatar for ARchy_wanted
0
123
Member Avatar for nourbee

[QUOTE=nourbee;552918]can anyone here can help me? i only want a simple program which is the user must enter the right serial number before enter into my program... im using VB 2005 and using PDA application (mobile pocket PC) plez help me.... i only want the simple code....[/QUOTE] The simplest, but …

Member Avatar for summerishere
0
182
Member Avatar for blondie.simon

[QUOTE=blondie.simon;552614]When I install my application I would like a shortcut to be added to the desktop. How can i do this? I am running Visual Studio 2005 Standard Edition Thanks Simon[/QUOTE] In the Setup and Deployment side of VB.NET 2005, there is a "desktop" are where you can place an …

Member Avatar for kishorrana
0
122
Member Avatar for SolTec

I have a very large MS Access database with over 80 tables and 15 queries. My problem is I can get the data that's in the tables to show and load, but I can't add any new records and get them to save in the database, using the DataBase Wizard …

Member Avatar for hepatit_h
0
75
Member Avatar for suganzeni

[QUOTE=suganzeni;551844]Hi all I am working with VB.NET 2003 for mobile application. Here there is no likn label option. But i want to open a html link in my VB.NET form. Like may be on button click event or in form load event. If any idea help me Thanks and Regards …

Member Avatar for aaroe
0
199
Member Avatar for SolTec
0
59
Member Avatar for SolTec

here is the code: [code] '//WAN IP Dim url As String Dim myexpression As New Regex("[1-2]?\d{1,2}\.[1-2]?\d{1,2}\.[1-2]?\d{1,2}\.[1-2]?\d{1,2}") Dim MyIPAddress As MatchCollection url = "http:\\www.whatsmyip.com" Dim objWebClient As WebClient = New WebClient Dim objData As Stream = objWebClient.OpenRead(url) Dim streader As StreamReader = New StreamReader(objData) Dim HostIP As IPAddress HostIP = Dns.GetHostEntry(Dns.GetHostName).AddressList.GetValue(0) …

-1
78
Member Avatar for SolTec

I would like to know how to populate a listview from an MS Access database and it be all the tables with the tbl prefix? Thank you in advance for any and all assistance.

Member Avatar for nob_sambo
0
40
Member Avatar for SolTec

I would like code to populate comboboxes with data from my MS Access database. I can do this with textboxes, but have hit deadends when trying to figure out how to do it with comboboxes and listboxes. Each database has a minimum of two fields. A description field and autoincrementer. …

Member Avatar for Ramy Mahrous
0
105
Member Avatar for SolTec

I have a program that I'm building and I have a form load event that loads the data from a table, but when I try and load the data from a query I get an error. Here is my code: MyTable = MyDa.GetData() If MyTable.Rows.Count > 0 Then Dim MyRow …

Member Avatar for Jx_Man
0
139
Member Avatar for _::suhanna::_

[QUOTE=_::suhanna::_;553260]would you all help me? how do i do, when i double click at item using list view then bring and display the items at textbox and option button at the another form??please help me...im in urgent...thank you so much..[/QUOTE] When you double-click on the listview box, you are actually …

Member Avatar for SolTec
0
1K
Member Avatar for shadowsong23

[QUOTE=shadowsong23;552715]Hi my name is Cristina I'm a Visual Basic newbie and my non-teaching professor at school virtually just dumped out projects for us to do without teaching anything and just giving out hand-outs.My problem is im having a hard time putting source codes in because its like hard for me …

Member Avatar for bwkeller
0
120
Member Avatar for SolTec

I'm attempting to write a function that checks users input and verifies it's numeric. When it isn't I would like to keep the part of the string that's numeric and remove the last character after a messagebox pops up alerting the user to the violation. Here is the code I …

Member Avatar for bwkeller
0
121
Member Avatar for borito
Member Avatar for rapperhuj

[QUOTE=rapperhuj;552442]hi, how to make a textbox with inputs are on the button.? then the textbox will accept all the input buttons chars. example.. i hve an alphatical buttons from A to Z.. i want that the user will input on the textbox by means of buttons not on manually type.. …

Member Avatar for samichou6
0
152
Member Avatar for SolTec

I'm writing a small remoting application and I've checked SourceForge, Code Project and a many others seeking to find how to serialize and deserialize mouse and keyboard events remotely. Is there anyone out there that has "working" code that I can work from to build my application? Thanks in advance …

Member Avatar for SolTec
0
211
Member Avatar for dealered

[QUOTE=dealered;552943][B][/B]I have an application that was written for me by a programmer who represented VFP as the "best thing since sliced bread" and that would be robust for many years in the future and more importantly handle huge customer databases over a LAN instantly. Now, after two years the server …

Member Avatar for SolTec
0
110
Member Avatar for bornok15

[QUOTE=bornok15;542400]I've been working with a class module to make my connection codes abit shorter but when i removed my connection from the class and made it public it was not working anymore. The way I use the class lcon = New ADOcon lds = New DataSet Dim ltb As DataTable …

Member Avatar for JRSofty
0
611
Member Avatar for SolTec

I have a form that is supposed to update tblMain in my database, and when I press btnSave it says in a messagebox, saved, but when I look at the table or try and recover the data from the dataset all I see is NULL values. Any help would be …

Member Avatar for VB_help
0
143
Member Avatar for SolTec

Thank you in advance for any an all assistance. Is there a way to programatically get the Record number and the of {0} count, without using the navigation wizard in VB.NET 2005, in a label or textbox? Michael

0
51
Member Avatar for charitha_sharma

[QUOTE=charitha_sharma;543574]hello all i have experience with windows forms programming but now i have to work independently for the whole project i need help in two topics pls help me 3 clients will be connected to my server front end : VB.Net my database : Oracle my question is how to …

Member Avatar for charitha_sharma
0
86
Member Avatar for William

[QUOTE=William;2725]Hello, I am new to Visual Basic.NET, and programming. I am wondering if someone can help me get to understand the VB.NET language. I learned some visual basic 6, but none of that seems to works anymore in the new version. Before in VB6 I could make a chat client …

Member Avatar for arjunsasidharan
0
591
Member Avatar for mi6_thor

[QUOTE=mi6_thor;367758]hi frnz!...m a comp. Sc diploma student n m in2 my final(project) semester....whre we need 2 submit our own projects. i hav been asked 2 prepare a Quizzing software...much similar 2 those conducting online exams lyk the MCSE etc....based on VB n MS-Access. plz help me on how 2 start …

Member Avatar for SolTec
0
153
Member Avatar for nadith_cs

Look at your vbresult function for messageboxes. It allows you to capture the button event procedure and know what button(s) the user has pressed and based on this you can you a logic statement, i.e. If Then Else statement

Member Avatar for harryl5
0
160
Member Avatar for mark192

[QUOTE=mark192;541208]thanks, this is exactly what i was looking for, however the string line of code seems to only return the last character's value in the string. Is there a way to return every characters value in the string on one label? Say "dd" = 100100 rather than "dd" = 100... …

Member Avatar for SolTec
0
130
Member Avatar for Texpert

[QUOTE=Texpert;197589]Hi, I have two drop down lists boxes, upon page load first DDL gets populated and depending on user's selection on first DDL second DDL (child DDL) gets populated, works fine. My problem is when user goes back and makes another selection on first (parent) DDL (note that it's not …

Member Avatar for SolTec
0
136
Member Avatar for mbeshr

[QUOTE=mbeshr;401473]i face problem when i binid data from mysql dat base from vb.net 2005 using dotnet cinnector all data was show perfect except the auto increament field in the tables and i dont know why it didnt work please help mahmoud[/QUOTE] That's because the auto increment in VB doesn't exist, …

Member Avatar for SolTec
0
95
Member Avatar for Proton

[QUOTE=Proton;63947]Hi, first off I'd like to say that this is my first post here. I just finished typing up a long explanation of my problem. And when I submitted it, I wasn't logged in anymore, so I logged in, but then subsequently lost my entire post. All I can say …

Member Avatar for SolTec
0
181
Member Avatar for soa24434

[QUOTE=soa24434;408784]Hi. I have just recently bought Microsoft Visual Studio Professional 2005. It came with 14 CD's, which are SQL server 2005 Developer Edition 64-bit (2 cd's) SQL server 2005 Developer Edition IA 64-bit (2 cd's) Microsoft Visual Studio 2005 Pro Ed Academic (2 cd's) MSDN library for Visual Studio System …

Member Avatar for SolTec
0
147
Member Avatar for sniper1983

[QUOTE=sniper1983;488089]Hi.. I have to use a webservice on my current vb-classic page, and have some code (a webservice) written in vb.net which does match my requests. My question is wether I can use this .net webservice in my vb-page or not. I can not modify all the code to .net …

Member Avatar for SolTec
0
164
Member Avatar for nsm_madhavi

[QUOTE=nsm_madhavi;533994]HAI! CAN ANYONE HELP ME TO RETREIVE DATA BETWEEN TWO DATES FROM MS-ACCESS USING VB.NET. I HAVE TAKEN DATETIMEPICKER CONTROLS. THIS IS THE CODE . ITS RETURS ERROR. PLEASE SOLVE THIS PROBLEM. Imports System.Data.OleDb Public Class Form7 Dim con As OleDbConnection Dim cmd As OleDbCommand Dim dr As OleDbDataReader Private …

Member Avatar for SolTec
0
642
Member Avatar for SolTec

I'm building an application in VB.NET and C#.NET similar to RDP in Windows XP. I'm having a problem getting the images of the screen captures in a WAN environment to be anything close to realtime. In the LAN environment, everything works really fast and is quite efficient. In the WAN …

0
66
Member Avatar for SolTec

Is there some simple code to move first, previous, next and last in a dataset without using the wizard and creating your own buttons? Thanks in advance for any and all assistance, it it greatly appreciated.

Member Avatar for emurf
0
71
Member Avatar for Raju5725

[QUOTE=a7med_prof;494344]how , also i want to make that ?[/QUOTE] You can manipulate the command prompt in Windows and run the IPCONFIG /release and IPCONFIG /renew by running the msc associated with the cmd run command.

Member Avatar for SolTec
0
98
Member Avatar for rhinocort23

[QUOTE=rhinocort23;509341]sorry, didnt know how to edit other post, here is a little update, right now i have all the classes my teacher gave me to put on there, heres the updated form. [url]http://s252.photobucket.com/albums/hh13/xjnx/[/url] i still need help with the other questions above but i ran into another problem so here …

Member Avatar for SolTec
0
103
Member Avatar for Xooku

[QUOTE=Xooku;525384]Hello there, I have a “load” event on a startup form with a notifyicon that starts a timer on another form to execute code at a given time from settings in My.Settings. This works well. Then I make use of a login form to stop the timer and load the …

Member Avatar for SolTec
0
125
Member Avatar for debra.duggan

[QUOTE=debra.duggan;525378]Hi There Pls exscuse me I am an absolute newbie. I hv setup an vb.net 2003 app that accesses and old access mbd but i need to have the db created during setup - has anyone got any advice or ideas Thank u Colwyn[/QUOTE] Your post is a bit confusing. …

Member Avatar for SolTec
0
71
Member Avatar for successalways

[QUOTE=successalways;528241]please i need the result as quickly as possible[/QUOTE] You can use the string conversion in VB.NET ToUpper to convert to all upper case, before comparing to the database, or use ToProper which will capitolize the first letter of each string of text, but not really good, if you have …

Member Avatar for SolTec
0
555
Member Avatar for nowitzk

[QUOTE=nowitzk;519297]How would you disable the ctrl, alt, delete, windows, and tab keys? Thanks[/QUOTE] Every keystroke in Windows has an ASCII number and you can disable any key or combinatin of keys using these ASCII key codes. Mouse clicks can also be disabled in the same way. Look for an ASCII …

Member Avatar for SolTec
0
369
Member Avatar for Jamesharks

With Access, need to know version and what type of security you are using for your application!

Member Avatar for SolTec
0
94

The End.