- Strength to Increase Rep
- +4
- Strength to Decrease Rep
- -1
- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 3
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
- Interests
- Programming, Programming and Programming
Good day folks, I'm currently doing a project which needs to be something like this http://wandaprint.com/home This is what I've done so far. Can you give me some tips on how to do this one. **HMTL:** <html> <head> <title>My Site</title> <link rel="stylesheet" type="text/css" href="reset.css" /> <link rel="stylesheet" type="text/css" href="style.css" /> … | |
Good day folks, I want to know what is the best way to build your website from scratch. Say, psd-to-html. What's your preference about this matter? Thanks. | |
Good day folks, I am working on a project now and I'm wondering how to detect if a div is visible in the screen while the user is scrolling on the page. Hope someone will be able to shed some light. Thanks :D | |
Good day folks, I saw this site http://www.adhamdannaway.com/ and wondering how did he do the hovering thing in the home page. The one with his picture. Can someone help me to figure this out. Thanks. | |
Hello Guys, Is it possible to connect C++ Console app to MS Access? | |
Good day folks, I'm currently creating an effect wherein I want to extend a div over the whole page when the I hover it. Here's my code. <!DOCTYPE html> <html> <head> <style> #one { float:left; width:300px; height:100px; background:black; transition:width 2s; -webkit-transition:width 2s; /* Safari */ } #two { float:left; width:300px; … | |
Good day folks, I have here a code that will animate 2 divs. But, when I hover over a div multiple times, the animation fires several times. Can someone shed some light on this one? Thanks~! <!DOCTYPE html> <html> <head> <!-- This is where jScript/jQuery starts --> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> </script> … | |
Re: You may show some of your codes so we can help you in a way that is appropriate for your problem. | |
Good day folks, Can anyone tell me why my code only accept the first word of the input. E.g., I input Ana mae.. The output will only consider Ana as my input hence it will produce like Hello, Ana! #include <iostream> #include <string> using namespace std; int main() { string … | |
Anyone familiar with kind of error? I'm so lost. Please help. | |
Good day folks, I just wanna ask what event should I used to detect when a form is closed unexpectedly. I want to update the Log In status of a user in my database from 'Logged In' to 'Log Out' whenever a form closes the form unexpectedly or not. Example, … | |
Re: CustTextWriter = IO.File.CreateText("Your path here") Dim write As String = "Write your text here" CustTextWriter.WriteLine(write) CustTextWriter.Flush() CustTextWriter.Close() | |
Good day folks, I hope you can help me with this one, I want to create a game. Can you tell me where to start, what softwares I need to study and what particular knowledge I should have. I'm not new to programming so do you think it will be … | |
Good days folks, I have a dgv where I have to select a text in a certain cell. For example in a cell there is a text like - "A SELECTED TEXT". What I want to do is when I highlight the word "SELECT" in "A SELECTED TEXT" it will … | |
Re: You can look at [this](http://www.daniweb.com/software-development/vbnet/threads/456006/excel-reader) | |
Re: First of all what kind of project is that? 500 lines of code isn't that long so it shouldn't take too much time for execution. One way to improve execution speed is to optimize your algorithm. Maybe you can review it or post it here so we can analyze it … | |
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace NCPS.Forms { public partial class MDIParent1 : Form { Form_Main mForm = new Form_Main(); public MDIParent1() { InitializeComponent(); } private void MDIParent1_Load(object sender, EventArgs e) { mForm.MdiParent = this; mForm.Show(); } private void S_SMGP_Click(object sender, … | |
Good day guys, I've been developing softwares in different languages. But, I don't fully understand when to use a specific language where I can fully utilize it's ability. For example (C#.NET vs VB.NET), - When to use C#.NET over VB.NET and vice versa? - What are the projects that can … | |
Re: Yea. As long as you declare the right connection. | |
Re: Why do you want to export crystal reports to a text file? | |
Good day folks, I am currently struggling about how to recover a file. What happened is that, I installed a new OS which is a XP SP2 to XP SP3 but I realized that there is a file that I forgot to save on my flash drive. Is there a … | |
Re: Perhaps, you can read [this](http://www.homeandlearn.co.uk/net/nets7p7.html) | |
Re: Just read book or watch tutorials on youtube. Remember that when you learn something, try to practice it over and over again. | |
Re: Maybe you can buy a software to decrypt in or you must know the formula of encryption so that you'll be able to decrypt it. | |
Re: or simply select all the records with the same username and/or password then if there is a present record.. show a messagebox telling the user that "Account already exist.. Go fvck yourself!" :) | |
Re: This isn't a vb code either. Try posting it to C-based forum bro :) | |
Hello folks, I'm currently studying how to use LinQ in VB.NET but I guess I'm stock. I'm using VS 2008 version (framework) 2.0 Anyone who can help me get through this?? | |
Re: Can you share what solution did you used? | |
Good day folks, I was trying to do a simple project but somehow I'm stocked with it. What I want to do is to get the index of a column in datagridview when a cell is changed? For example this is a dgv: ID | UserID | Status | 1 … | |