167,259 Topics

Member Avatar for
Member Avatar for Mr.M

Hi DW, I'm getting this error when I try to debug, it says it can't open `"c:\users\myusername\Documents\Visual Studio 2010\Projects\myprojectname\debug\myprojectname.exe"` How can I solve this?

Software Development c++ visual-studio
Member Avatar for rproffitt
0
259
Member Avatar for Mason_8

I've been reading about the Microsoft Solutions Partner program and wanted to ask the community is it actually worth pursuing for an IT company It looks like Microsoft has set certain performance and certification requirements that companies need to meet in order to qualify. They have categories like Infrastructure, Data …

Member Avatar for Reverend Jim
0
19
Member Avatar for PM312

i want to add Crosshair , a vertical and horizontal line to view the value of the axis is this available for charts in vb.net 2017. ![chart_2.png](https://static.daniweb.com/attachments/2/0ec00ac4dbe56443fdf35cb9868981b5.png)

Software Development vb.net
Member Avatar for Dani
0
49
Member Avatar for Volochain1

When displaying extensive MLM (Multi-Level Marketing) hierarchies using TreeView in ASP.NET, performance issues often arise due to the sheer volume of nested nodes. Loading thousands of members at once can slow down the interface, increase page load time, and degrade user experience.

Software Development software-architecture
Member Avatar for SCBWV
0
25
Member Avatar for PM312

I have a candlestick chart with long list (data point) on X-Axis which becomes congested when loaded. How to show datapoint with sufficient space . Is there any container with horizontal scroll bar to display chart just like data is displayed in DataGrid view without reducing column width. ![Chartcandlestick.png](https://static.daniweb.com/attachments/2/22662a22f31d649405949f9df4915ed6.png)

Software Development vb.net
Member Avatar for kinvieb
2
40
Member Avatar for Jameswood32

Hello, Just curious and want to know is their any alternatives to github as well?

Software Development github
Member Avatar for Temporal
2
75
Member Avatar for James_228

Hey Flutter devs I’ve been learning Flutter app development for cross-platform app development and I’m starting to get into more advanced stuff — but one thing that still feels a bit unclear is state management. I know there are several options like: setState() Provider Riverpod Bloc GetX, MobX, etc. But …

Software Development agile-development python
Member Avatar for Temporal
0
63
Member Avatar for Trunar

The project is: -------------------------------- Write a program that computes and prints the average of the numbers in a text file. You should make use of two higher-order functions (i.e., map and reduce, or something else) to simplify the design. Create a text file and name as numbers.txt and add the …

Software Development python
Member Avatar for Dani
0
2K
Member Avatar for asnashehr234

What is the difference between a sharepoint developer and a sharepoint administrator ?

Software Development java sharepoint
Member Avatar for dev_281
0
38
Member Avatar for Dani

What are some best practices for optimizing memory management when working with large datasets? I am tagging this topic both with php (because that is my language of choice, and the one I work with big data with) as well as c++ (because I know DaniWeb has a large low …

Software Development c++ data-science php
Member Avatar for ThinkWriteGrow
1
208
Member Avatar for asnashehr234

How does the CMS handle the categorization and prioritization of incoming correspondence ?

Software Development cms sharepoint
0
8
Member Avatar for Steph102

Hi everyone. I am just learning Python on class so I am really at the basic. I need to write a python program that will flip a coin 100 times and then tell how many times tails and heads were flipped. This is what I have so far but I …

Software Development python
Member Avatar for Reverend Jim
2
16K
Member Avatar for HungMob

Hello, I'm a Freshman in college that's going to majoring in Electrical and Computer Engineering. Right now I'm taking a C++ class and I'm looking to do something funny to a friend of mine. I have been searching the web for some "fake viruses" and whatnot to to play around …

Software Development c c# c++ engineering windows-virus
Member Avatar for cirol
0
6K
Member Avatar for Dani

I use Github for DaniWeb's code base. I was just wondering though. How secure is it? Would you ever store passwords or other sensitive information in Github (Don't worry. We use .gitignore.)? What about code that could be considered a trade secret, or that type of thing?

Software Development github
Member Avatar for Dani
0
309
Member Avatar for Stiven_1

I am a full-stack full-time developer. I have 5 years of development experience and My basic skills are Blockchain, TypeScript, ReactJS, Shopify. I am a full-time dev, so I can answer your inquiries at any time. I can work on weekends if needed and communicate fluently in English.

Software Development typescript
Member Avatar for Dani
-1
116
Member Avatar for asnashehr234
Member Avatar for Dani
-1
22
Member Avatar for blockard

What model of Android phone would you start with for testing a Java app? Is there one phone of which you can say, "Well, it works fine on here. There’s a good chance it’ll work on 75% of other Android phones and tablets"?

Software Development android android-development java
Member Avatar for Ulfson
-1
66
Member Avatar for js180

I have been searching online for a program that will: -reads in number of times a user wants a coin flipped -flip the coin that many times, printing out result of each coin flip -print out the total number of heads flipped and total number of tails flipped the application …

Software Development java
Member Avatar for Dani
-1
325
Member Avatar for xrjf

**Features:** * Retrieves the differentiating bit of a key with respect to the previous one and stores only this position in the index. * With at most one single disk read, assuming the index is in memory, it determines whether the key exists or not. * The index is always …

Software Development data-structure vb.net
Member Avatar for xrjf
0
160
Member Avatar for steve_55

Hello clever people, Completely new to VB.NET (only installed Visual Studio 2019 in the past couple of days). To start all I want to do is open Excel (office 365) from a button on a userform. The location of the file is on a network, lets say: - \\file-svr01\Rozel\Design\Parts\PNG.xlsx OR …

Software Development vb.net visual-studio web-design
Member Avatar for Pelorus_1
0
3K
Member Avatar for silverrr_btc

i have currently learning html only but its so boring do all of you guys had same problem and tell me which language do i start with html, me and my friend have made a site on html with little css and and js (thegeekinsights) and its going fine. can …

Software Development html-css javascript
Member Avatar for retseaz77
0
90
Member Avatar for James_228

I’ve been working on a mid-size React project and started noticing performance lags and bloated component trees. I optimized a few things like: Using useMemo() and useCallback() smartly (but not overusing) Breaking components into smaller reusable ones Lazy loading routes and components But I’d love to know: What are your …

Software Development javascript
1
37
Member Avatar for YashSmith
Member Avatar for YashSmith
-3
26
Member Avatar for YashSmith

I’m getting a segmentation fault in my C++ program when trying to access an array element. Here’s my code: #include <iostream> using namespace std; int main() { int arr[5]; cout << arr[10]; // Accessing out-of-bounds index return 0; } How can I prevent this memory access issue?

Software Development c++
Member Avatar for Salem
-1
58
Member Avatar for YashSmith

My Java application crashes with a NullPointerException when trying to access an object property. Here's the problematic code: public class Test { public static void main(String[] args) { String text = null; System.out.println(text.length()); // NullPointerException here } } How can I properly handle this scenario?

Software Development java
-2
33
Member Avatar for Sammi_2

Support for the apple developer enterprise account is required for a long time. Because customers need to distribute the app privately within their company, only an in-house certificate can do this. If you have one, please leave me a message

Software Development apple developer-tools ios
Member Avatar for Dani
-1
17
Member Avatar for marrywillson

AI is good for content writer. but some time AI have not perfect solution . so AI not good for future as a content writing prospective.

Software Development image seo visual-basic
Member Avatar for Yenjeff
0
143
Member Avatar for 杨_659

## **Introduction** > The McCharts component library is developed based on Hongmeng ArkTS syntax and supports API 9 and above. The chart component has been open sourced. Everyone can participate, whether they are new or experienced, to learn from each other, develop more component libraries, and enrich the ArkTS ecosystem. …

0
136
Member Avatar for 杨_659

**English Translation:** Hello everyone, I’m Chen Yang. It’s been a while since my last update. The main reason is my busy schedule with my full-time job, leaving me little time for writing. Additionally, I’ve spent the past six months learning HarmonyOS ArkTS, and now that I’ve reached a semi-proficient level, …

0
82
Member Avatar for Mr.M
Member Avatar for toneewa
1
237
Member Avatar for Suheb
Member Avatar for Salem
-2
18
Member Avatar for YashSmith
Member Avatar for Salem
0
25
Member Avatar for Ray brad

My name is Ray Brad. I am a learner in Salesforce development and administration, and I also have knowledge of Java concepts. If anyone has questions related to these topics, feel free to comment, and I will do my best to answer them.

Software Development cloud-computing java visual-basic
Member Avatar for Dani
2
94
Member Avatar for YashSmith

If you want to add a dynamic filtering option in your web application, here’s a simple and effective solution using React. This filter allows users to search by keyword, set minimum and maximum values, and filter by category. import React, { useState } from "react"; const DataFilter = ({ data …

Software Development javascript
0
43
Member Avatar for 勾玉

This project is a cross-platform Kafka GUI client. A star would be appreciated to support the open-source effort by the author. Thank you! # Features of Kafka-King * View the list of cluster nodes, dynamically configure broker and topic settings. * Support for consumer clients to consume messages from specified …

Member Avatar for elary
3
92
Member Avatar for digiratina

Software development industry keep on growing and various trends comes each year/month. Out fo them, we have explore some software trends for 2025 which are as follows: 1. Low-Code and No-Code Development Revolution 2. Hyper-Personalized Software 3. AI-First Development 4. Cloud-Native Architecture 5. Focus on Cybersecurity-Embedded Development 6. Green Software …

Member Avatar for rproffitt
-1
17
Member Avatar for KamalDeepPareek

Does anyone know, how we can build, basically i want to know, what things will be need?

Software Development software-architecture
Member Avatar for Dani
0
39
Member Avatar for mark_hahn

I need to develop an application where I give an llm a piece of code, like maybe a function, and then the llm finds the closest match that does the same thing. It would look in one or more source files. The thing found may be worded differently. If the …

Software Development artificial-intelligence-llm
Member Avatar for Salem
0
56
Member Avatar for LiLo1001

In your opinion, what are industries use/benefit the most from automation, specifically intelligent automation?

Software Development artificial-intelligence-llm
Member Avatar for Dani
1
172
Member Avatar for bkelly13

Environment is Windows 11 and Visual Studio 2019 using Python. I am a Python novice. The goal is a project with multiple dialogs. Not a web project, just many dialogs. From VS some options are Django, Flask, Bottle, Jade, and more. Searches for each of those provide simplistic descriptions without …

Member Avatar for Reverend Jim
0
58
Member Avatar for shane_18
Member Avatar for faisalsaraj

Developing apps for both iOS and Android can be challenging but rewarding. The key is to use cross-platform frameworks like React Native or Flutter, which allow you to develop app iOS and Android simultaneously. This not only saves time but also ensures a consistent user experience across both platforms. Focusing …

Software Development android ios software-architecture
Member Avatar for Olu_610
-2
29
Member Avatar for shane_18
Member Avatar for complete

How do I establish an open connection to an open web browser in C#? In a Microsoft C# program using a Visual Studio Code I am using the following namespaces: using OpenQA.Selenium; using OpenQA.Selenium.Chrome; using OpenQA.Selenium.Support.UI; After I get a string variable, "url", assigned with a URL of a website …

Software Development c# session visual-studio web-browser
Member Avatar for xivlauncher
2
158
Member Avatar for shane_18

Hii I am a developer working on a blockchain MVP development. I want to add MVP features to the app, but I am not sure where to start. Can anyone provide some guidance? Thank You

Software Development c++ java python
Member Avatar for Salem
-1
26
Member Avatar for Mr.M

Hi DW, I'm trying to automate using NAVIS, I tried using post method simulating how it does on a web browser but I get error 678 then now I'm trying to access it using vb.net web browser.It does load but the issue is that I can't set the input elements …

Software Development vb.net web-browser
Member Avatar for Mr.M
0
60
Member Avatar for CrystalKanger

good day - I am wondering if anyone can explain to me how to allow the user to change the name of the tabs in a tab control via a textbox? For example, at runtime the user will be able to change the title of the tab ("TabPage1") to "Baking" …

Software Development c vb.net visual-basic
Member Avatar for pathofbuilding
2
56
Member Avatar for Audun

Hi I want to make use of GitHub-programs, and so I downloaded a bunch of Python-tools. When I run this command in "Python 3.12", which looks like CMD to me, I get a syntax error. "To create a virtual environment, Python supplies a built in venv module which provides the …

Software Development github gui python
Member Avatar for pathofbuilding
1
95
Member Avatar for dhanya_piit

i want to create table in ms acces database during run time......... Dim myConnection As ADODB.Connection Dim Conn As String Dim vtblNametxt As String Private Sub cratblebtn_Click() vtblNametxt = tblNametxt.Text myConnection.Execute ("create table " & vtblNametxt & " (id varchar2(3),pname varchar2(20), qtyp number(4));") End Sub Private Sub Form_Load() Set myConnection …

Software Development open-source visual-basic
Member Avatar for Emil_9
0
1K

The End.