User Name
Password

Go Back   Planetarion Forums > Search Forums
Register FAQ Members List Calendar Arcade Today's Posts

Showing results 1 to 146 of 146
Search took 0.01 seconds.
Search: Posts Made By: Caesar2
Forum: Programming and Discussion 10 Aug 2006, 11:48
Replies: 6
Views: 2,368
Posted By Caesar2
Re: SQL help

This depends on what database you are using.
SQL Server has the stored procedure sp_tables to list all tables.
I don't know about other databases.
Forum: Programming and Discussion 26 Jul 2005, 18:15
Replies: 4
Views: 1,916
Posted By Caesar2
Re: Exporting to Excel

You can use this at the beginning of your page:

<%
Response.ContentType = "application/vnd.ms-excel"
%>
Forum: Programming and Discussion 25 May 2005, 17:38
Replies: 4
Views: 1,979
Posted By Caesar2
Re: User defined criteria on dataselection

You could make some kinda grid like e.g. the SQL Server query designer:

Field Sort Criteria
+----------+----------+----------+
| | | |...
Forum: Programming and Discussion 21 May 2005, 14:44
Replies: 15
Views: 2,773
Posted By Caesar2
Re: VB 6 -Skipping lines of code...

Found here (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbenlr98/html/vamsgproceduretoolarge.asp)
Forum: Programming and Discussion 12 May 2005, 18:05
Replies: 5
Views: 2,217
Posted By Caesar2
Re: boohoo... VB is being nasty again - returning user defined types from a class module

