4,588 Topics

Member Avatar for
Member Avatar for rpv_sen

Hi I am working on windows services. i can bale to run the service for every 1 min. I creating multi thread. but i required the service to run in single thread. can any one please help me to fix my issue. **Code** using System; using System.Collections.Generic; using System.ComponentModel; using …

Member Avatar for pritaeas
0
1K
Member Avatar for Sonic1980

Hello, I need some guidance with my third button. I have created a GUI that so far displays contents from from two folders by using folder browser dialog. All I want to do is compare the filenames between both folders and display the differences in a third listbox. I would …

Member Avatar for tinstaafl
0
700
Member Avatar for PinoyDev

Good day guys! I just want a little help on how to reference a repeater control in a function. Im using c#.net. My code below: private void Load_Childrean_byTypeID(int TypeID, **repeatername reference here**) { SqlDataAdapter mycommand = new SqlDataAdapter("Select Id, FoamType_ChildName, ChildIcon_ClassName, ParentTypeID From tbl_ProductType_Children Where ParentTypeID = " + TypeID, …

Member Avatar for pritaeas
0
189
Member Avatar for mpdph09

I am trying to populate textbox on winsows application from database. The stored procedure pulls data using datareader. Data looks fine when I execute stored procedure on SQL server management studio. But when I am trying to populate from the application its not getting same result. I apprecaite all help. …

Member Avatar for mpdph09
0
300
Member Avatar for altjen

