Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
?
DMX-E 4204 installer compatibility issue on windows 7?
hi,
i have develop a program that prints barcode by the used of DMX-E 4204 it work perfectly on windows xp but when i updated to windows 7 i got an incompatibility issue on my driver.
could you please send me some links on how can i resolve this. Thanks.
1 AnswerOther - Hardware1 decade agoVisual Basic 2005 checkbox issue... Please read... ^_^?
is there a way to check all checkboxes.checkstate in a form by creating control? for example i have 100 checkboxes and i want to check all of them if they are in check status or uncheck status without writting down all the name of my checkboxes. if there's a way could you kindly enlighten me up? thanks... ^_^
1 AnswerProgramming & Design1 decade agoHelp in Visual Studio 2005...?
How to disable my desktop in visual studio 2005?
1 AnswerProgramming & Design1 decade agohow to return a value on a function call?
here is the code:
Public Function DARetrieve(ByVal SqlCmdTxt As String, Optional ByVal strConn As String = "", Optional ByVal blnHasBeginTrans As Boolean = False) As DataSet
Dim objDataSet As DataSet
Dim adpSql As SqlCeDataAdapter
If DAConnect() Then
Try
objDataSet = New DataSet
adpSql = New SqlCeDataAdapter
Dim cmdNew As New SqlCeCommand(SqlCmdTxt, mobjConn)
cmdNew.CommandTimeout = 30000
cmdNew.Transaction = mobjTrans
adpSql.SelectCommand = cmdNew
adpSql.Fill(objDataSet)
Return objDataSet
Catch exp As SqlCeException
MsgBox(exp.Message)
Throw exp
Catch exp As Exception
'DAClose()
Throw exp
Finally
If Not blnHasBeginTrans Then
DAClose()
End If
End Try
End If
End Function
this is the msg:
Function DARetrieve doesn't not return a value on all path ways.
Programming Language:
Microsoft Visual Studio 2005
Thanks in advance... ^_^
2 AnswersProgramming & Design1 decade agohow to decompile visual studio 2008 exe file?
hi... i need to decompile my project in visual studio 2008 because i need all the source code... unfortunately i have formated my back up file and all was left was the exe file that i made. is there a way how to decompile an exe file created from visual studio 2008?
3 AnswersProgramming & Design1 decade agohow to create a button that only open a folder in vb6.0?
hi... i just like to add a command button that only open a folder from a certain directory of my harddrive, the problem is i don't know how... kindly help me with this please... thanks in advance...
2 AnswersProgramming & Design1 decade agohow to make msword doc a read-only file?
hi... i have developed a php website that generate reports thru msword (doc type). all i want is to make that document a read-only file so they could not change what is written in that document. thanks a lot...
4 AnswersProgramming & Design1 decade agowhat is the easiest way to generate report in php pdf format.?
hi. im just a newbie in php. there are still a lot of codes that i dont understand. i just want to generate my reports in pdf format the problem is i don't know how. can someone give me an easiest way to understand it? a sample is much better. thanks...
2 AnswersProgramming & Design1 decade agoHelp in assignment in TRIGONOMETRY...?
could someone please prove this using trigonometry identities...
sin x (sec x + cos x) = tanx + 1
kindly show how it became equal and please show the solution... thanks... ^_^
2 AnswersMathematics1 decade agoCould you help me recall my trigonometry identities please...?
my younger sister have an assignment about trigonometry identities, the problem is i almost forgot them... ^_^
here it is...
sin x (sec x + cos x) = tanx + 1
could you please answer this and explain it if posible... ^_^
thanks in advance...
2 AnswersMathematics1 decade agoloading PHP on a div tag...?
hi... first of all i want to give thanks for those who give time for this...
i want to load different php file in my div tag under index.php when ever i click a button, the problem is i dont know how... ^_^
here is my code on my index.php
<body>
<form id="form1" name="form1" method="post" action="">
<label>
<input type="submit" name="button" id="button" value="1st Page" onclick="" />
</label>
<input type="submit" name="button2" id="button2" value="2nd Page" />
<input type="submit" name="button3" id="button3" value="3rd Page" />
<div id='phphere' style="height:400px; width:600px"><?php include('1st.php'); ?></div>
</form>
the other php files are named 1st.php, 2nd.php and 3rd.php
so instantly when the page load 1st.php is inside the the div tag.
all i want is when i click on the button2 1st.php will be replaced by 2nd.php and when i click on button3 any of the php file will be replaced by 3rd.php and also when i click on button any of the php file which is inside the div tag will be replaced by 1st.php. i just hope you could understand what i'm saying even thou its hard to explain... hehe
thanks in advance... ^_^
2 AnswersProgramming & Design1 decade agoTransparency on css code?
hi... i was working on my page and when i turn the background-color of my table into transparency even the text or anything else i put on that table turned transparent too... how can i make the background-color of transparent without affect the text or images i put inside that table..
here is the code i've done so far...
.sampleOpacity{
background-color:#FFF;
filter:alpha(opacity=60);
}
thanks in advance... ^_^
2 AnswersProgramming & Design1 decade ago2 major components of literature?
what are the two major components of literature?
and give example on each... thanks in advance... ^_^
1 AnswerHomework Help1 decade agohow to open my hard drive after removing a virus?
hi... i just remove a virus named gova.vbs in my registry using regedit. usually the virus stop my access on my harddrive when i try to open it and always say "cannot find C:\gova.vbs". i have removed that script by my problem now is i cant restore the usual way on opening harddrive, i receive a messege "This folder does not have a program associated with it to performing this action. Create an associate in the forlder option and control panel." thanks in advance... ^_^
1 AnswerOther - Hardware1 decade agoAsrock N68-S with PowerColor HD4350?
i bought an Asrock n68-s board for my x2 processor and a powercolor hd4350 video card. i install the board components and they run just as i expected then i install the software needed for hd4350 and amazing the graphics is as smooth just i like i wanted but suddenly i notice that the sound suddenly been remove, i already check everything, uninstall and reinstall both sound card and video card but still i cant resolve the problem. T_T
1 AnswerOther - Hardware1 decade agoGlobal or Public variable in php?
is there a global variable in php? what i mean if i declare a value to that variable then i go to other page of my site the value of that variable is still the same, just like in vb6 when you declare "public varname as string" in the module i can call it anywhere on my form.
if there's any could you please teach me a step by step procedure on how to use it. sorry but i'm very noob in php. T_T
thanks in advance...
6 AnswersProgramming & Design1 decade agodifference between id and class?
can anyone differentiate id from class in html?
ex.
<div id=sample1 class=sample2>I'm very confuse.</div>
Can you give me the proper usage of both.
As of know im using class in my css, if i use id for my javascript would there be any difference?
thanks in advance.
5 AnswersProgramming & Design1 decade agoif then else statement in html?
is there an if then else statement on html? for example i want to make a div tag visible on state if the span tag is visible?
<span id=sample1>if this is visible then div tag is visible </span>
<div id=sample2>if span tag with id=sample1 then this is visible </div>
if there's a way way? can you give me a definite example please is a javascript is involve or css. thanks in advance...
6 AnswersProgramming & Design1 decade agoHow to make a dimensional picture? (Site suggestion)?
Hi... i want to make a 3 dimensional picture of my room... any suggestion of site that can do that or software... thanks in advance....
1 AnswerSoftware1 decade agoAll Caps and 1st Letter Caps...?
hi, i just want to ask how to make the value i've enter in a textfield all caps and 1st letter caps when the textfield lost focus (or onchange) in php.
could you also guide me in a step by step procedure coz im still a newbie. thanks in advance...
1 AnswerProgramming & Design1 decade ago