-
Replied To a Post in SQL Query only returns one item (rather than complete list) - asp.net mvc
Have you tried a more conventional way to populate those lists? Like iterating through the rows. Just to check to see if you do get 4 records instead of 1. … -
Began Watching help needed
My computer is an acer Windows 7. My computer engine I can here, but I have a black screen. How can I get help with this problem. -
Replied To a Post in help needed
Have you tried booting into safe-mode? If you get the screen back there, you can re-install/update your graphics drivers. -
Began Watching One of my folder from my pc is missing
I am a beginner in working with "adobe after effects". I used to save my created videos in F: drive in the folder called as "Adobe after effects projects". But … -
Replied To a Post in One of my folder from my pc is missing
Have you tried this in Windows Explorer: Click on Tools Click on Folder Options Click on the View tab Under Hidden files and folders click in the circle next to … -
Stopped Watching PHP Warning: mkdir() [function.mkdir]: Permission denied
Greetings pros :D. I am having problem with creating a directory on my linux server. When i download a file it display that error. (I migrated my php project from … -
Replied To a Post in PHP Warning: mkdir() [function.mkdir]: Permission denied
It's usually found in the /etc/apache or /etc/httpd directory depending on which linux distro you're using. -
Replied To a Post in PHP Warning: mkdir() [function.mkdir]: Permission denied
Here's the deal. Practically everything under and including www should be owned by the webserver. Check the config to see what user the server runs as, and change files and … -
Began Watching Getting data from a different page of the same Website
Hi, Say I have a 2 page website each have their own script, how can I make a page get a data form the other page? for example I have … -
Replied To a Post in Getting data from a different page of the same Website
Because webpages are "dead" once you go to another page, you have to pass the selected value/s to the new page. Either with a querystring or with a json string … -
Began Watching Search button
I needed help for the codes in displaying data from access by searching a keyword and display the other info on labels. something like: textbox(surname as keyword) commandbutton(search) lblSurname lblFirstname … -
Replied To a Post in Search button
I did that once in a project I was working on, but with SQL server. You could construct a SQL query in which the WHERE clause looks something like this: … -
Replied To a Post in iTextsharp - Determining the font size
My bad. Then perhaps this should be more helpful. http://stackoverflow.com/questions/16330524/get-fontsize-from-pdf-using-itextsharp -
Began Watching Debug shuts down when database is changed
I have created a windiws forms program in visual studio. I am using a local mdf database file. I have also imported the same database inte my sql server. I … -
Replied To a Post in Debug shuts down when database is changed
I've had problems like this before myself. This usually happens if you also use a strongly typed dataset, in which case you have to manully change the generated code for … -
Replied To a Post in PHP Warning: mkdir() [function.mkdir]: Permission denied
Well. List the files and folders with the -al argument, the name of the owner should be there. Normally the name of the webserver should be apache (if you run … -
Began Watching networking two computers
how do i # network two computers # such that information entered one computer that is handles clients in a company updates on another computer in a managers office in … -
Replied To a Post in networking two computers
Your question is not very detailed. Are you developing a software to be installed on two computers and communicate with each other? -
Began Watching iTextsharp - Determining the font size
Hi all, i am working on pulling out text and its properties from a pdf file. iTextSharp library is used for this purpose. Initially i took the fontsize property directly … -
Replied To a Post in iTextsharp - Determining the font size
Have you tried using BaseFont.GetDocumentFonts()? Perhaps this could be useful: http://itextsharp.10939.n7.nabble.com/How-to-get-the-list-of-embedded-fonts-in-a-PDF-td3153.html -
Began Watching Automatic update datagridview in form1 after insert new info from form2
Hi! I have problem with my payroll program, I'm beginner in c#. how can I connect or how to Automatic update the datagridview in form1 after I insert a new … -
Replied To a Post in Automatic update datagridview in form1 after insert new info from form2
If the datasource for the datagridview is a datatable or dataset, it should be sufficient to update those with the changes made to the database. If you made that variable … -
Began Watching PHP Warning: mkdir() [function.mkdir]: Permission denied
Greetings pros :D. I am having problem with creating a directory on my linux server. When i download a file it display that error. (I migrated my php project from … -
Replied To a Post in PHP Warning: mkdir() [function.mkdir]: Permission denied
The directory in which the php script resides in must be owned by the webserver. Also, check to see if the correct permissions are set. Scripts run by mod_php should … -
Stopped Watching how to print a row from datagridview into microsoft report without database
Hi, i made this app which loops a sequence of numbers from 2 textbox and displays it into a datagrid view, what i am looking for is a code that … -
Stopped Watching checking checkedListBox item from another form
I have a problem My program has 2 form 1: form1 - main form 2: form3 - history browser - to load ariables from "database" (simple csv file) into form1 … -
Stopped Watching Select max value in a database.
Hi. I want to select the max value in a column (I want to increment the numbers using code instead of autonumber) I have tried some samples from the internet … -
Stopped Watching Data doesn't retrieve!!!
Hey! I'm trying to connect my backend (Ms Access) to the front end (VB.NET 2010). I'm trying to retrieve data and I get these errors. I have two problems: 1. … -
Stopped Watching How to remove blank lines from VB and format it ?
Hey guys, here is how the text file looks now, FILEBEFORE Hello:.++.:something:.++.: bl ank:'++': 2Hello:.++.:2som ething:.++.:3b lank:'++': vdvdfv:.++.:bdfadf bfad:.++.: abfdabdabadfb:'++':Line4:.++.:So fh sj:.++.:sddsds:'++': If you actually see the lines which are … -
Replied To a Post in Select max value in a database.
Try this: If dr.HasRows Then dr.Read() If IsDBNull(dr("MAXIMUM")) Then empid = 1 Else empid = CInt(dr("MAXIMUM")) + 1 End If Else empid = 1 End If dr.Close() Me.txtmaxvalue.Text = empid … -
Replied To a Post in Select max value in a database.
No matter what the database backend is and no matter what type of database connection you use, you can still throw SQL commands at it and it will return the … -
Began Watching Data doesn't retrieve!!!
Hey! I'm trying to connect my backend (Ms Access) to the front end (VB.NET 2010). I'm trying to retrieve data and I get these errors. I have two problems: 1. … -
Replied To a Post in Data doesn't retrieve!!!
This is a fully working code. I noticed one thing that caused problems. The column name Size is a reserved word, so you need to put brackets [] around it. … -
Began Watching Select max value in a database.
Hi. I want to select the max value in a column (I want to increment the numbers using code instead of autonumber) I have tried some samples from the internet … -
Replied To a Post in Select max value in a database.
Simple SQL query: SELECT MAX(<column name>) FROM <table> The MAX() function works with both numbers and strings. http://msdn.microsoft.com/en-us/library/ms187751.aspx -
Began Watching how to print a row from datagridview into microsoft report without database
Hi, i made this app which loops a sequence of numbers from 2 textbox and displays it into a datagrid view, what i am looking for is a code that … -
Replied To a Post in how to print a row from datagridview into microsoft report without database
As suggested by the title of this thread, you already know how to connect a database to the report. Based on that I would like to point out that a … -
Began Watching checking checkedListBox item from another form
I have a problem My program has 2 form 1: form1 - main form 2: form3 - history browser - to load ariables from "database" (simple csv file) into form1 … -
Replied To a Post in checking checkedListBox item from another form
Well. You can't pass information back to the main form if you close it. You have already hidden it. Isn't that enough? Suggestion. If the second form is nothing but … -
Began Watching Scraping Text from a Screen
Hello group! I need to scrape data from the screen of an open application. It will be used as text, so it will need to be converted into a string … -
Replied To a Post in Scraping Text from a Screen
It sounds like those "texts" that you scrape from the screen are log messages of some type. Wouldn't it be easier to create a program that connects to the server … -
Replied To a Post in How to remove blank lines from VB and format it ?
You can remove the part with the newValue variable. It does almost the exaxt same thing as the three lines above it. -
Began Watching How to remove blank lines from VB and format it ?
Hey guys, here is how the text file looks now, FILEBEFORE Hello:.++.:something:.++.: bl ank:'++': 2Hello:.++.:2som ething:.++.:3b lank:'++': vdvdfv:.++.:bdfadf bfad:.++.: abfdabdabadfb:'++':Line4:.++.:So fh sj:.++.:sddsds:'++': If you actually see the lines which are … -
Replied To a Post in How to remove blank lines from VB and format it ?
You need two string variables. You can perform a line read using the appropriate filereader object and append the line into a temp string variable through a simple loop. And … -
Marked Solved Status for DNS server keeps changing
Hey, I've got kind of a weird problem. I've set up a local network at home using a Netgear WNDR3700v3 router, which works flawlessly. And I've set it up so … -
Replied To a Post in DNS server keeps changing
Never mind. I figured it out. I forgot that I have a second router installed at my neighbour connected to my lan through it's wan port, and that it too … -
Created DNS server keeps changing
Hey, I've got kind of a weird problem. I've set up a local network at home using a Netgear WNDR3700v3 router, which works flawlessly. And I've set it up so … -
Began Watching DNS server keeps changing
Hey, I've got kind of a weird problem. I've set up a local network at home using a Netgear WNDR3700v3 router, which works flawlessly. And I've set it up so … -
Began Watching Transfer Data from Access Database to SQL Server 2008 R2 USING VB.NET CODE
I NEED TO WRITE A CODE IN VB.NET , THAT LET ME EXPORT DATA FROM ACCESS DATABASE ( THE TABLE ATTACHED AS IMAGE ) AND IMPORT IT INTO SQL SERVER … -
Replied To a Post in Transfer Data from Access Database to SQL Server 2008 R2 USING VB.NET CODE
The best option would be to load both databases into their own dataset. That way, when you do the compare, nothing gets pushed to the sql server and cost time. …
The End.