Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 3,152
» Latest member: Ryleihemi
» Forum threads: 857
» Forum posts: 3,646

Full Statistics

Online Users
There are currently 3 online users.
» 0 Member(s) | 1 Guest(s)
Bing, Google

Latest Threads
Womans from your city - V...
Forum: Random Discussion
Last Post: iHOMEz
02-27-2025, 12:59 PM
» Replies: 1
» Views: 2,853
Looking for Adventure? Fi...
Forum: Random Discussion
Last Post: iHOMEz
01-08-2025, 11:00 PM
» Replies: 1
» Views: 1,877
Find Local Women Looking ...
Forum: Random Discussion
Last Post: iHOMEz
12-27-2024, 12:11 AM
» Replies: 0
» Views: 1,024
Prettys Womans in your to...
Forum: Random Discussion
Last Post: iHOMEz
10-30-2024, 07:45 AM
» Replies: 0
» Views: 1,853
Prettys Womans in your ci...
Forum: Random Discussion
Last Post: iHOMEz
10-26-2024, 10:50 AM
» Replies: 0
» Views: 1,790
Beautiful Womans from you...
Forum: Random Discussion
Last Post: iHOMEz
10-19-2024, 02:48 PM
» Replies: 0
» Views: 1,931
Prettys Womans in your ci...
Forum: Random Discussion
Last Post: iHOMEz
10-06-2024, 05:00 PM
» Replies: 0
» Views: 2,055
Supreme Сasual Dating - A...
Forum: Random Discussion
Last Post: iHOMEz
06-14-2024, 11:28 AM
» Replies: 0
» Views: 2,879
Beautiful Womans in your ...
Forum: VB.NET
Last Post: iHOMEz
06-09-2024, 09:23 PM
» Replies: 0
» Views: 3,063
Hangman in Rust
Forum: Other
Last Post: brandonio21
02-04-2018, 11:14 AM
» Replies: 2
» Views: 22,636

 
  What is LINQ to SQL?
Posted by: Moldraxian - 08-20-2012, 05:38 AM - Forum: Programming Help - No Replies

I've been doing some research and I've been seeing many things about something called LINQ. It looks like a way to build complicated SQL queries but it is very hard to understand. Does anyone have any tips that would help LINQ make more sense?

I made my own query and I had this error pop up:
Cannot perform 'Like' operation on System.DateTime and System.String.

I don't understand why I get this error but this is my code.

Code:
Private Sub txtOrder_TextChanged(sender As System.Object, e As System.EventArgs) Handles txtOrder.TextChanged
        If txtOrder.TextLength > 0 Then
            All_flood_certsBindingSource.Filter = String.Format("[Order Received] Like '" & txtOrder.Text) & "'"
        Else
            All_flood_certsBindingSource.Filter = String.Empty
        End If
    End Sub

Print this item

  Need help again...
Posted by: bigbubblewrap - 08-19-2012, 07:28 PM - Forum: Java - Replies (6)

In the video Making a game with Java part 3, i=I cant figure out why but its telling me "The field Component.y is not visible" here's my code:[code2=java]package levelEditor;
import java.awt.Canvas;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Rectangle;
import java.awt.Toolkit;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.image.BufferStrategy;