Hi, I am trying to develop a software which can get information like listed bellow In System : -SERIAL NUMBER(847MY5N15) -UUID(4C4C4554-0134-3710-804D-B8C04F594E31) -BIOS VENDOR(Dell Inc.) -BIOS VERSION(A09) In Motherboard(Optional, but will be good if : -MOTHERBOARD VENDOR(Dell Inc.) -MOTHERBOARD MODEL(02XJP9) -MOTHERBOARD VERSION (A03) -MOTHERBOARD SERIAL NUMBER (/847MYN1/CN1296112402BB/) In CPU: -CPU MODEL(Intel(R) …

Member Avatar for JOSheaIV
0
781
Member Avatar for omimo

hi i want a code with c# Programming language to select some picture and convert thats picture to binary and save them in sql server database. thanks

Member Avatar for JOSheaIV
0
149
Member Avatar for PinoyDev

Good day! I am new to C# programming. I just need some help to display all images from images folder in my root directory in a form of href inside my div tag. Here is my Div tag code which I need to repat my images: <div class="row margin-bottom-20"> <div …

0
109
Member Avatar for David_66

// Primitive Power Ball C# Samples Generator - Global Lotomania in action:) // David Taran January 11, 2016 // For PowerBall as a answer type: 5, 69, 1, 26, -1, 10... using System; namespace Loto5p1 { class Program { static void Main(string[] args) { int iRegularBallsCount, iRegularBallsMaxNumber, iPowerBallsCount, iPowerBallsMaxNumber, iGenerationInitialNumber, …

Member Avatar for JOSheaIV
0
934
Member Avatar for basma.lm

I faced a problem in adding a close button to TabPages for RightToLeft TabControl, i found the solution in this video and i want to share it with you [Click Here](https://www.youtube.com/watch?v=Oa7sBOeOHoA)

0
123
Member Avatar for Hamza_13

My tables are PURCHASE and SALES... In PURCHASE table, fields are CODE(primary key), PRICE, DATE, TOTAL, QTY... when I'm entering datas in form and when i click submit, the datas stored... but when i enter same DATA(CODE), it is showing error... i don't want to show the DEFAULT ERROR message... …

Member Avatar for JOSheaIV
0
222
Member Avatar for anujtripathi

[B][U]Following I am mentioning step-by-step procedure to create database connection to the asp.net website textboxes via C#.[/U][/B] 1: Open visual studio 2005 and from FILE select NEW-> WebSite, then from pop-menu select asp.net website (Note: Language must be C#) , then press OK. 2: Now create three textboxes from the …

Member Avatar for gouri kundu
-1
2K
Member Avatar for mpdph09

I am working on C# window form application, which do insert, update of data into the database. I am having trouble, since I am new into this. I have declared temp variable that gets value if record exsits in the database. But in some scenarios if record is loaded onto …

Member Avatar for tinstaafl
0
334
Member Avatar for toxicandy

Hello, I do want to start off by saying this is completely out of my area as I've never really worked with any ASP.net sites and hosting off IIS is also new to me. The site we currently have deployed is c#.net and was written back in 2005-2007, I have …

Member Avatar for LaxLoafer
0
318
Member Avatar for guest111
0
67
Member Avatar for Zeeshan_6

i am developing attendance software with sms support current i have tried sending sms with one gsm modem , but the it took 1.5 hour to send 3500 sms , so i wan to use 4 gsm modems having separate com ports , now the problem is i am unable …

Member Avatar for rproffitt
0
470
Member Avatar for musthafafarhan

I want to assign a single KEY in Keyboard to enable/Disable function. Initally, the button should be disable. when I press the button1 it should get enable and when I press tha same button1 again it should get disable. How can I do that in visual studio C# for windows …

Member Avatar for rproffitt
0
290
Member Avatar for kavithakesav

Hi All, I have a one web form where PF details will be filled in that i want PF nominee amount distributed using %. If they filled nominee details in the form the amount distributing in percentage. I need this in asp.net. Example: suppose they have 3 people for nominee …

0
83
Member Avatar for catastrophe2

hello so we are in the process of developing a tagging program, and im building the form in c#. now how would we be able to connect the db from workbench with this form in visual studio to make queries in the program? btw the databse i hosted it at …

0
138
Member Avatar for Mark_42

Hi Guys, iI am new to programming and started aabout 2 months ago. I am doing some exercises to help me get my head around the programming language. Here is what i am stuck on; Write a program that uses nested loops to collect data and calculate the average rainfall …

Member Avatar for JamesCherrill
-1
2K
Member Avatar for catastrophe2

im doing a project about tagging butterflies system, in which users will login/create account, update account, insert butterfly in database, update a butterfly in database, search for a butterfly, display a leaderboard, and a graph. i havent done C# in a while, altho i can get the hang of it …

Member Avatar for ddanbe
0
174
Member Avatar for kulkarninitin77
Member Avatar for 9tontruck

Hi, I am dealing with the shape drawing functions in C# and I am trying to resize DrawingGroup after drawing some shapes on it. Here is my code: DrawingGroup drawingGroup = new DrawingGroup(); Pen redPen = new Pen( Brushes.Red, 2 ); DrawingContext drawingContext = drawingGroup.Open() drawingContext.DrawRectangle( null, redPen, rect); double …

Member Avatar for ddanbe
0
169
Member Avatar for Sphinx'LostNose

Normally you can do this and pass the reference type by reference and the new keyword won't make the variables point to different objects: static void Main(string[] args) { Object origObj = new Object(); ExampleMethod(ref origObj); } void ExampleMethod(ref Object newObj) { //origObj will also reference the newly created object …

Member Avatar for ddanbe
0
236
Member Avatar for Dmitry1515

I have to convert this part of code to C# but I have no idea how. Need your help, guys! for /f "tokens=*" %%a in ('curl -s -m 3 http://hghgh.hgh.fgfjk/ ^| jq .ua') do set uagent=%%a I think, I should use ProcessStartInfo, but not sure about `-s -m` and `^| …

Member Avatar for tinstaafl
0
64
Member Avatar for Dmennite

Everything I have found shows how to add a row to a database for new images... I am trying to update an existing row with a longblob field to store a logo and cannot seem to grasp what to do Any help would be greatly appreciated

Member Avatar for Ehab_1
0
2K
Member Avatar for amacss

I am currently taking this course, and I am struggling with the application of code at points. Does anyone know where I can find a good site for tutorial purposes?

Member Avatar for ddanbe
0
298
Member Avatar for jerome2467

hi i got a bank account project and i dont know how to figure out this problem i need to be able to transfert money from checking account to saving account if someone can help me with an exemple ,because i am a bit lost thanks by advance

Member Avatar for Sudarvizhi_1
0
6K
Member Avatar for Nikusha.Kalatozi

Can someone tell me the formula codes of how to 1 find and write the total number of massive elements om massive number(random massive numbers) 2 find and write the biggest random massive number(random massive numbers) 3 find and write the smalles random massive number(random massive numbers) 4 how to …

Member Avatar for JOSheaIV
0
133
Member Avatar for ddanbe

This is easy! But I admit, it can be rather confusing at first if you also take the old style MenuItem stuff into account. I hope my code is as clear as possible. If not please let me know. To test it, just start a forms application and paste it …

2
6K
Member Avatar for Anne_3

Hi guys, ** Im an IT Intern Student here in the Philippines. they gave me a project which is File transferring, copy and delete. I started my OJT/Internship 3 weeks ago. and that entire week, all I have done is the design :( My professors in our university did not …

Member Avatar for Taywin
0
406

The End.