1,001 Recommended Topics

Remove Filter
Member Avatar for
Member Avatar for WpgnGaming

So am looking for a way to only select caption text from a listview like the screen shot shows below I dont want to highlight image only text thanks. Yours Simon ![selected.jpg](/attachments/large/4/7befe0a3722ff61ba22a14ea74569724.jpg)

Software Development pascal
Member Avatar for rproffitt
0
372
Member Avatar for Retrojay17

Using loops, write a C# program that asks the user to enter repeatedly an integer number, it stops when the user enters -1, then the program should display how many numbers were entered, their the sum and their average.

Software Development c++
Member Avatar for rproffitt
0
360
Member Avatar for Lante

I'm trying to connect a database with a login form to verify user as an existing one or a new one to sign up Private Sub Command1_Click() Adodc1.RecordSource = "select *from newcustomer where firstname='" + Text1.Text + "' and surname='" + Text2.Text + "' and customerid='" + Text3.Text + "' …

Software Development visual-basic-6
Member Avatar for RobDownUnder
1
2K
Member Avatar for Georgia_1

hi! I'm currently studying and having difficulty being able to print the array list, im not sure where im going wrong. any help will be appreciated import java.util.*; public class practice { static Scanner sc = new Scanner (System.in); static int numberOfCoffees = 0; static String[][] coffee = new String …

Software Development java
Member Avatar for JamesCherrill
1
681
Member Avatar for Terry_8

Have two CSV files containing client records and need to compare the two and then output to a third file those rows where there are differences to the values within the record (row) as well as output those records (rows) on the second file that are not on first file …

Software Development python
Member Avatar for Nani_2
0
32K
Member Avatar for Georgia_1

currently working on a project for college. when searching coffee names from the array list , it will show the object but will also show "there is no coffee in the list" for every time the object doesn't match the search, how can I sort this out? public static void …

Software Development java
Member Avatar for JamesCherrill
0
491
Member Avatar for A'mirul