public class LevelEditor
extends Canvas
implements KeyListener, Runnable, MouseListener{


private Object[][] grid = new Object[50][50];
private Graphics bufferGraphics = null;
private BufferStrategy bufferStrategy = null;
private boolean running;
private Thread thread;


public LevelEditor(Dimension size)
{
this.setPreferredSize(size);
this.addKeyListener(this);
this.thread = new Thread(this);
this.addMouseListener(this);
running = true;


}


public void paint(Graphics g)
{
if (bufferStrategy == null)
{
this.createBufferStrategy(2);
bufferStrategy = this.getBufferStrategy();
bufferGraphics = bufferStrategy.getDrawGraphics();
this.thread.start();
}
}

public void run() {
//THis is what runs when the level editor is running
while(running)
{
DoLogic();
Draw();
DrawBackBufferToScreen();
Thread.currentThread();
try
{
Thread.sleep(10);
}
catch(Exception e)
{
e.printStackTrace();
}
}

}

public void DoLogic()
{

}
public void Draw()
{
bufferGraphics = bufferStrategy.getDrawGraphics();
try
{
bufferGraphics.clearRect(0, 0, this.getSize().width, this.getSize().height);
for (int x = 0; x < grid.length; x++)
{
for (int y = 0; y < grid.length; y++);
{
Object o = grid[x][y]; //the problem line
if (o instanceof Block)
{
Block blockToDraw = (Block)o;
blockToDraw.draw(bufferGraphics);
}
}
}



}
catch(Exception e)
{
e.printStackTrace();
}
finally
{
bufferGraphics.dispose();
}
}
public void DrawBackBufferToScreen()
{
bufferStrategy.show();
Toolkit.getDefaultToolkit().sync();
}

@Override
public void mouseClicked(MouseEvent e) {
int mouseX = e.getX();
int mouseY = e.getY();

mouseX = (mouseX / 25);
mouseY = (mouseY / 25);

grid [mouseX][mouseY] = new Block(mouseX * 25, mouseY * 25);
}




public void keyPressed(KeyEvent arg0) {


}
public void keyReleased(KeyEvent arg0) {


}
public void keyTyped(KeyEvent arg0) {


}





@Override
public void mouseEntered(MouseEvent arg0) {
// TODO Auto-generated method stub

}


@Override
public void mouseExited(MouseEvent arg0) {
// TODO Auto-generated method stub

}


@Override
public void mousePressed(MouseEvent arg0) {
// TODO Auto-generated method stub

}


@Override
public void mouseReleased(MouseEvent arg0) {
// TODO Auto-generated method stub

}

}[/code2]
This was about 1/2 way thru the video.
the nasty red text said this "Exception in thread "Thread-1" java.lang.Error: Unresolved compilation problem:
The field Component.y is not visible

at levelEditor.LevelEditor.Draw(LevelEditor.java:84)
at levelEditor.LevelEditor.run(LevelEditor.java:55)
at java.lang.Thread.run(Unknown Source)
'

Print this item

  Possible C++ Basic's tutorial
Posted by: Moldraxian - 08-17-2012, 06:06 AM - Forum: C++ Programming - Replies (9)

Hey all! I think within the next two weeks if I can find a decent recording software that I will demonstrate the basics of using Visual C++! Of course this may be delayed due to school about to start but if anybody is really interested then I will make a video.

Print this item

  My Website on Mt.Washington in NH
Posted by: Moldraxian - 08-16-2012, 06:07 AM - Forum: Your Sites! - Replies (3)

This is the link to a website I made for school last year.

<!-- m --><a class="postlink" href="https://sites.google.com/site/mtwashingtonmountains/">https://sites.google.com/site/mtwashingtonmountains/</a><!-- m -->

Most of the pictures were taken by me.

Print this item

  VB.Net Query Builder Problems.
Posted by: Moldraxian - 08-16-2012, 05:59 AM - Forum: Programming Help - Replies (2)

Howdy everyone. I have been trying to build queries for my workplace in the program I made them but I came across a problem. My workplace has some of the worst names for data fields I have ever seen. My problem is when I try to make a query for a field the field will have a name such as Order Received. How do I make it so I can create queries with fields with more than 1 word?



Attached Files Thumbnail(s)
   
Print this item

  BrandonSoft Network Status Checker
Posted by: brandonio21 - 08-15-2012, 08:20 PM - Forum: Share your programs! - Replies (21)

The other day I was working on someone's computer whose internet would intermittently disappear. I had no way of tracking exactly when the internet would fail, however, so I created a piece of software that would do it for me. Behond, the BrandonSoft Network Status Checker. It also has a taskbar icon, so you don't have to have the annoying window open all of the time.


[attachment=6]<!-- ia6 -->networkstatuschecker3.png<!-- ia6 -->[/attachment]


Download it here (primary release version):
[attachment=1]<!-- ia1 -->NetworkStatusChecker0210bin.zip<!-- ia1 -->[/attachment]
[attachment=0]<!-- ia0 -->NetworkStatusChecker0210Setup.zip<!-- ia0 -->[/attachment]


