English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

電腦與網際網路 - 二月 2007

[Selected]: 所有分類 電腦與網際網路

其他:電腦 · 安全性 · 硬體 · 程式設計 · 網際網路 · 軟體 · 電腦網路

希望熟悉RFID的人回答一下

最新的RFID產品有哪一些啊
我現在只找到 日立的 mu-Chip 和 飛利浦的 UCode
不知道還有哪一些新產品呢?

我需要的RFID是
1. 大小越小越好
2. 傳達距離越大越好
價錢是其次

先謝謝所有回答的人哦!

2007-02-02 06:10:17 · 2 個解答 · 發問者 ? 1 in 附加元件

為什麼卡拉吧論壇的KTV會員不能進入?
要怎樣賺積分?
KTV和音樂區都不行進入
之前都可以 現在是怎樣?

2007-02-02 05:55:45 · 3 個解答 · 發問者 ? 1 in 其他:網際網路

因 為 最 近 電 腦 怪 怪 的 , 所 以 想 換 電 腦 可 以 介 紹 一 下 嗎 ?(主 機 就 好)
盡 量 不 要 超 過 1 5 0 0 0 , 3 Q

2007-02-02 05:43:16 · 2 個解答 · 發問者 思華 1 in 桌上型電腦

我自己想要的配備:
CPU:Intel Core 2 Duo E6600
主機板:華碩P5B Deluxe/wifi-ap
記憶體:金士頓DDR2 667 1G x 2
顯示卡:我想買 7600GT的 可是不知道要買哪個牌子的?
硬碟:Seagate SATA2 16M 160G或250G
電源供應:400W
機殼:不知要買哪個?

請各位懂電腦的大大們幫我報價吧!?

2007-02-02 05:23:37 · 3 個解答 · 發問者 Echenoz 1 in 桌上型電腦

各位大大好~~~

我想請問,因為我已經有做好一個表單,裡面的資料我可以隨時輸入新的資料。

可是我的資料必須要連到報表上面去~~

比如說,我新輸入了一比 MA2100183 的資料進入表單,但是我轉換到報表的時候,報表的資料還是會從 MA2100001的資料一直顯示到 MA2100183...

因此,想要請問各位,我要如何設定: 當我的表單輸入依筆新的資料時,報表也可以只出現那依筆新的資料?

謝謝~~~ 如果還需要描述詳細一些的話,我會再多加解釋的~~~

拜託各位了~~~

2007-02-02 04:13:42 · 3 個解答 · 發問者 香米香 1 in 軟體

我家的卡巴已經13幾天沒有更新病毒碼了!!

因為我按下去 現在更新 跳出視窗後

就都在0%不會動了= =

有人能幫我解決一下問題嗎??

2007-02-02 03:07:02 · 4 個解答 · 發問者 香腸 1 in 軟體

11. T/F. Given:
struct prs
{
char name[30];
int num;
} ;
it is acceptable to define and initialize a
variable at compile time thus:
struct prs agent = {"James Bond", 007};

12. T/F. C++ string objects can grow larger or smaller
as they are used.

13. T/F. The switch() produces faster-executing
code than several if()'s.

14. When processing array data, you will most often use:
a. while loops
b. for loops
c. do while loops
d. typecasts
e. none of these are related to arrays

15. Given:
int a[10][5] ;
to access the second item in the
3rd row, we would use:
a. a[2][3] ;
b. a[3][2] ;
c. *(*(a+3)+2) ;
d. *(*(a+2)+1) ;
e. none above

16. The #ifdef, #elif, #else, and #endif
constructs are used to:

a. decide what code the compiler includes in the program
b. control program execution at run time
c. pass arguments back to Windows ( or other O/S) during program execution
d. both a and c above
e. all of the above

17. In C standard library I/O, the function
used to close a file after writing it is:

a. fclose()
b. close()
c. unlink()
d. chmod()
e. none above

18. In C++ fstream I/O, the function used
to close a stream after writing to it is:

a. stream.exit()
b. stream.rewind()
c. stream.octet()
d. stream.close()
e. stream.release()

19. T/F. The printf() family of functions can translate
between decimal, Hexadecimal, and Octal.

20. T/F. The main reason to prefer open() /
read() / write() over fopen() fread() /
fwrite() is speed of execution

21. The wchar_t data type is for storing:
a. graphics
b. ASCII
c. Unicode
d. large objects
e. none of these

2007-02-02 02:22:22 · 1 個解答 · 發問者 kenkun 1 in 程式設計

過幾天要考期末了,老師跟本沒給這50題練習題的答案,請各位高手幫幫忙, 因為題目會類似.
Cisc 192 Practice questions

1. A pointer is a variable which contains
a. signed float data
b. signed integer data
c. unsigned float data
d. unsigned integer data
e. signed character data

2. T/F. Data inside a class may be hidden from access
by functions outside the class body.

3. Assuming that spread[] is a one-dimensional
array of type int, which of the following
refers to the value of the third element in the array?

a. *(spread+2) b. *(spread+4)
c. spread+4 d. spread+2

4. T/F. A reference variable may be made to point to several
different objects at different times during the run of the
program.