Hi guys, I need help in doing what this code do but in Linux. Basically its a code to create keystroke about 5 seconds after the code is running. Below are the code in c++. Thanks on advance. int main() { // This structure will be used to create the …

Software Development c++
Member Avatar for rproffitt
0
385
Member Avatar for Rushabh Verma

Hi I have XML something like this : <component AttributeA="1"> <Node1 AttributeB="AAAA" Name="John" /> </component> in powershell I can load and read through xml like this : [xml] $xmlDocument = Get-Content (#path to xml file) Write-Host $xmlDocument.componet.AttributeA Write-HOst $xmlDocument.componet.Node1.AttributeB Write-HOst $xmlDocument.componet.Node1.Name that gives me the fallow output : 1 AAAA …

Software Development
Member Avatar for JamesCherrill
0
380
Member Avatar for amvx86

Hey everyone, I'm looking to add a block / function within a C++ application that will search for open windows. For instance, wordpad and notepad. If either are open perform an action. I'm doing this within win32 API but my question is this. If I create something as such, this …

Software Development c++ visual-c++
Member Avatar for rproffitt
0
606
Member Avatar for ToastMalone

Program 2 Shop application You must write a small application in JAVA that stores items and their prices. Your program must: 1. Create an array of item names. Use the following item names: Bread, Milk, Butter, Chips, Honey, Soap, Towel, Carrots, Beans, Samp, Dress, Pants, Shoes, Socks. 2. Create an …

Software Development
Member Avatar for Reverend Jim
0
444
Member Avatar for Rushabh Verma

I'm trying to map two entities to the same table with the same columns. The differences are HasQueryFilter condition for every entity and a column that takes part in the reference. The entities describe ralationship between dictionary and entity. When I launch it, I receive the following message: "... both …

Software Development
Member Avatar for JamesCherrill
0
418
Member Avatar for De_2

Hello guys, I need some help with a python program that i have to do for school. I don't know how to erase a button after using it. And how can i go to the next question after answering the first one. Please help me ASAP!

Software Development python
Member Avatar for Reverend Jim
0
283
Member Avatar for Rushabh Verma

I need to check the validity of the URL to different files without opening the link document/image. I used the below code in ASP.net 4.7.2 in validation attribute. The current code is as follows : (working fine with jpg) public override bool IsValid(object DocumentURL) { try { string urlLink = …

Software Development vb.net
0
251
Member Avatar for Cyril1

hello, I am trying to write a vb.net programme that reads data from a file and do a count for each column as shown in the format below and also write to an output file. i am able to do the count but i am unable to write the output …

Software Development vb.net
Member Avatar for rproffitt
0
1K
Member Avatar for Tajar2019

Hi guys, im a newbie in programming, please i need help in populating ms datagrid from ms sql table, can anyone suggest me something thnx

Software Development database visual-basic-6
Member Avatar for rproffitt
0
344
Member Avatar for Jeff-Bennett

I'm interested in meeting people to discuss Amazon Alexa in NY ( especially Long Island) area. I'd like to find people with background in creating / programming Alexa Skills, also people with expertise in large Alexa installations with multiple accounts. - Jeff

Software Development alexa
Member Avatar for rproffitt
0
299
Member Avatar for Tim_18

Hello, I am very new to programming as I am only a few weeks into my C# class. I have a project and after reading and reading my book, sadly I am stuck. Here is what the project calls for: I need to create a program that converts inches as …

Software Development
Member Avatar for smerilatt
1
3K
Member Avatar for evilguyme

so far i have this code.. [CODE]#include "stdafx.h" #include <iostream> #include <windows.h> #include <string> using namespace std; int main () { const int r1 = 175; const int g1 = 163; const int b1 = 134; HWND hwnd = FindWindow(NULL,"Test - Microsoft Visual Studio"); SetForegroundWindow(hwnd); HDC hdc = GetDC(hwnd); POINT …

Software Development c++
Member Avatar for toneewa
0
7K
Member Avatar for shakssage

Hi. I'm trying to create a Traffic simulator and I'm stuck on how to get a Car object to turn into a road. I've managed to have a car go straight (which is really easy anyway lol) but I can't really find a way to get it to turn into …

Software Development java
Member Avatar for RuhiAngel
0
2K
Member Avatar for johndohmen1963

I have a problem with my datagridview. And the following happens I have several buttons to load the datagridview. All these buttons are working correct So datagridview is loading as expected. Only when i press the right or the left arrow butoon and when then datagridview wil be selected with …

Software Development net visual-basic
Member Avatar for johndohmen1963
0
2K
Member Avatar for snowwizard

public int evaluate() { if (root == null) { return -100000; } return evaluateHelper(root); (error) } private int evaluateHelper(MyBinaryTreeNode rt) { if (rt.left == null) { return Integer.parseInt(rt.data.toString()); (error) } switch (rt.data.toString()) { case "+": return evaluateHelper(rt.left) + evaluateHelper(rt.right); case "-": return evaluateHelper(rt.left) - evaluateHelper(rt.right); case "/": return evaluateHelper(rt.left) / …

Software Development java
Member Avatar for JamesCherrill
0
868
Member Avatar for plump23$

The library optimezedr should determine if a collection of books is in ascending or desending order.Your solution must read books from a text file and produce 2 additional text files one in ascending order and one in Descending order. then your solution will indicate if your original text file in …

Software Development c++
Member Avatar for chuckc
0
558
Member Avatar for guffadi

First: Design a class named Employee with private fields for that person’s: (1) name, (2) ID number, and (3) hire date. The ID number should be in the format ###–C, where # is a digit, 0–9, and C is a character, an uppercase letter, A–M. Write no-arg, 1-arg (name), 2-arg …

Software Development java
Member Avatar for JamesCherrill
0
496
Member Avatar for Duo

Hi Im having an error with my app, Im still learning to code. It gives me error at line rs = cmdOLEDB.ExecuteReader Here's my full code Imports System.Data Imports System.Data.OleDb Imports System.IO Public Class Form11 Dim cnnOLEDB As New OleDbConnection Dim cmdOLEDB As New OleDbCommand Dim cmdInsert As New OleDbCommand …

Software Development vb.net
Member Avatar for Santanu.Das
0
486
Member Avatar for Purva_1

Here is my javascript code. function multyTypeUploadAttachments(file,classId,splAttrId){ var campaignID = $('#wk_custCampID').val(); if(campaignID == ""){ var campaignID = $('#wk_edit_camp_ID').val(); } var fileName = $('#'+file.id).val().replace(/C:\\fakepath\\/i, '');//form_skuAttachment var lastChar = file.id[file.id.length -1]; var upload_data = new FormData($('#wk_multy_form_AttrOptionAttachment'+classId+"-"+splAttrId+"-"+lastChar)[0]); $.ajax({ url: BASEPATH + 'c_workOrder/uploadSKUAttachments/'+file.id+'/'+campaignID, type: 'POST', data: upload_data, mimeType: "multipart/form-data", contentType: false, cache: false, processData: …

Software Development
Member Avatar for Dani
0
390
Member Avatar for Mitch_3

Getting errors and having a hard time seeing where. If I get it to build it is ignoring the inputmenu. package personalprogram; import java.util.Scanner; /** * * @author mitch */ public class PersonalProgram { /** */ public final class InputMenu { public void display_menu() { System.out.println("1) Calculate Cubic feet per …

Software Development java
Member Avatar for JamesCherrill
0
370
Member Avatar for aveeva7

Magento : Using app/design/frontend/default/theme/template/catalog/product/view.phtml how to display my text message on my selected products, workout : <?php $productId = '42150'; $product = Mage::getModel('catalog/product')->load($productId); if( $productId == '42150' ) { echo "Test"; } ?> if i wrong pls correct me.

Software Development vb.net
0
366
Member Avatar for Saboor880

Hi to all! I have SQL Server Express, SQL Server Management Studio 2012. My PC Name is : "SaboorPC" and SQL Server instance name is also "SaboorPC". I am trying to connect my Netbeans to My SQL Server but it is not connecting and giving the following error: "com.microsoft.sqlserver.jdbc.SQLServerException: The …

Software Development java
Member Avatar for rproffitt
0
432
Member Avatar for Zerua

I am trying to figure out why my answer still wrong even though I type the cucumber... .model small .stack 100h data segment str1 db "Enter Your answer: $" after db "Your answer is: $" answer db "Cucumber$" input db 20 dup("$") newline db 10,13, "$" correct db "Your Answer …

Software Development assembly
Member Avatar for rproffitt
0
384
Member Avatar for shehzadkhan

***java*** i have a assignment of oop by using java can any body help me pz : Design and implement these four classes Employee, MonthlySalEmployee, HourlySalEmployee, Company and implement the following functions: ⦁ Create an application class with N HourlySalaryEmployee objects and N MonthlySalEmployee objects. ⦁ Create constructors, accessor and …

Software Development java
Member Avatar for JamesCherrill
0
312

The End.