Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
2 Commented Posts
0 Endorsements
Member Avatar for WolfShield

Hello everyone, I am working on a software project that when completed I will need a website to put it on. However, I suck at web design. So I am looking for a free web design program where I can just drag and drop to create my website. What are …

Member Avatar for Ausopenxcell
0
1K
Member Avatar for kurohige

[CODE] Public Sub Clear() Form_Main.ctl_InspName.Value = "" Form_Main.ctl_ESN.Value = "" Form_Main.ctl_ToAProcess.Value = 0 Form_Main.ctl_ToAProduct.Value = 0 Form_Main.ctl_ProcessYes.Value = 0 Form_Main.ctl_ProcessNo.Value = 0 Form_Main.ctl_ProcessNotes.Value = "" Form_Main.ctl_ProcessNotesCount.Visible = False Form_Main.ctl_InspectionYes.Value = 0 Form_Main.ctl_InspectionNo.Value = 0 Form_Main.ctl_InspectionNotes.Value = "" Form_Main.ctl_InspectionNotesCount.Visible = False End Sub[/CODE] so that is the code is giving me …

Member Avatar for Reverend Jim
-2
125
Member Avatar for kurohige

so i'd being working on an access app, VBA and i need to restart it, the application usually goes stops running when error 3043 or internet connection goes down.. is there any way i can restart this application without having to build another app to check if is running.. thanks …

Member Avatar for kurohige
0
924
Member Avatar for kurohige

[CODE]980 Set rs = db.OpenRecordset("0 - Supplier List") 990 RptLoc = 0 1000 If rs.EOF = False Then ProcessCount = ProcessCount + 1 1010 Do While rs.EOF = False [COLOR="Red"]1020 XL.Sheets("Supplier").Copy Before:=XL.Sheets("Supplier") 1030 XL.Sheets(2 + RptLoc).Name = rs!Supplier[/COLOR] 1040 RptLoc = RptLoc + 1 1050 rs.MoveNext 1060 Loop 1070 XL.DisplayAlerts …

0
77
Member Avatar for kurohige

[CODE]If minutes > 1 Then ProcessTerminate (FindWindow(vbNullString, "King Kong V-1.4")) Shell "I:\DISTRIBU\Quality\RIMData\Monkey\KingKong.mdb" End If[/CODE] this will restart the application.. i'm terminating the app but i can't get it to start again.. any suggestions? thanks

0
63
Member Avatar for kurohige

i'm trying to get data of 30 minutes ago to now.. any idea with the query [CODE]SELECT DateDiff("n",Now(),[TimeStamp]) AS [Time] FROM RIMData_RAW GROUP BY DateDiff("n",Now(),[TimeStamp]) HAVING ((Now()>30)); [/CODE]

Member Avatar for adam_k
0
82
Member Avatar for BitBlt

John McCarthy, father of the LISP programming language and giant in the AI community, has passed away at the age of 84. Rest in Peace. [URL="http://www.slashgear.com/grandfather-of-artificial-intelligence-john-mccarthy-passes-away-25190622/"]http://www.slashgear.com/grandfather-of-artificial-intelligence-john-mccarthy-passes-away-25190622/[/URL]

Member Avatar for cwarn23
3
162
Member Avatar for kurohige

[CODE]import javax.swing.*; import java.awt.*; import java.awt.event.*; public class controlBall extends JFrame { private JButton jbtRight = new JButton("Right"); private JButton jbtLeft = new JButton("Left"); private BallCanvas canvas = new BallCanvas(); public controlBall(){ JPanel panel = new JPanel();//use the panel to group buttons panel.add(jbtLeft); panel.add(jbtRight); this.add(canvas, BorderLayout.CENTER);//add canvas to the center …

Member Avatar for kurohige
0
2K