5. T/F. One of the reasons for using classes
is that code may be more easily re-used
instead of re-written.

6. T/F. Polymorphism consistes of having several
methods or functions with the same name
and different argument lists.

7. Which option stores a 0 in int variable ch,
assuming the address of ch has been assigned to
the pointer fingerch?

a. *fingerch = 0 ;
b. int *fingerch = 0 ;
c. *finger = 0 ;
d. &ch = 0 ;
e. *ch = 0 ;

8. T/F. Code for member functions in a class
can be written outside the class' braces with only
their prototypes inside the class declaration.

9. T/F. A union allows several different types of
variable to share the same memory.

10. T/F. It is possible to successfully write a
function yet not know how many parameters will be
passed to it by the calling routine.

2007-02-02 02:20:51 · 1 個解答 · 發問者 kenkun 1 in 程式設計

我電腦 有時會出現SVCHOST.EXE應用程式錯誤
然後他說應用程式發生例外不明的軟體例外錯誤(0xc0000409)於位置0x69a0a3c0
我案確定 或取消或者打X 網路就不能用 但是有連線 好奇怪= =

2007-02-01 23:15:58 · 2 個解答 · 發問者 Anonymous in 軟體

這是我寫的程式:
但是寫出來出現一堆亂碼
為什麼?請大師指點,謝謝!!!
import java.util.Scanner;

public class Divisors {
public static void main (String [] args) {

/* this array will be filled with the divisors of a user-supplied number. */
long number;
long[] divisorArray;
Scanner scan = new Scanner(System.in);

System.out.println(" give me a long int and I'll "
+ "return an array of all its proper divisors > ");
number = scan.nextLong(); /* this is the number whose divisors we want to find and print */

Divisors div = new Divisors(); /* here we make an instance of the Divisors class*/

divisorArray = div.getDivisors(number);/* *** here we call a non-static method getDivisors . This method has as its argument the variable number we just read. getDivisors fills a local array with the divisors of number and returns this array. */;

System.out.println("the divisors of " + number + " are:");
/* *** here we print out all non-zero elements of divisorArray. Try to print at most 10 values per line (see the sample output above). */
System.out.println("\n "+divisorArray);

}// end main

public long[] getDivisors(long num) {
long[] divisorArray=new long[100];
int i=-1;
int j;

for(j=1;j if (num%j==0){
i++;
divisorArray[i]=j;


}
}

return divisorArray;
}
}

2007-02-01 20:55:50 · 1 個解答 · 發問者 小壁虎 1 in 程式設計

0

達人們好 我有小問題想請教
我在Excel裡面工作表A1格內想填上數字A使它連結到工作表2的A1
請問我要如何設定
我要作的工作就是工作表2紀錄廠商名稱
在工作表1填上代號就能出現廠商名稱 請達人幫我解答 謝謝囉

2007-02-01 20:18:56 · 3 個解答 · 發問者 吊車成 2 in 軟體

聽了別人說這個防毒軟體不錯,就安裝來用!
但我卻無法登入yahoo的信箱,只能登入即時通後再轉入信箱
不過就算成功進入了yahoo信箱,也無法做信件的刪除與查看!
我有試過暫停"網頁防護",但還是沒有辦法,有其他的方法可以試試看嗎?
希望大家幫幚忙,看要怎樣解決!

2007-02-01 20:06:51 · 1 個解答 · 發問者 芸仔 1 in 軟體

0

假設我在command1和command2的程式碼內設定一變數X...

當command1的變數X值改變時...

要怎麼使command2裡的X值也跟著改變?

也就是說有辦法讓兩控制元件間有一個共同變數嗎?

2007-02-01 20:05:18 · 2 個解答 · 發問者 KCVO 1 in 程式設計

0

Private Sub Form_Unload(Cancel As Integer)
Open App.Path & "\MenuList1.Dat" For Output As #1
For N = 0 To Combo1.ListCount - 1
Print #1, Combo1.List(N)
Next
Close #1
End Sub

我寫上面的程式來儲存紀錄...

但是這樣的話每次儲存都會把之前的檔案蓋掉...

有辦法改善嗎?

2007-02-01 19:59:03 · 1 個解答 · 發問者 KCVO 1 in 程式設計

表單中我設了一個標籤

名子是:xxxxx(二月份) 我要如何讓那個二月份的二字 是自己由系統讀取的而不每月修改~~ 請教教我 感恩

2007-02-01 19:33:05 · 1 個解答 · 發問者 JimmyHo 1 in 軟體

我是個新手賣家~想請問各為大大~如果拍賣一項商品~數量有2個~但因為網拍數量越多收費也越多~要是有一人得標~我該怎麼不結標繼續賣~而又能讓買家收到得標信呢!還有當賣家該注意些什麼ㄋ?有時候都不知道該怎麼收運費?拿到郵局一寄才知道很貴~麻煩有經驗ㄉ人教教我ㄅ~感恩~~~~^^

2007-02-01 19:29:25 · 5 個解答 · 發問者 綠天飛翔 2 in 其他:網際網路

