3,842 Topics

Member Avatar for
Member Avatar for Trevor_2

Hello, I wrote a program in vb2010 to assist in the organisation of my music school. It's fairly simple (as am I), uses a text file to store data, and is working fine; however, the various teachers have asked if it is possible for them to update the data when …

Member Avatar for cgeier
0
145
Member Avatar for Ruan_1

How can I get images from a server and save them locally. I want to import images from a url and upload it to my server. I have all the url of the images stored on my database (ETSP_GET_PHOTO_URL) I am very new to this so any help would be …

Member Avatar for Daemon_CC
0
172
Member Avatar for Ancient Dragon

According to [this article](http://www.infoworld.com/t/microsoft-windows/microsoft-confirms-its-dropping-windows-81-support-240407), Microsoft will no longer issue security updates to Windows 8.1 if you don't install the update path. >Since Microsoft wants to ensure that customers benefit from the best support and servicing experience and to coordinate and simplify servicing across both Windows Server 2012 R2, Windows 8.1 …

Member Avatar for Reverend Jim
0
465
Member Avatar for Mian Sahib Jan

me have a repeater which have labels and textboxes i want to access these controls values through ajax me have code which give insted of values Undefine my code are below Inline Code Example Here <script type="text/javascript"> function AddItemToCart() { var itemId = $('[id$="lblBookName"]').val(); var itemName = $('[id$="lblPrice"]').val(); var itemPrice …

0
88
Member Avatar for Zorrro

I will be hosting a website on windows 7 using Apache and a java based project tracking web application called jira on Tomcat using reverse proxy method. To secure that web application and my PC what steps should I take and from where should I start?

Member Avatar for iamthwee
0
413
Member Avatar for elie.karkafy

i need to copy my data from access database to sql database through coding in vb.net , and taking into consideration the duplicates each time i select from access database to copy to sql , any help thx

Member Avatar for elie.karkafy
0
101
Member Avatar for debgreat

Hi. I have a very old computer at my job. It will not boot up except for safe mode with networking. Suprisingly I like it better in this mode because it is 100 times faster. I do not know if it is plagued with viruses or has had a crash. …

0
188
Member Avatar for ahmedzahir
Member Avatar for deadsolo

Hello, I am having issue connecting my Access database to my PHP site via ODBC. Here is what I am doing: <?php $dbName = "F:\Data\Web\_Home\TickSys\TickSys.accdb"; if (!file_exists($dbName)) { die("Could not find database file."); } print "Found DB File."; $db = new PDO("odbc:DRIVER={Microsoft Access Driver (*.mdb, *.accdb)}; DBQ=$dbName; Uid=; Pwd=;"); ?> …

Member Avatar for deadsolo
0
2K
Member Avatar for k99rs

Can anyone point me to tutorials for creating windows services in vb .net? Thanks in advance.

Member Avatar for Reverend Jim
-1
90
Member Avatar for ngocham2001

Dear all, I have exists excel file on server. Now, I want output the file by php. I have this code: $file = "test.xls"; $file=basename($file); if (file_exists($file)) { header('Content-Type: application/ms-excel'); header('Content-Disposition: attachment; filename='.$file); ob_clean(); flush(); readfile($file); exit; } When I click download button, I can open file, but appear "missing …

Member Avatar for iamthwee
0
434
Member Avatar for zubaer_ahammed

I have used Samsung Android Phone driver in Windows 7 previously. But now in Windows 8.1 I can't install it. I have tried the latest driver from samsung official site but didn't work. Please help me.

Member Avatar for Rakesh456
0
207
Member Avatar for miguelusas1

I am trying to do a Page to PHPExcel to user fill an Html Page and send to PHP and it will: Open my default Excel Page and after fills the Excel Page with information send by Html What i dont know is how to do it read if is …

Member Avatar for miguelusas1
0
516
Member Avatar for rstringer

Hello All, I am working on an Access 2010 application. I would like to click on a command button and open a Adobe PDF document. The code for the On-Click event is: Set shell = CreateObject("WScript.Shell") shell.Run """C:\Program Files (x86)\Adobe\Reader 11.0\Reader\acrord32.exe"" SourceFile" When the Shell.Run line executes, Acrobat returns an …

Member Avatar for Ancient Dragon
0
359
Member Avatar for manel1989

Hello, I create a homegroup on my network(GGS) and I have 2 access points( GGS1 and GGS2) ; my problem is that when I want to connect for exemple on GGS1 I do not see the homegroup which is already on GGS same for point 2: GGS2. I want to …

Member Avatar for JorgeM
0
205
Member Avatar for Alp_1

I have a button which make it add data to accees database,but i want to another button which will make export data from access to excel. here is my button : try { string cmdText = "Insert INTO data(Name,Mail) Values(?,?)"; db_conn = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\\Users\\Alpozkanm\\Documents\\Visual Studio 2012\\WebSites\\IntegratedSubscribeSystem\\veri.accdb;Persist Security Info=False;"); OleDbCommand …

Member Avatar for du_1
0
435
Member Avatar for ravi_14

i am developing a project in c++ and i need database to save details.i googled but so far have bot come across a good tutorial for c++ database . most of the articles i have found are obsolete. please suggest what are APIs for database in c++?

Member Avatar for Ancient Dragon
0
473
Member Avatar for elie.karkafy

how i can import data from access database to my database in sql server , with a check for ducplicate each time i move data i need the code in vb.net any help ?

Member Avatar for elie.karkafy
0
985
Member Avatar for Belton

<?php include ('pages/dbconnect.php'); $rekdep=mysql_query("SELECT * FROM t_org ORDER BY dept, com ASC"); echo "<table class='gridtable'>"; echo "<tr><tr><th> Departement</th><th> Commune </th><th> ORG </th><th>Animal</th>"; echo "</tr>"; echo "</tr>"; $odl_dept = null; $odl_com = null; $odl_org = null; while($dep=mysql_fetch_assoc($rekdep)){ //List of department if($dep['dept']!=$odl_dept){ echo "<td>".$dep['dept']."</td>"; } //display blank td if the same department …

Member Avatar for mglobs
0
257
Member Avatar for GregDen

I am writing an application in Visual Basic 5.0 that calls Crystal Reports 4.6. I used to be able to do this on my old PC which ran Windows XP, but now when I try to do it on my new PC which is running Windows 7 (64-bit), I can't …

Member Avatar for miquel.matas
0
546
Member Avatar for rory.starkweather.7

This may be kind of an ambiguous question, or might take more explanation than anyone is willing to provide, so don't feel obligated to respond. I've been using Windows since Version 3.11 came out, but I've never really thought about it from a programming viewpoint. My main Windows development application …

Member Avatar for jwenting
0
289
Member Avatar for djasy

good evening people,i'm creating an application where i'd like to import and save a list of people in an excel sheet to my database in mysql, using php, And i'd like to modify it through a form using php! Can anyone have an idea or something which will help me …

Member Avatar for naidu65
0
5K
Member Avatar for help distressed

More and more guys are using the TAB for its features like email, phone,camera, small office like PP word excel. How is it really different from a cell phone? Is it going to replace the LAPTOP?

Member Avatar for Ancient Dragon
0
497
Member Avatar for jaga.dish.39

Hi all , can you pls say how i able to send the email notification alert with the datas getting from Sql server 2008 using windows service . - Thanks in advance

Member Avatar for deceptikon
0
273
Member Avatar for DaveSolano

I have a column in a spreadsheet labled SEX with the value of 1 or 2 for male or female. How do I calculate the average number of males and females? Or should I use a different value to calculate??

Member Avatar for gerbil
0
121
Member Avatar for johnsheehan

I am working on a project to create a front end in vb 2010 for an access database. It is adding the records in vb but not saving them in the database; this is the code i have so far: `Inline Code Example Here`Public Class Form2 Private Sub Button1_Click(ByVal sender …

Member Avatar for oussama_1
0
253
Member Avatar for GagaCode

hey all again i have a little issue it may be a little stupid but i'm not able to figure it out what i'm trying to do is to make a counter ,, i'm trying to get a number from database and increment 1 to it and adding it one …

Member Avatar for Sulaiman_1
0
254
Member Avatar for AH1

Hello, My old motherboard died without my having the ability to delete the old drivers off of the hard drive. I have installed a new motherboard and am attempting to boot into the old hard drive, however, Windows 7 will simply start up, try to load the files, and then …

Member Avatar for TheFixer
0
6K
Member Avatar for troverman

Just changed out internet provider, including our 5 static IPs. Reconfigured sonic wall, and basically everything works (Internet, email, etc) but not Outlook Web Access / outlook anywhere. In fact, typing the usual mail.domain.com/exchange simply brings up search results now, rather than trying to connect. Our name servers are still …

Member Avatar for troverman
0
528
Member Avatar for heycooldude

I have my outlook mailboxes in this structure mailbox1 -Inbox Mailbox2 -Inbox Current script is able to access Inbox of mailbox1 as it is my main mail box where as mailbox2 has been added into my profile. I want to be able to access Inbox of Mailbox2 import win32com.client import …

0
180

The End.