- 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
66 Posted Topics
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 … | |
Re: Insert if statement to your code bro. | |
Re: Try this bro .. Dim proc As System.Diagnostics.Process For Each proc In System.Diagnostics.Process.GetProcessesByName("EXCEL") proc.Kill() Next Just change EXCEL. Put the application that still running. Hope it helps. | |
Re: You didn't set the connection string. There is the same problem, just search this forum. | |
Re: It does almost the same thing except that Like can be use to compare string with wildcards. For example, 1234 = 123 ' The answer here is false while 1234 Like 123* ' The answer here is true | |
Re: You must have settings in your program where you can update the recipe of each food. You can't expect your program to know that thing. Hope this helps | |
Re: Good point E.Newbie, I think there could be a little trick on that. But I'll try first before showing the code. There's something in my mind that I think would work. I'll get back to you guys. | |
Good day folks, I've been wondering how can I open an excel file in vb.net. Can somebody help me? I always get this error below: > The RPC server is unavailable. (Exception from HRESULT: 0x800706BA) Thanks in advance | |
I have a datatable with nth column. Now, I want to change the index of some columns. Need help | |
Good day folks, I want to delete some records in my datatable using query. But I don't know how to do it. Can someone help me? Thanks For i As Integer = 0 To objChkArray.Count - 1 Dim rows As DataRow() = dtable.[Delete]("ct = '" & CInt(objChkArray(i)) & "'") For … | |
Re: Can you give us a sample of your code or maybe the data that produces the error. Maybe it would be easy for us to discover what's really going on. | |
Re: > DGVtotalpay.DataSource = DataSet1.Tables(0) I think you need to specify the table name like Dataset1.tables(txttable.text) | |
Re: You can take a look at this one. I want to explain it to you more clearly but I don't have enough time. Maybe I'll get back to you after work. http://www.freedotnetapps.com/asp-net/how-to-read-data-from-xml-file-in-asp-net/ | |
Re: I dont know if I understand your problem right but I think this would help you. FrmComponent.MdiParent = Me 'Me is your MDIparent Form name FrmComponent.Show() Don't forget to mark this issue as solved :) Good luck | |
Re: Sorry Jim, I think he is a filipino. Hello gleen.r, I think you can take a look on this one. All SQL commands are indicated the only thing you need is to establish a connection between MSSQL or MySQL and VB. http://www.w3schools.com/sql/default.asp If you want us to help you further, … | |
Re: > Try > txt5.Items.Clear() > myRead.myfill("Select DETAILACCOUNT from tb_MYCHARTOFACCOUNT") > End If are you sure you didn't encounter any error on your code? I think it is going to perform the catch statement because you have endif without using If. | |
Re: You can use this bro, Dim T As TimeSpan = d1.Value - d2.Value MsgBox(T.Days & " Days " & T.Hours & " Hours " & T.Minutes & " Minutes ") d1 and d2 are datetimepicker. | |
Re: > S**PACES WITH NO CHARACTER, SPACES CHARACTER, only be allowed is ** What do you mean? Can you explain it clearly so we can help you? | |
Re: Good day Jim, is it possible if all of my textbox is not in the panel or groupbox? Can I use: Dim ptotal As Double = 0.0 For Each tbx As TextBox in Form1.Controls.OfType(Of TextBox)() ptotal += Double.Parse(tbx.Text) Next ?? | |
![]() | Re: Good day Jim, I'm interested with doing this but your attachment is not working with my current version of visual studio. I'm using 2005. |
Re: You can create a datatable to served as a data container. Because the last filter will be replaced when you use your code. Or, you can copy your dataset then add the next filter to it so you can populate your datagrid properly. Take a look at this. http://msdn.microsoft.com/en-us/library/system.data.dataset.copy.aspx Hope … |
The End.