有7題國二數學的等差數列的問題
要作法喔
1.公差為-22的等差數列,其第二項與第六項互為相反數,則其第十一項是??
2.若a.b兩數的等差中項為7,且2a-b與a+2b的等數中項為11則:
a=
b=
8.設a1.a2.a3.a4.a5.a6.a7成等差數列,且a3+a7=70,則a5=?

2007-02-01 19:28:28 · 3 個解答 · 發問者 橘子 1 in 軟體

主機板a7v600。原本的cpu是duron-1100。換了另顆athonxp-2000後,開不了機。於是又換回duron-1100,也不能開機了。想說該不會是主機裡自動調頻的壞了。我就又拿第三顆以前的duron800裝上去。結果就行了= = 而且一點問題都沒有。怎麼會這樣…cmos也用過了。很奇怪,真的很奇怪…請高手中的高手幫幫我吧…謝謝

2007-02-01 18:53:57 · 1 個解答 · 發問者 FDGFDSHSFD 1 in 桌上型電腦

要檢查之前筆談的記錄,一片空白,要如何操作才能找到?

2007-02-01 18:33:36 · 4 個解答 · 發問者 Chanh 4 in 軟體

我安裝完之後 去資料夾看根本都沒安裝進去 請問有哪位大大知道怎麼用的?

2007-02-01 18:26:09 · 2 個解答 · 發問者 黑色的豬 1 in 軟體

請問下列網址代碼代表什麼意義?
cn,jp,uk,hk,ca,eau,gov,mil,org,net,com
最好是每個都友
謝謝

2007-02-01 18:25:18 · 4 個解答 · 發問者 1 in 其他:電腦

我的excel檔案每個儲存格幾乎都是文字資料,在預覽或列印時,儲存格的最後一行幾乎都印不出來,但在工作畫面時卻都能顯現出來(看的到所有資料),所有儲存格都已設定自動換列,不知列印時問題出在哪裡?資料太多,我無法一個一個去拉儲存格的列高,如設定統一列高,卻又因資料(字數)多寡不一而有實際困難。如何解決列印問題。謝謝謝謝

2007-02-01 18:16:51 · 4 個解答 · 發問者 1 in 軟體

我在勁舞團上面拍的照片,想把它PO上家族

可是檔案大太,PO不上去,請各位大大教我怎麼把圖片改小

謝謝唷!

2007-02-01 17:50:19 · 2 個解答 · 發問者 Anonymous in 其他:電腦

我要移除,可是他都不讓我移 控制台也試過 我明明就沒開 他不讓我移除 我該怎麼辦,順便 誰有卡巴斯基最新的 可以用的 拜託~~~

2007-02-01 17:24:02 · 3 個解答 · 發問者 李穎承 1 in 軟體

因為電腦重灌 但是灌完之後卻沒有音效 不知道是不是少了驅動程式的關係 主機板是Aopen AX45-V 但是卻一直找不到驅動程式 去網站都是英文也不知道是哪個 在網路上有找到瑞立的音效驅動程式 不知道是否能通用

請熟悉電腦的大大幫幫忙吧!!
20點

2007-02-01 17:04:16 · 1 個解答 · 發問者 我的滿分只有十分=3= 1 in 軟體

請問一下
最近下載新版卡巴 有什麼信任的允許@@還不會用
掃毒時 一直出現一個黃色視窗
內容是:
已偵測
keylogger
正在執行的模組:
\Driver\SynTP

2007-02-01 16:59:43 · 2 個解答 · 發問者 ? 1 in 軟體

我 upload 左個 mtv 上 photobucket.com

有條 link , 但係點解唔 work ?

2007-02-01 16:56:21 · 2 個解答 · 發問者 ? 1 in 其他:網際網路

我啥都不知道
是因為D+跟D_來傳送的嗎?
還是有其他東西來傳送的?

2007-02-01 16:55:50 · 2 個解答 · 發問者 賤人張 1 in 其他:硬體

請問這個軟體是只能掃木馬?
還是也可以掃病毒阿??
因為之前用諾頓覺得不太好用
所以想更換免費的防毒軟體

2007-02-01 16:42:23 · 2 個解答 · 發問者 玫瑰 1 in 軟體

我下載的影片怪怪的...
就是我下載的影片『aa』,我把他改名『rm』


圖示1.
http://img228.imageshack.us/img228/3345/01of9.jpg

圖示2.【我後面的"名子"aa,改成『rm』~就變成rm檔了】
http://img214.imageshack.us/img214/6885/02uk2.jpg

是可以看沒有錯...但是!!(請看圖示)


圖示3.
http://img222.imageshack.us/img222/5456/03rp0.jpg

圖示4.【就會出現正在輸入...?】
http://img222.imageshack.us/img222/5577/04sk7.jpg
我直接把他移到後面~(紅色的圈圈)
《然後接下來就不能看影片了...><"》
PS:如果不直接移到後面,慢慢看的話~是可以看『全部』的影片


我很想要看完整的影片,要怎麼合併?
希望有高手會教我~(最好有用圖示教我^^")
是還要下載什麼東西...?

2007-02-01 16:34:28 · 1 個解答 · 發問者 文彬 2 in 軟體

fedest.com, questions and answers