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
A

aerosmith2k1

@aerosmith2k1
About
Posts
13
Topics
8
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Delete stuff in memobox
    A aerosmith2k1

    I have a question is it possible to delete the content of a textfile which items are all in a memobox example AssignFile(f, 'C:\windows\system32\drivers\etc\hosts'); {Assigns the Filename} Append(f); {Opens the file for editing} //Writeln(f, '127.0.0.1 '+ memo); Writeln(F, Memo.text); //Could be multi-line... //Writeln(F, 'www.'+ Memo.text); //Could be multi-line... Closefile(f); {Closes file F} This appends to a file text from a memo field, I want a 2nd button that removes only the ontent that is currently in the same memobox. Trick is there is other items in the textbox so i cant just recreate the file. Anyone able to help ot give pointers?

    Delphi question help tutorial

  • Query API
    A aerosmith2k1

    Does anyone know which Api i can use in vb.net to replicate the ms access query design table. The box which holds the table name and items.

    Visual Basic csharp database design json

  • Ms access
    A aerosmith2k1

    Good Evening, I'm new to access besides what i did in highschool :), My issue is i have to crosstab's in which i want to make a report out of, to look something like this. Report 1. Heading.query1 heading.query1 heading.query1 heading.fromquery2 headingfromquery2 name value value value value name value value value value name value value value value My issues is, in design view, i can create a report only with the first query, If i choose the data itms from the 2nd query i lose the first items i already put, with errors saying the item does not exist. Is there an easyerway? I appreciate the assistance, Thanks,

    Database database design help question

  • If statment problem
    A aerosmith2k1

    I greatly appreciate your help, very Patient :)

    Visual Basic help

  • If statment problem
    A aerosmith2k1

    Im having issues with my if statments for this program. I have 3 ratiobuttons, each one should do a different task. The first one works alright, but now the 2nd one will not work because of the logic i believe. It should deduct the value from label3.text, only if label3 is higher then the amount of the cheque which is Textbox1 If the value of textbox1 is higher then label3 it has to display a messagebox saying insuficient funds. and then deduct a service charge which is declared as 10$ Here is my code. if anyone is able to assist, it would be greatly appreciated. Dim servicecharge As Integer Dim transaction As Integer Dim Balance As Integer ' Declare the value of service charge servicecharge = 10 transaction = TextBox1.Text Balance = Label3.Text ' Deposit Funds to the account If RadioButton1.Checked = True Then Label3.Text = TextBox1.Text End If ' Process a cheque through the account, confirming sufficient funds, If returned NSF the account ' will not be deducted the amount of the cheque, but will be charged 10 dollars. If RadioButton2.Checked = True Then Balance = Balance - transaction ElseIf transaction > Balance Then MessageBox.Show("Insufficient Funds") Label3.Text = Label3.Text - servicecharge End If ' Service charge processed on the account. If RadioButton3.Checked = True Then Label3.Text = Label3.Text - servicecharge End If End Sub

    Visual Basic help

  • Pogo Auto player
    A aerosmith2k1

    Anyone have any inside on a pogo or Yahoo auto player, how someone would be able to read the applet window, maybe using ocr. Or poker bots, Any info would be greatly appreciated, there are lots of companies that have pogo cheats, but i cant seem to grasp where to start, I tried tcp/ip packet monitoring, but found nothing interesting. As well is there any way i can load a java applet from a website on a C# form.

    C# csharp java

  • C# or vb.net Java applet
    A aerosmith2k1

    That is interesting and a good read on ocr Is there an easy way to load the applet on a vb form?

    Visual Basic csharp java game-dev help

  • C# or vb.net Java applet
    A aerosmith2k1

    I was wondering if anyone knows how to Read or communicate to/from a java applet. I'm an avid pogo player for some reason once i started i cant stop hehe. But i want to extract my token score, or even display the java game window in a win app. I am totally lost as to where to start, I can't find any tutorials on communication to java applets, or even how to display them in a certain language, Is there any help someone can give me, and point me in the right direction. It would be greatly appreciated, Thank you.

    Visual Basic csharp java game-dev help

  • notifyicon doesn't disappear when program crashes
    A aerosmith2k1

    Explicitly referencing and removing the icon from the tray // hide icon from the systray notifyIcon1.Visible = false;

    C# question tutorial

  • Location Identifier
    A aerosmith2k1

    You have to determine this by ip address then redirect them to the contry subdomain. here is some sample code. ' This sample code is provided as is, for aiding understanding. ' I make no warranty about its fitness for purpose. ' If you find it useful please use it. ' Don't expect me to sort out any problems unless you are prepared to pay me. ' Written by Paul Stanley Software http://www.pssuk.com ' Set IP string, 1st check for proxy sIP = Request.ServerVariables("HTTP_X_FORWARDED_FOR") if sIP = "" then sIP = Request.ServerVariables("REMOTE_ADDR") end if ' Handle extended IP addresses nComma = Instr(sIP, ",") if nComma > 0 then sIP = Left(sIP, nComma - 1) end if set oConnIP = CreateObject("ADODB.Connection") sConn = "Driver={Microsoft Access Driver (*.mdb)}; Dbq=" sConn = sConn & Server.MapPath(".") & "\IPCountry.mdb" sConn = sConn & "; Uid=admin; Pwd=" oConnIP.Open sConn set oRSip = CreateObject("ADODB.RecordSet") oRSip.ActiveConnection = oConnIP oRSip.CursorLocation = adUseClient nIP = Dot2LongIP(sIP) sSQL = "SELECT [CountryShort] FROM [IPCOUNTRY] WHERE " & CStr(nIP) & " BETWEEN [ipFrom] AND [ipTo];" oRSip.Open sSQL, oConnIP, adOpenForwardOnly, adLockReadOnly sCountry = oRSip("CountryShort") function Dot2LongIP (ByVal DottedIP) Dim i, pos, PrevPos, num ' Convert IP String like "1.12.124.22" to 32 bit integer if len(DottedIP) < 7 or isnull(DottedIP) or DottedIP = "unknown" then Dot2LongIP = 0 else PrevPos = 0 for i = 1 To 4 pos = InStr(PrevPos + 1, DottedIP, ".", 1) if pos = 0 then If i = 4 Then pos = Len(DottedIP) + 1 else Dot2LongIP = 0 exit function end If end if num = Int(Mid(DottedIP, PrevPos + 1, pos - PrevPos - 1)) PrevPos = pos Dot2LongIP = ((num Mod 256) * (256 ^ (4 - i))) + Dot2LongIP next end If end function

    C# com tutorial

  • need C# codes pls....
    A aerosmith2k1

    You're comment of cheating makes no sense what so ever. I agree with the google search and books are but that is not really a good idea unless you know what you are looking for. not all books related to programming are idea. Most Theory are questionable.

    C# csharp help

  • Compression.
    A aerosmith2k1

    Here goes my question. I would like to know how to select files from a window dialog, display the files selected in a grid. From there have an option to either add more files (eg notepad.exe) so you can add or remove them. From there when you are done selecting files Have another button that will compress all the files you selected and compress them using rar and the filename you designate. Any ideas and help would be greatly appreciated. Many thanks -- modified at 16:51 Sunday 8th January, 2006

    C# css help tutorial question

  • C# http post
    A aerosmith2k1

    I need assistance tring to login to a webpage using C# the link flirt.canoe.ca for starters. Anyone able to assist me with this? Thanks :) -- modified at 21:46 Sunday 9th October, 2005

    C# csharp question
  • Login

  • Don't have an account? Register

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