heh you asked this before :) (http://pirate.planetarion.com/showthread.php?t=181153&highlight=vb+class+module)
Forum: Programming and Discussion 18 Apr 2005, 18:38
Replies: 5
Views: 2,584
Posted By Caesar2
Re: SQL - Selecting a value from the record before the current one (tough one)

SELECT a.Time AS End,
iif((SELECT TOP 1 Time
FROM Time_RawData
WHERE a.Time >Time_RawData.Time
ORDER BY Time DESC) IS NULL,
...
Forum: Programming and Discussion 14 Apr 2005, 20:08
Replies: 10
Views: 2,766
Posted By Caesar2
Re: [database] Help me sort this out in my brain!

You can also use functions like Day(fldDate), Month(fldDate), Year(fldDate)
Forum: Programming and Discussion 14 Apr 2005, 17:39
Replies: 10
Views: 2,766
Posted By Caesar2
Re: [database] Help me sort this out in my brain!

Use a date instead of DayID:

Table dayitems
--------------
ItemID (Primary key)
fldDate
FuelCost
FuelLitres
EmptyMiles
FareMiles
Forum: Programming and Discussion 29 Mar 2005, 06:32
Replies: 6
Views: 4,516
Posted By Caesar2
Re: VB Help

Use SELECT COUNT(*) in your SQL query?
Forum: Programming and Discussion 18 Mar 2005, 07:47
Replies: 35
Views: 4,076
Posted By Caesar2
Re: What kind of "special server" with a P200?

It depends on what you want to program, but you can use ASP (maybe in combination with a database?).
If you know VB, then learning ASP isn't difficult (it is vbcript). Win98 has a personal...
Forum: Programming and Discussion 17 Mar 2005, 23:55
Replies: 35
Views: 4,076
Posted By Caesar2
Re: What kind of "special server" with a P200?

Why not use win2k? Although the 32 Mb RAM might be a problem, it is much more stable than win98.
Forum: Programming and Discussion 22 Feb 2005, 00:40
Replies: 15
Views: 2,487
Posted By Caesar2
Re: VB6 - executable size

Using gif's and jpg's instead of bmp's will decrease the size of the executable with the same amount of size decrease of the pictures.
Forum: Programming and Discussion 17 Feb 2005, 08:37
Replies: 21
Views: 2,800
Posted By Caesar2
Re: SQL - conditional join - or something like that

Using Iif(FIELDNAME is null, 0, FIELDNAME) seems to work.
Forum: Programming and Discussion 17 Feb 2005, 00:58
Replies: 21
Views: 2,800
Posted By Caesar2
Re: SQL - conditional join - or something like that

I just did a try myself and it doens't seem to work here either. When I try it in an Access module it works however!
I'm afraid that only google will help you to work around that, or you use the...
Forum: Programming and Discussion 16 Feb 2005, 08:34
Replies: 21
Views: 2,800
Posted By Caesar2
Re: SQL - conditional join - or something like that

If you look in the VB menu under Project --> References is there an ISMISSING reference? Can you paste your code?
Forum: Programming and Discussion 15 Feb 2005, 10:51
Replies: 21
Views: 2,800
Posted By Caesar2
Re: SQL - conditional join - or something like that

How do you use it? In the query designer everything works fine.
Forum: Programming and Discussion 15 Feb 2005, 10:14
Replies: 21
Views: 2,800
Posted By Caesar2
Re: SQL - conditional join - or something like that

If the default factor is always 1, then you can use:

SELECT Work.Name, nz(factor.Factor,1) AS Factor
FROM [Work] LEFT JOIN factor ON Work.WorkID = factor.WorkID;


If you want the default...
Forum: Programming and Discussion 14 Feb 2005, 15:57
Replies: 21
Views: 2,800
Posted By Caesar2
Re: SQL - conditional join - or something like that

I think this is what you are looking for:

SELECT nz(Work.Name, 0) AS Name, Factor.Factor
FROM Factor LEFT JOIN Work ON Factor.WorkID = Work.WorkID;


The Left Join tells your db to get all...
Forum: Programming and Discussion 14 Feb 2005, 15:33
Replies: 21
Views: 2,800
Posted By Caesar2
Re: SQL - conditional join - or something like that

Use NZ(value, replacevalue). In Access, ISNULL() only checks if a field is null and returns true or false (unlike most other db's)
Forum: Programming and Discussion 10 Feb 2005, 19:22
Replies: 10
Views: 2,120
Posted By Caesar2
Re: Database performance tables - query times

MS SQL can make an execution plan (more or less what you call "precalculated") and reuse it other times, therfore it is faster, maybe you can't always notice this, but in large sql's you can...
Forum: Programming and Discussion 10 Feb 2005, 18:51
Replies: 10
Views: 2,120
Posted By Caesar2
Re: Database performance tables - query times

If you go for MS SQL, use views/stored procedures and create indexes on your tables
Forum: Programming and Discussion 8 Feb 2005, 00:01
Replies: 21
Views: 2,800
Posted By Caesar2
Re: SQL - conditional join - or something like that

With a right join you can get all the records from table1:

SELECT Table1.student, Table1.courseID, Table2.courseID, Table2.name
FROM Table2 RIGHT JOIN Table1 ON Table2.courseID = Table1.courseID;...
Forum: Programming and Discussion 21 Dec 2004, 10:07
Replies: 28
Views: 2,539
Posted By Caesar2
Re: text files and combo boxes in visual basic

I see now that it only seems to work in vbscript, but anyway it is pointless.
Forum: Programming and Discussion 21 Dec 2004, 09:59
Replies: 6
Views: 2,335
Posted By Caesar2
Re: Passing Flash Variables about

The Flash code:

import mx.services.*;
/* import all of the webservices class packages.
Note: if you do not use the above import statement you will have to
call the web service with the full...
Forum: Programming and Discussion 19 Dec 2004, 11:43
Replies: 28
Views: 2,539
Posted By Caesar2
Re: text files and combo boxes in visual basic

Iirc square brackets in VB are only used for variable names that normally are not allowed:
Dim [Spaces are bad!] As String
Forum: Programming and Discussion 17 Dec 2004, 23:00
Replies: 6
Views: 2,335
Posted By Caesar2
Re: Passing Flash Variables about

It can be done with webservices in ASP.NET. In ASP I don't have a clue. I can show you an example when I'm at work Tuesday
Forum: Programming and Discussion 17 Dec 2004, 22:53
Replies: 5
Views: 2,004
Posted By Caesar2
Re: SQL from Hell. Reserved keywords as column names.

Is FDate a date? In normal SQL you have to use a ' to start and end a date, in Access you need a #. Did you try that?
Forum: Programming and Discussion 15 Dec 2004, 09:55
Replies: 5
Views: 2,004
Posted By Caesar2
Re: SQL from Hell. Reserved keywords as column names.

Use the Access Query Designer and copy the SQL, see what happens.
Btw it works for me, when I test it in Access vba
Forum: Programming and Discussion 7 Dec 2004, 17:32
Replies: 16
Views: 2,387
Posted By Caesar2
Re: Anyone good with vb?

Dim i As Long
Dim myArray(35000) As Integer
For i = 1 To UBound(myArray)
myArray(i) = i
Next

Will crash your program
Forum: Programming and Discussion 7 Dec 2004, 13:12
Replies: 16
Views: 2,387
Posted By Caesar2
Re: Anyone good with vb?

That's because you dimmed it as Integer, dim it as Long
Forum: Hardware and Tech Support 10 Nov 2004, 23:54
Replies: 14
Views: 8,894
Posted By Caesar2
Re: Wireless Help?

Most routers can copy the MAC adress of computers, so if you registered with the laptop's MAC adress, copy that in your router. I don't know if this solves your problem, but Chello usually identifies...
Forum: Programming and Discussion 4 Nov 2004, 19:47
Replies: 4
Views: 2,196
Posted By Caesar2
Re: VBA in Access Question

You need at least a Source and an ActiveConnection as parameter.
Paste your code if it still doesn't work
Forum: Programming and Discussion 3 Nov 2004, 23:53
Replies: 4
Views: 2,196
Posted By Caesar2
Re: VBA in Access Question

The SQL you need:

SELECT COUNT(*) FROM tblHWPurchasing WHERE MasterOrderRef = ordernumber


The function:


Function strPurchaseOrderRef(Ordernumber As Integer) As Integer
Dim rs As...
Forum: Programming and Discussion 29 Oct 2004, 23:15
Replies: 4
Views: 2,576
Posted By Caesar2
Forum: Programming and Discussion 26 Oct 2004, 22:47
Replies: 11
Views: 3,155
Posted By Caesar2
Re: Using brackets

There are probably better ways, but this works:


Private Sub Form_Unload(Cancel As Integer)
Shell (App.Path & "\" & App.EXEName & ".exe")
End Sub


Although it won't restart itself when...
Forum: Programming and Discussion 25 Oct 2004, 08:57
Replies: 7
Views: 1,905
Posted By Caesar2
Re: Arrays

That was vb code btw, the correct code for asp has to be


<%
Dim a(3) 'Start array
Dim b 'String where all values are stored
Dim c 'End array
a(0) = "a"...
Forum: Programming and Discussion 21 Oct 2004, 22:47
Replies: 7
Views: 1,905
Posted By Caesar2
Re: Arrays

Dim a(3) As String 'Start array
Dim b As String 'String where all values are stored
Dim c() As String 'End array
a(0) = "a"
a(1) = "b"
a(2) = "c"
a(3) = "d"
b = Join(a, ";") 'Get the...
Forum: Programming and Discussion 7 Oct 2004, 06:57
Replies: 21
Views: 2,632
Posted By Caesar2
Re: Forms, null values, and PHP/MySQL

Are the fields foo and foo2 number fields? I don't know MySQL, but from experience with other db's, I know that some convert an empty string to 0 in number fields.
You can check if all fields on the...
Forum: Programming and Discussion 25 Aug 2004, 23:13
Replies: 5
Views: 1,969
Posted By Caesar2
Re: Parsing other peoples pages and extracting content

Use XMLHTTP. I used it with asp, but it can be done clientside with javascript aswell.
I found this at google:


<html>
<body>

<script>
var x = new ActiveXObject("Msxml2.XMLHTTP");...
Forum: Programming and Discussion 5 Aug 2004, 06:59
Replies: 10
Views: 2,689
Posted By Caesar2
Re: MS Access and web development

If you go for ADO, I used this (http://oberon.idunno.org/sql/Data%20Access%20using%20Microsoft%20Active%20Data%20Objects.pdf) document. It is an explanation of the objects in ADO and how to use them.
Forum: Programming and Discussion 2 Aug 2004, 22:24
Replies: 5
Views: 1,462
Posted By Caesar2
Re: windows services?

Visual Studio.NET has the capability of making windows services. If you have experience with it and TCP/IP programming, you can make a small application that listens to a port and starts up the...
Forum: Programming and Discussion 5 May 2004, 11:14
Replies: 6
Views: 3,319
Posted By Caesar2
Re: SQL - hierarchical structure

I searched on the internet and found some interesting things:
http://forums.devarticles.com/showthread.php?t=4469

The first post has some links to what they call Nested-Set Model of Trees. I...
Forum: Programming and Discussion 5 May 2004, 06:50
Replies: 6
Views: 3,319
Posted By Caesar2
Re: SQL - hierarchical structure

The second way is indeed not a great method and moving a node to another place also needs all childs to be edited. The first way has the drawback that you can't search in a child's nodes and you have...
Forum: Programming and Discussion 4 May 2004, 20:59
Replies: 6
Views: 3,319
Posted By Caesar2
Re: SQL - hierarchical structure

I was once busy with something like favourites that i could acces via internet (never finished it...) and I came up with something like this:

Table
--------------------------
ID (Autonumber)...
Forum: Programming and Discussion 2 May 2004, 21:47
Replies: 8
Views: 3,324
Posted By Caesar2
Re: MySQL JOIN help...

This has nothing to do with your question, but are you sure room-code is primary key and not foreign key in this table? Else it would mean that a room can only booked once.
Forum: General Discussions 15 Mar 2004, 21:15
Replies: 10
Views: 2,246
Posted By Caesar2
Re: why is it...

so you are this (http://story.news.yahoo.com/news?tmpl=story&cid=573&ncid=757&e=3&u=/nm/20040315/od_nm/life_dutch_toilet_dc) guy? :p
Forum: General Discussions 10 Feb 2004, 19:47
Replies: 18
Views: 2,083
Posted By Caesar2
Re: Excel help

Select a row, Copy, Insert copied cells?
Forum: Programming and Discussion 29 Jan 2004, 10:07
Replies: 11
Views: 2,131
Posted By Caesar2
Re: Find similar strings (any ideas?)

Sorry, I think I was still sleeping
Forum: Programming and Discussion 29 Jan 2004, 07:43
Replies: 11
Views: 2,131
Posted By Caesar2
Re: Find similar strings (any ideas?)

VB hasn't a soundex function but if you do a search on http://groups.google.com you will find some hints and also the possibility to adjust the funcion to every (human) language
Forum: Programming and Discussion 29 Jan 2004, 01:01
Replies: 11
Views: 2,131
Posted By Caesar2
Re: Find similar strings (any ideas?)

you could use soundex (http://www.google.com/search?q=soundex).
Most DB's for example, have a function for it.
I don't know if php has a standard function, but if it hasn't, then someone probably...
Forum: General Discussions 28 Jan 2004, 07:48
Replies: 11
Views: 1,970
Posted By Caesar2
Re: question about msn messenger

According to the help you need IE 6 for conversation logging
Forum: Programming and Discussion 10 Jan 2004, 16:20
Replies: 9
Views: 2,619
Posted By Caesar2
Re: Re-Release Problems

Propose new features and ask them if they need new features.
Fix the bugs from the first version.
Forum: Hardware and Tech Support 4 Jan 2004, 18:47
Replies: 4
Views: 5,460
Posted By Caesar2
Re: system32.exe

My W2K hasn't got a file called system32.exe.
and according to google (http://www.google.com/search?q=system32.exe) it's a virus.
Forum: Hardware and Tech Support 10 Nov 2003, 23:11
Replies: 24
Views: 8,331
Posted By Caesar2
Re: Spyware unremovable?!

http://www.answersthatwork.com/Tasklist_pages/tasklist.htm

Evntsvc.exe is a part of RealOne Player and you don't need it for RealOne Player. I don't know if it solves your problem, but you can...
Forum: Programming and Discussion 4 Nov 2003, 23:23
Replies: 1
Views: 2,039
Posted By Caesar2
Re: Firewalls, Direct Connect, and port access and forwarding

i found on their site (http://www.neo-modus.com/?page=Help)

this:
Q: I have a internet connection sharing device and would like to set Direct Connect up for active mode. What ports does it use?...
Forum: Programming and Discussion 29 Oct 2003, 17:52
Replies: 5
Views: 2,439
Posted By Caesar2
Re: Dumb ASP/SQL Query

no problem :)

it's one of the abnormalities in access like using:

WHERE columnname LIKE "*...*"

instead of

WHERE columnname LIKE '%...%'
Forum: Programming and Discussion 28 Oct 2003, 20:46
Replies: 5
Views: 2,439
Posted By Caesar2
Re: Dumb ASP/SQL Query

should be:

... eff_date > #" & eff_date & "# order by eff_date asc"
Forum: Programming and Discussion 10 Oct 2003, 06:10
Replies: 3
Views: 2,428
Posted By Caesar2
Re: Database Design Quandry

I would do that yeah
Forum: Programming and Discussion 9 Oct 2003, 18:43
Replies: 3
Views: 2,428
Posted By Caesar2
Re: Database Design Quandry

One table with users and one table with dates and status (A or H) would be the best way imo.
What do you mean with individual days? Are that days with no status? When your code can't find a day for...
Forum: Programming and Discussion 6 Sep 2003, 16:53
Replies: 3
Views: 3,773
Posted By Caesar2
Win 98 tries to connect under the user that...

Win 98 tries to connect under the user that logged in on that machine. You should add that user in W2K. At least that's what I do here at home.
Forum: General Discussions 24 Aug 2003, 17:48
Replies: 75
Views: 9,380
Posted By Caesar2
The other way around

The other way around
Forum: General Discussions 24 Aug 2003, 16:08
Replies: 75
Views: 9,380
Posted By Caesar2
Why does the whole world hates the West,...

Why does the whole world hates the West, especially the US?
Forum: General Discussions 21 Aug 2003, 06:46
Replies: 66
Views: 6,562
Posted By Caesar2
Re: Terrorism in Iraq: why?

As a result on the UN sanctions on Iraq, at least half a million people died. That's why some people see the UN as 'evil'.
Forum: Programming and Discussion 4 Jul 2003, 06:52
Replies: 1
Views: 3,387
Posted By Caesar2
you could add 2 fields to the database of the...

you could add 2 fields to the database of the other users:
Synchronized (Yes/No)
Updated (Yes/No)

when you synchronise a record, set synchrnized to Yes.
i dont know how the other users add...
Forum: Programming and Discussion 1 Jul 2003, 20:43
Replies: 6
Views: 3,393
Posted By Caesar2
ok, no problem

ok, no problem
Forum: Programming and Discussion 30 Jun 2003, 18:52
Replies: 6
Views: 3,393
Posted By Caesar2
so this data can by found in the table "Clients"?...

so this data can by found in the table "Clients"?
if so, why would you want to put that in another table?
Forum: Programming and Discussion 27 Jun 2003, 19:26
Replies: 6
Views: 3,393
Posted By Caesar2
Is this what you need?: Clients ClientID...

Is this what you need?:

Clients
ClientID (Autonumber)
Name (Text)


Loans Details
ClientID (Autonumber)
Checked (Yes/No)
Forum: General Discussions 21 Jun 2003, 13:11
Replies: 6
Views: 2,683
Posted By Caesar2
http://www.dumeter.com/

http://www.dumeter.com/
Forum: Programming and Discussion 21 Jun 2003, 13:05
Replies: 3
Views: 2,274
Posted By Caesar2
i tested your code in vb, but it works there. ...

i tested your code in vb, but it works there.
if i open the table Phone in design view, it gives an error, because access cant add a record when the table is in design view. maybe a stupid question,...
Forum: Programming and Discussion 10 Jun 2003, 06:38
Replies: 8
Views: 2,456
Posted By Caesar2
i read somewhere that it should be possible. they...

i read somewhere that it should be possible. they call they ad-hoc mode. google will know more about it :)
i assume that your network cards have to support it
Forum: Programming and Discussion 7 Jun 2003, 22:37
Replies: 2
Views: 2,167
Posted By Caesar2
is this (http://www.dvdotech.com/) what you are...

is this (http://www.dvdotech.com/) what you are looking for?

i never used it, so i cant say if its any good, but i read something about it
Forum: Hardware and Tech Support 5 Jun 2003, 06:42
Replies: 11
Views: 12,457
Posted By Caesar2
Start --> Run --> type msconfig --> tab...

Start --> Run --> type msconfig --> tab Startup
Forum: Programming and Discussion 3 Jun 2003, 19:24
Replies: 2
Views: 2,324
Posted By Caesar2
Re: fun with excel

your function crashes because in the second number there isnt a "/".
my function does puts a "/" at the end of the number and thus it wont crash
Forum: General Discussions 15 May 2003, 22:21
Replies: 45
Views: 3,350
Posted By Caesar2
because some weirdos claim it is a world cup...

because some weirdos claim it is a world cup doesnt mean it really is a world cup
Forum: Hardware and Tech Support 27 Apr 2003, 10:20
Replies: 7
Views: 9,167
Posted By Caesar2
this site (http://www.nec.co.uk/datastorage.asp)...

this site (http://www.nec.co.uk/datastorage.asp) claims that the 1100a also supports +
Forum: Hardware and Tech Support 11 Apr 2003, 19:41
Replies: 5
Views: 9,081
Posted By Caesar2
maybe your tv doesnt support s-vhs did you read...

maybe your tv doesnt support s-vhs
did you read the manual?
Forum: Hardware and Tech Support 30 Mar 2003, 22:17
Replies: 2
Views: 5,441
Posted By Caesar2
you need something like this? DoCmd.GoToControl...

you need something like this?
DoCmd.GoToControl (Form_Bla.Txtblabla.Name)

although using .SetFocus is prefered rather than GoToControl:

Form_Bla.Txtblabla.SetFocus
Forum: General Discussions 27 Mar 2003, 11:10
Replies: 50
Views: 6,831
Posted By Caesar2
The Rogue Nation of The Cruel Pirates "Forced...

The Rogue Nation of The Cruel Pirates
"Forced democracy is no democracy"

UN Category: Corporate Bordello

Civil Rights: Excellent
Economy: Frightening
Political Freedoms: Excellent

The...
Forum: General Discussions 25 Mar 2003, 22:41
Replies: 50
Views: 6,629
Posted By Caesar2
it wasnt likely that iraq would attack turkey. if...

it wasnt likely that iraq would attack turkey. if iraq would attack turkey then only after that iraq got attacked. so it more or less means that we support the attack on iraq by sending defence
Forum: Programming and Discussion 25 Mar 2003, 21:48
Replies: 7
Views: 3,626
Posted By Caesar2
np :)

np :)
Forum: General Discussions 25 Mar 2003, 21:47
Replies: 50
Views: 6,629
Posted By Caesar2
http://www2.omroep.nl/nos/irak/pagina/nieuws/maart...

http://www2.omroep.nl/nos/irak/pagina/nieuws/maart/2103_kort.html

almost at the bottom where it says Verzekeringsuitkering

and i think that "Balkie" doesnt count that, but it is military...
Forum: Programming and Discussion 25 Mar 2003, 21:40
Replies: 7
Views: 3,626
Posted By Caesar2
'If only 1 workbook is opened, save it and close...

'If only 1 workbook is opened, save it and close Excel
If Excel.Workbooks.Count = 1 Then
Excel.ActiveWorkbook.Save
Application.Quit
Else 'Else close only this workbook and save it
...
Forum: General Discussions 25 Mar 2003, 21:08
Replies: 50
Views: 6,629
Posted By Caesar2
actually, we do support the war military by...

actually, we do support the war military by sending patriots to turkey :(
Forum: General Discussions 24 Mar 2003, 13:28
Replies: 31
Views: 3,393
Posted By Caesar2
Forum: General Discussions 24 Mar 2003, 07:25
Replies: 130
Views: 13,892
Posted By Caesar2
Re: Re: Re: Re: Re: Iraqi's Murder POW's, Show on TV

it was wrong, there were also civilians on that road.
Forum: General Discussions 24 Mar 2003, 07:14
Replies: 130
Views: 13,892
Posted By Caesar2
Re: Re: Re: Iraqi's Murder POW's, Show on TV

two wrongs dont make a right
Forum: General Discussions 23 Mar 2003, 22:23
Replies: 130
Views: 13,892
Posted By Caesar2
Re: Iraqi's Murder POW's, Show on TV

highway of death (http://www.google.nl/search?q=%22highway+of+death%22&ie=UTF-8&oe=UTF-8&hl=nl&lr=)
Forum: General Discussions 19 Mar 2003, 07:34
Replies: 21
Views: 4,069
Posted By Caesar2
Forum: General Discussions 17 Mar 2003, 12:25
Replies: 57
Views: 5,983
Posted By Caesar2
1,300,000,000, the costs of one day of war in...

1,300,000,000, the costs of one day of war in Iraq in US dollars
Forum: Programming and Discussion 13 Mar 2003, 19:47
Replies: 2
Views: 2,521
Posted By Caesar2
make an animated gif and use this...

make an animated gif and use this (http://mvps.org/vbnet/code/bitmap/loadgif.htm) code
Forum: Programming and Discussion 5 Mar 2003, 22:52
Replies: 45
Views: 7,789
Posted By Caesar2
fun and money

fun and money
Forum: Programming and Discussion 3 Mar 2003, 07:25
Replies: 23
Views: 3,360
Posted By Caesar2
ah i see :)

ah i see :)
Forum: Programming and Discussion 2 Mar 2003, 23:27
Replies: 23
Views: 3,360
Posted By Caesar2
is O2 claiming that high speeds? several...

is O2 claiming that high speeds?
several sources say that the maximum speed of GRRS is 171.2 kbps, but in theory not higher than 40 kbps
Forum: General Discussions 1 Mar 2003, 13:52
Replies: 72
Views: 6,657
Posted By Caesar2
that would make women dependent from men and so...

that would make women dependent from men and so we would rule the world again ;)
Forum: General Discussions 1 Mar 2003, 13:40
Replies: 72
Views: 6,657
Posted By Caesar2
true, but we would still live in the stone age...

true, but we would still live in the stone age then :p
Forum: General Discussions 13 Feb 2003, 15:01
Replies: 35
Views: 3,394
Posted By Caesar2
there is an update for it (cant find it right...

there is an update for it (cant find it right now).
i got ra1 working on w2k
Forum: General Discussions 12 Feb 2003, 23:34
Replies: 1
Views: 2,482
Posted By Caesar2
State of the union

someone prolly says old, but i never heard it before (http://downloads.warprecords.com/bushwhacked2.mp3)
Forum: General Discussions 7 Feb 2003, 21:32
Replies: 136
Views: 11,127
Posted By Caesar2
Vermillion was correct about the total of deaths...

Vermillion was correct about the total of deaths in the war, but Hitler was responsible for killing 12 million



my point is that if someone can win a war from a country he sometimes claims...
Forum: Hardware and Tech Support 7 Feb 2003, 21:23
Replies: 4
Views: 5,995
Posted By Caesar2
you use a form with a subform?

you use a form with a subform?
Forum: General Discussions 7 Feb 2003, 20:48
Replies: 136
Views: 11,127
Posted By Caesar2
Hitler was responsible for the deaths of 12...

Hitler was responsible for the deaths of 12 million civilians, not 16.7 million.
Under Stalin's regime 40 million people died. why didnt your country do anything about that?
Under Mao's regime 35...
Forum: General Discussions 6 Feb 2003, 22:07
Replies: 48
Views: 7,621
Posted By Caesar2
Re: Re: Re: New Allies Back U.S. Iraq Policy

ask Texan why he constantly posts how many countries in europe support america
Forum: General Discussions 6 Feb 2003, 21:56
Replies: 48
Views: 7,621
Posted By Caesar2
Re: New Allies Back U.S. Iraq Policy

Hmm... I've lost count. Does that make 25 European states that do not back the U.S. Iraq policy?
Forum: General Discussions 5 Feb 2003, 07:40
Replies: 41
Views: 4,982
Posted By Caesar2
Amiga OS...

Amiga OS (http://bbspot.com/Images/News_Features/2003/01/os_quiz/amiga.jpg)
Forum: General Discussions 30 Jan 2003, 21:18
Replies: 201
Views: 15,067
Posted By Caesar2
Re: Europe Supports War on Iraq

we were asked but didnt sign :D
Forum: General Discussions 30 Jan 2003, 21:15
Replies: 110
Views: 8,591
Posted By Caesar2
i bet they get financial support :/

i bet they get financial support :/
Forum: General Discussions 28 Jan 2003, 21:18
Replies: 110
Views: 8,591
Posted By Caesar2
did your country asked the people of iraq if they...

did your country asked the people of iraq if they want to be 'liberated'?
Forum: General Discussions 21 Jan 2003, 14:03
Replies: 22
Views: 2,745
Posted By Caesar2
the advantage of teh shelved ones is that your as...

the advantage of teh shelved ones is that your as doesnt get wet.
therefore they rule
Forum: General Discussions 18 Jan 2003, 15:18
Replies: 27
Views: 3,487
Posted By Caesar2
lets play risk...

lets play risk (http://members.lycos.nl/caesar_2/bushrisk.jpg)
Forum: General Discussions 17 Jan 2003, 21:25
Replies: 28
Views: 2,963
Posted By Caesar2
that's why you should post on the tech forum

that's why you should post on the tech forum
Forum: Hardware and Tech Support 16 Jan 2003, 20:21
Replies: 3
Views: 4,882
Posted By Caesar2
10m to 100m...

10m to 100m (http://www.cellular.co.za/bluetooth.htm)
Forum: Hardware and Tech Support 16 Jan 2003, 20:12
Replies: 13
Views: 5,159
Posted By Caesar2
Re: Quessies

yaha virus or something, i believe hotmail didnt recognised it as a virus in the beginning, but they should recognise it now.
Forum: Hardware and Tech Support 16 Jan 2003, 20:06
Replies: 6
Views: 4,816
Posted By Caesar2
Re: Networking PC's

i have that for my laptop. bought it 1,5 years ago and it was about €70
(http://sitecom.com/product_image.php?product_id=110&size=small)
Forum: General Discussions 12 Jan 2003, 13:32
Replies: 26
Views: 3,211
Posted By Caesar2
i had a siemens that got wet and i have a nokia...

i had a siemens that got wet and i have a nokia that fell on the ground, they both still worked
Forum: Planetarion Discussions 11 Jan 2003, 16:50
Replies: 31
Views: 4,935
Posted By Caesar2
i like the idea :) i think pirates shuldnt be...

i like the idea :)
i think pirates shuldnt be able to scan planets so that they have to depend on planets that give them info. and maybe there should be a maximum ratio of pirates (e.g. not more...
Forum: Programming and Discussion 8 Jan 2003, 21:32
Replies: 31
Views: 4,394
Posted By Caesar2
statbar (http://www.statbar.nl/) : usefull info...

statbar (http://www.statbar.nl/) : usefull info at the top of your screen
Forum: General Discussions 28 Dec 2002, 23:04
Replies: 52
Views: 6,150
Posted By Caesar2
partition magic

partition magic
Forum: General Discussions 26 Dec 2002, 12:35
Replies: 9
Views: 2,640
Posted By Caesar2
our unemployment is gonna double itself :/ tho...

our unemployment is gonna double itself :/
tho you are right, it was pretty low
Forum: General Discussions 24 Dec 2002, 14:19
Replies: 11
Views: 2,965
Posted By Caesar2
there is no such thing as coincidence

there is no such thing as coincidence
Forum: Programming and Discussion 17 Dec 2002, 23:12
Replies: 4
Views: 2,499
Posted By Caesar2
like wu_trax said, group by all 3 columns ...

like wu_trax said, group by all 3 columns

suppose u have:

tbl_actions
---------------
name
action
how
Forum: General Discussions 17 Dec 2002, 07:34
Replies: 71
Views: 6,263
Posted By Caesar2
40%=20% world factbook...

40%=20%
world factbook (http://www.cia.gov/cia/publications/factbook/geos/is.html)
Forum: Hardware and Tech Support 8 Dec 2002, 16:49
Replies: 11
Views: 6,665
Posted By Caesar2
i had the same with an old PII 233, it froze at...

i had the same with an old PII 233, it froze at random times, but usually when i was browsing the internet. i changed the videocard (2D 4mb s3 i believe) with a video card from an even older P100....
Forum: General Discussions 1 Dec 2002, 23:31
Replies: 17
Views: 3,717
Posted By Caesar2
Re: it's december 1 (non dutch don't reply plz ta)

yeah, we are lucky this year, we usually have rain :/
Forum: General Discussions 28 Nov 2002, 07:10
Replies: 16
Views: 2,780
Posted By Caesar2
we have a province called Zeeland

we have a province called Zeeland
Forum: Hardware and Tech Support 26 Nov 2002, 21:03
Replies: 12
Views: 8,859
Posted By Caesar2
i bought a draytek (http://www.draytek.com.tw/)...

i bought a draytek (http://www.draytek.com.tw/) vigor 2200 a while ago to share my cable connection. its easy to configure, i have never problems with it and it has NAT ability. they have 4 different...
Forum: General Discussions 25 Nov 2002, 23:34
Replies: 17
Views: 3,192
Posted By Caesar2


Forum: General Discussions 25 Nov 2002, 07:17
Replies: 62
Views: 6,494
Posted By Caesar2
for once i agree with you wf, tho i think here in...

for once i agree with you wf, tho i think here in europe we get ripped of more
Forum: General Discussions 24 Nov 2002, 12:00
Replies: 23
Views: 3,547
Posted By Caesar2
Re: Re: Nigeria riots

difference is that americans are not thin skinned but fat ;)
Forum: Programming and Discussion 21 Nov 2002, 07:23
Replies: 7
Views: 3,069
Posted By Caesar2
i d/l lanpop...

i d/l lanpop (http://www.freedownloadscenter.com/Network_and_Internet/Text_Chat_Clients/LanPop.html) some time ago. i m not suer if it works good in xp, under 2k it is a little slow, but it works ok....
Forum: General Discussions 20 Nov 2002, 22:22
Replies: 7
Views: 2,612
Posted By Caesar2
we owned you ;)

we owned you ;)
Forum: General Discussions 19 Nov 2002, 07:16
Replies: 24
Views: 4,192
Posted By Caesar2
same here :p

same here :p
Forum: General Discussions 17 Nov 2002, 18:46
Replies: 32
Views: 3,830
Posted By Caesar2
does it make north korea not civilised, because...

does it make north korea not civilised, because the government system is different from the usa? how smallminded of you.

btw killing children and using a bombs doesnt make the usa very civilised...
Forum: General Discussions 17 Nov 2002, 18:13
Replies: 32
Views: 3,830
Posted By Caesar2
what makes the usa civilised and north korea not...

what makes the usa civilised and north korea not civilised and who decides that?
Forum: General Discussions 17 Nov 2002, 12:06
Replies: 61
Views: 6,948
Posted By Caesar2


Forum: General Discussions 15 Nov 2002, 07:08
Replies: 13
Views: 2,624
Posted By Caesar2


Forum: General Discussions 10 Nov 2002, 21:29
Replies: 65
Views: 5,893
Posted By Caesar2
Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Direct or representative democracy?

you forgot that the government is a representation of the population with the ability to take decisions.
every 4 year we can choose this government. if ppl dont agree with the decisions then the...
Forum: General Discussions 10 Nov 2002, 21:17
Replies: 65
Views: 5,893
Posted By Caesar2
Re: Re: Re: Re: Re: Re: Re: Re: Re: Direct or representative democracy?

your conclusion was an even more stupid twist of my words
Forum: General Discussions 10 Nov 2002, 20:56
Replies: 65
Views: 5,893
Posted By Caesar2
Re: Re: Re: Re: Re: Re: Re: Direct or representative democracy?

most ppl dont look at the longterm effect
Forum: General Discussions 10 Nov 2002, 20:55
Replies: 65
Views: 5,893
Posted By Caesar2
Re: Re: Re: Re: Re: Re: Re: Direct or representative democracy?

so if ppl want a salary raise of 100% then the government should alow that?
Forum: General Discussions 10 Nov 2002, 20:50
Replies: 65
Views: 5,893
Posted By Caesar2
Re: Re: Re: Re: Re: Direct or representative democracy?

like i said before, most ppl dont have enough knowledge about certain cases.
further some ppl vote with emotion. most ppl in EU countries would vote against the euro as they dont wanna lose their...
Forum: General Discussions 10 Nov 2002, 20:43
Replies: 65
Views: 5,893
Posted By Caesar2
Re: Re: Re: Direct or representative democracy?

either ppl voted for the wrong party or politicians dont do what they say (and they will feel that in the next elections). a referendum isnt needed for that
Forum: General Discussions 10 Nov 2002, 20:38
Replies: 65
Views: 5,893
Posted By Caesar2
Re: Direct or representative democracy?

Switzerland isnt part of the EU





why would u need direct democracy if ppl voted for the parliament?
like said before most ppl dont have enough knowledge about subjects and it would cost to...
Forum: General Discussions 8 Nov 2002, 23:19
Replies: 7
Views: 3,145
Posted By Caesar2
DU Meter Monthly Report ...

DU Meter Monthly Report
--------------------------------------------------------------------------------

Period (Month) Download Upload Both Directions Dial-Up Time

maart...
Forum: General Discussions 5 Nov 2002, 20:36
Replies: 46
Views: 4,267
Posted By Caesar2
Re: For the mathematically challenged - ELeeming's guide to things you didn't know part 1

you are allowed to multiply both sides with a variable, but then you have to check the results by filling them into the original equation. 1 of the results is wrong and the other remains.

x = 4...
Forum: General Discussions 31 Oct 2002, 20:52
Replies: 71
Views: 6,029
Posted By Caesar2
thats why their is european law

thats why their is european law
Forum: General Discussions 27 Oct 2002, 23:36
Replies: 46
Views: 5,378
Posted By Caesar2
the building was for the russians more important...

the building was for the russians more important then the ppl, thats why they just didnt give a damn about the type of gas they used
Forum: Programming and Discussion 28 Aug 2002, 14:24
Replies: 59
Views: 7,927
Posted By Caesar2
from my experience as student the customer never...

from my experience as student the customer never uses it neway ;)
Showing results 1 to 146 of 146

 
Forum Jump

All times are GMT +1. The time now is 16:33.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2002 - 2018