Download previous versions:
[attachment=2]<!-- ia2 -->NetworkStatusChecker0206bin.zip<!-- ia2 -->[/attachment]
[attachment=3]<!-- ia3 -->NetworkStatusChecker206Setup.zip<!-- ia3 -->[/attachment]

[attachment=5]<!-- ia5 -->Network Status Checker0205bin.zip<!-- ia5 -->[/attachment]
[attachment=4]<!-- ia4 -->NetworkStatusChecker0205Setup.zip<!-- ia4 -->[/attachment]

[attachment=8]<!-- ia8 -->Network Status Checker.zip<!-- ia8 -->[/attachment]
[attachment=7]<!-- ia7 -->Network Status Checker Installer.zip<!-- ia7 -->[/attachment]

[attachment=11]<!-- ia11 -->Network Status Checker.zip<!-- ia11 -->[/attachment]
[attachment=10]<!-- ia10 -->Network Status Checker Installer.zip<!-- ia10 -->[/attachment]

[attachment=13]<!-- ia13 -->Network Status Checker.zip<!-- ia13 -->[/attachment]
[attachment=12]<!-- ia12 -->Network Status Checker Install.zip<!-- ia12 -->[/attachment]



Attached Files Thumbnail(s)
       

.zip   Network Status Checker.zip (Size: 59.06 KB / Downloads: 924)
.zip   Network Status Checker Install.zip (Size: 269.89 KB / Downloads: 862)
.zip   Network Status Checker.zip (Size: 60.43 KB / Downloads: 904)
.zip   Network Status Checker Installer.zip (Size: 417.38 KB / Downloads: 889)
.zip   Network Status Checker.zip (Size: 53.08 KB / Downloads: 841)
.zip   Network Status Checker Installer.zip (Size: 542.37 KB / Downloads: 839)
.zip   Network Status Checker0205bin.zip (Size: 54.65 KB / Downloads: 842)
.zip   NetworkStatusChecker0205Setup.zip (Size: 109.61 KB / Downloads: 1132)
.zip   NetworkStatusChecker206Setup.zip (Size: 113.47 KB / Downloads: 1049)
.zip   NetworkStatusChecker0206bin.zip (Size: 60.33 KB / Downloads: 852)
.zip   NetworkStatusChecker0210bin.zip (Size: 53.65 KB / Downloads: 860)
.zip   NetworkStatusChecker0210Setup.zip (Size: 108.62 KB / Downloads: 1046)
Print this item

  Gaming Pros
Posted by: Moldraxian - 08-15-2012, 08:40 AM - Forum: Gaming - Replies (6)

Yo. I was bored and wondering if anyone plays Starcraft 2, Battlefield 3, Diablo 3. I play BF3 on PS3 and PC. Minecraft as well.

Still got my WoW account but I haven't played in atleast 5 months due to boredom.

Print this item

  What is your opinion on Visual Studio 2012?
Posted by: Moldraxian - 08-15-2012, 05:57 AM - Forum: Computing - Replies (5)

I've been taking quick glances at VS2012 but it does not strike me as VS2010 did. What are your opinions.

Print this item

  How to make a Fuzzy Logic Query
Posted by: Moldraxian - 08-15-2012, 05:32 AM - Forum: Request a Video - No Replies

I have been doing some work with queries on my program and they are not the easiest things to deal with. It would be cool to see how to make a fuzzy logic query in vb.net that queries a datagridview. <!-- sBig Grin --><img src="{SMILIES_PATH}/icon_e_biggrin.gif" alt="Big Grin" title="Very Happy" /><!-- sBig Grin -->

Print this item

  Dual Menu Strip Issue
Posted by: Moldraxian - 08-14-2012, 10:53 AM - Forum: Programming Help - Replies (3)

Just recently my workplace asked me to create a query for every single field of a 38 field database. I created two
Menu Strips that are loaded with menu's that lead to a textbox that has the query. However. On the second menu there is an issue where I am unable to edit the menu's in the second Menu Strip. It won't let me click on them even though there is a little sub-menu attached.

There is a attachment that show what is happening. Watch my mouse cursor. The second menu will not display its sub-menus



Attached Files Thumbnail(s)
   
Print this item