Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #3K
~7K People Reached
Interests
Robotics, Computer Programing
PC Specs
Laptop: 2.2GHz, 3Gb DDR2, 500Gb HDD
Favorite Tags

23 Posted Topics

Member Avatar for mrclark

I am working on sessioning scripts however my cookies are not carrying over from page to page. I include the session script on every page which checks the $_COOKIE['session'] cookie, and if set, keeps the session data, if not, creates a guest session and sets a cookie with a new …

Member Avatar for mrclark
0
103
Member Avatar for mrclark

I am not to sure where to put this post but this seemed like the best place. I am currently writing scripts for page redirects, however, I can not get my .htaccess redirects working first. I need to take from my root, and redirect to a subscript: http://www.example.com -> /index.php …

Member Avatar for Squidge
0
249
Member Avatar for WASDted

I Got TWO Combined Into One Sorta? One Side Of Basement: 52" Plasma LCD 2 300W Speaker Cabs - In Closet 500W Amp w/ CD Changer, Tuner, EQ HDMI - HD DVR Cable Box HDMI - HD DVD PLayer w/ Upscaling (No BluRay =/) Above WorkBench On Opposite Side Of …

Member Avatar for rocco88
0
443
Member Avatar for mrclark

I have made a program consisting of about 15 smaller projects, each with their own .dll/.exe I need to make a custom installer that will prompt the user for different options, which the installer setup built into VS10 does not support. I need to be able to have this run …

Member Avatar for Luc001
0
183
Member Avatar for mrclark

I am hosting an even next Saturday that i wish to be able to broadcast a webcast for. I own a domain through [url]www.globat.com[/url] (GX01 Plan) and i was wondering if i could publish a live video stream to this. I have no idea where to start and any and …

0
62
Member Avatar for mrclark

I have a serial LCD Display that i am developing an application to manipulate. The problem that i am having is that i need to send commands to the device in HEX format. I made a program that takes user input, converts it to HEX, and then inserts its own …

Member Avatar for AndreRet
0
101
Member Avatar for Captain_Jack

Please explain what you are trying to do. The code does not make sense to me. If the value is between Min and Max then it will go to 0 Your ELSE statement will never execute because if the value is greater then the Max it will Error.

Member Avatar for mrclark
0
269
Member Avatar for hacks14

try using this [URL="http://www.msfn.org/board/topic/70524-set-the-ip-address-in-vb6/"]msfn.org[/url] page to help create the program. Wont use shell scripts, but changes IP within the program using some registry values. it is in vb6 so some will have to be converted for .net

Member Avatar for alc6379
0
294
Member Avatar for mahmoud209

if i understand correctly, try using this to load a text file into a 2-dim array [code] imports system.io [/code] [code] dim streamreader as streamreader streamreader=file.opentext("c:\pathtofile.txt") 'or use an open file diag dim filetext as string = streamreader.readtoend dim yarray() as string dim xarray() as string yarray=filetext.split(environment.newline) 'slipt the file …

Member Avatar for mahmoud209
0
139
Member Avatar for hueikar
Member Avatar for hacks14

[code] imports system.io [/code] try this call the sub on a button, and input your ipaddress to pass to the function. after the file runs you will need to delete the file if you delete it to early it will not complete running. and your command is incorrect.. [code] Private …

Member Avatar for mrclark
0
96
Member Avatar for hacks14

I am assuming that 'IPAddy' Is a variable declared the contains a number in the x.x format. Try Using This: [code] Shell("runas.exe /users:administrator netsh interface ip set address" & Chr(34) & "Local Area Connection" & Chr(34) & "static 10." & IPAddy & ".4") [/code]

Member Avatar for hacks14
0
102
Member Avatar for mrclark

i am creating a web-album for my site. what i am trying to do, is on the homepage, if a user clicks on a specific thumbnail, it will got to the album using a #image[number] tag. i have this code so far for changing the images based on the tag …

Member Avatar for mrclark
0
88
Member Avatar for mrclark

I am making a library that will load UI files in which a user can customize the UI of the program. The UI file is arranged that it is like vb code and that to set the text and location of a button the user would use the following UI …

Member Avatar for lolafuertes
0
114
Member Avatar for tharder

what nikie said is correct, in vb you do not need to declare forms, they are already recognized by the program. Under Form 1 - Button 1.Click Form2.show() Under Form 2 - Button 1.Click Form1.TextBox1.Text = "Test"

Member Avatar for ohjiroChan
0
823
Member Avatar for mrclark

i am trying to make a program that in the even that a message is received when the program does not have focus a message box will be displayed, however, using: [code]if me.focused = false then TrayIcon.BalloonTipTitle = "New Message From " & array(0) TrayIcon.BalloonTipText = array(1) TrayIcon.ShowBalloonTip(5000) end if[/code] …

Member Avatar for mrclark
0
101
Member Avatar for mrclark

I am trying to make a TCP chat program, but instead of having people enter in the ip of the computer they wish to talk to everytime, i would like the program to be able to listen on all ip addresses, so that it will provide for a better user …

Member Avatar for kvprajapati
0
247
Member Avatar for mrclark

I have never made a game before, but have been interested for a while, but i have no idea where to start. could someone recommend some software on where to start, and how to actually program a game. Thanks ~Matt

Member Avatar for ajmacca
0
119
Member Avatar for mrclark

I am trying to make a program for my Windows Mobile 6.1 Professional Device that communicates via TCP/WiFi To my pc, however, on my windows mobile device, when i launch a program with an import [system.net] it keeps giving me an error, and it is unable to launch the program. …

Member Avatar for mrclark
0
97
Member Avatar for mrclark

I am trying to make a drawing app integrated into a program that i am making, but i am having the problem of trying to save the drawing. [code] Private Sub SaveDrawingToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SaveDrawingToolStripMenuItem.Click SaveDrawing.ShowDialog() Try DrawPad.Image.Save(SaveDrawing.FileName, System.Drawing.Imaging.ImageFormat.Bmp) Catch ex As Exception MessageBox.Show("Drawing …

Member Avatar for Teme64
0
132
Member Avatar for mrclark

i have been experimenting around with simple programs using ave and open dialogs for text document and things, but i problem that i have just encountered, is that i made a simple text editor with a richtextbox, and i tried to save it in *.c, but when i open it …

Member Avatar for Vandamn
0
102
Member Avatar for mrclark

I Am Using VB.NET 2008 Express Edition, and am trying to make a program that controls the mouse position with a joystick on the a nintendo classic controller, which returns a value between [ -.54 ] and [ +.54 ]. I wanted so that the position vertically of the mouse …

Member Avatar for Teme64
0
140
Member Avatar for Intercorp

I myself, had had the same problem with this, after digging around, i discovered that the "setup.exe" is not a real setup file, all it does is copy all the files to the LocalData/AppData folder. I also found, that since the publish option is an option integrated into the compiler, …

Member Avatar for mrclark
0
2K

The End.