41 Discussion / Question Topics

Remove Filter
Member Avatar for cVz

Hi guys, Stupid Question.... How can i group specific rows in a cxGrid (Express Quantum Grid 6)... this event will occur onClick... any ideas ??? Delphi 7....

Member Avatar for pritaeas
0
657
Member Avatar for cVz

Hi Daniweb people I have a really stupid question, strangely it has been keeping me busy for several days now and i just cant help but to ask for help... ive searched the whole of the MSDN libraries but no code seems to work for this I am making an …

Member Avatar for ddanbe
0
267
Member Avatar for cVz

Hi , I have 2 columns named 1. Tel_H 2. Tel_H_Code How can i merge these two columns to make them one ?? I am clueless here...The best i can do is to view them as one [code] SELECT Tel_H_Code + Tel_H AS 'Tel_H' FROM Detailed_List [/code]

Member Avatar for Todster
0
212
Member Avatar for cVz

Good day I'd like to find out how to change the color of a row on a page startup in Delphi 7 pro with an Express Quantum grid 6 What i am trying to achieve is this if Quantity in stock = >10 row color should be green... if Quantity …

Member Avatar for vedantham
0
1K
Member Avatar for cVz

Hi there, I am trying to write a stored procedure that will basically loop through the database, get allthe tables in the database and then for each table in the database it will take an entry of that database and just insert it into that same table again... i am …

0
64
Member Avatar for cVz

I get the following message when executing a stored procedure. [COLOR="Red"]The query has exceeded the maximum number of result sets that can be displayed in the results grid. Only the first 100 result sets are displayed in the grid.[/COLOR] However , i cannot change the fact that the SP uses …

0
101
Member Avatar for cVz

Just because there is no help for this online that i could find, I'm posting this for all the other coders... This makes use of a third part class downloaded from code project... AWESOME FTP class this , i owe the creators a huge thank you ... [CODE] using System; …

Member Avatar for Pinos
0
918
Member Avatar for cVz

HI there. We are currently creating a page which contains (a) 10 Check Boxes (b) for each check box there is a radio button list with 10 values. What we want to achieve is the following When e.g. The first checkbox is checked, the forst radio button list should be …

0
105
Member Avatar for cVz

Hi I use Visual 08 ASP.NET C# and JavaScript I would like to do the following validation on a text box the length MUST be 12 characters long in the following format LLLLLLNNNNNN Where L = Letters N = Numbers if the users input does not match the required format …

Member Avatar for guru_sarkar
0
1K
Member Avatar for cVz

:'( Hello everyone, i wrote an application that makes database backups and zips them. Can anyone please tell me what i need to do in order to get the apllication to work on IIS 6 windows server 2003 SQL 05 1. The application works fine on machines for both XP …

Member Avatar for sknake
0
267
Member Avatar for cVz

Hi , I need to create a page that has databound controls . eg. Say i have a row with the following columns 1. TrackKey VARCHAR(50) 2. State VARCHAR(50) 3. Reason VARCHAR(50) 4. DateChanged DATETIME ------------------------------------------------------------ Now for each row in the table, the controls should be like this 1. …

Member Avatar for dnanetwork
0
125
Member Avatar for cVz

Hi I am writing a web application with VS 2008 standard edition. I just got this really weird error. I replaced a few of the controls on the form from labels to text boxes, and it worked fine , but all of a sudden it shows me the old controls …

Member Avatar for cVz
0
138
Member Avatar for cVz

Hi I have a form with 1. dropdown (ddTTDBenefitP1) 2. label (lblBenefitPeriodFactor1) The combobox is populated with listitems [Text & value] I applied attributes to this dropdown. [code=C#] // ddTTDBenefitP1 ddTTDBenefitP1.SelectedIndex = 0; string ddTTDBenefitP1_script = string.Format("javascript:document.getElementById('{0}').innerText = {1}.options[{1}.selectedIndex].value;", lblBenefitPeriodFactor1.ClientID, ddTTDBenefitP1.ClientID); ddTTDBenefitP1.Attributes.Add("onChange", ddTTDBenefitP1_script); [/code] So when a user changes the …

Member Avatar for dnanetwork
0
146
Member Avatar for cVz

Hi everyone, I would like to set a label's text when a dropdownlist item is selected I want the label to display the value of the item, not the text. Is there any way i can do so without refreshing the page i found the update panel loads far too …

Member Avatar for dnanetwork
0
2K
Member Avatar for cVz

Hi There I get the following error when clicking on btn This code works perfectly on some machines but does not work on others [code=C#] protected void btnSave_Click(object sender, EventArgs e) { if (btnSave.Text.ToUpper() == "CREATE") this.InsertInvoice(); else if (btnSave.Text.ToUpper() == "SAVE CHANGES") this.UpdateInvoice(); } private void InsertInvoice() { String …

Member Avatar for sknake
0
167
Member Avatar for cVz

How can i set a text box's text to this format '[COLOR="Green"]0,000,000.00[/COLOR]' rather than '[COLOR="Red"]0000000.00[/COLOR]' ???' Thanks

Member Avatar for srikanthkadem
0
89
Member Avatar for cVz

Hi there, i would like to find out what the hell is wrong here [code] /// <summary> /// Get a single integer value /// </summary> /// <param name="sql">The sql query used to retreive a result set</param> /// <returns>The value of the first column in the first row of the result …

Member Avatar for agrothe
0
213
Member Avatar for cVz
Member Avatar for sknake
0
111
Member Avatar for cVz

:yawn: I am trying to import the address book from MS Office, can anyone tell me where to locate the MS Outlook addressbook ? Thank you in advance... [ICODE]cVz[/ICODE]

Member Avatar for cVz
0
100
Member Avatar for cVz

Can anyone share with me the great mysterious wonder of where to locate the Outlook Addressbook on my C drive ??? Thank you in advance:)

Member Avatar for cVz
0
70
Member Avatar for cVz

Can anyone give me some good forums or advice on threadpools in C# ??? Thanks ...:D

Member Avatar for BlackSun
0
193
Member Avatar for cVz

I am making a recursive treeview that lists the directories on my server [or trying atleast]... So far so good , it seems to work, cept it does not load all the files / directories, please consider my code : [code=C#] void recurese(string root) { // New instance of the …

Member Avatar for LizR
0
208
Member Avatar for cVz

Ah man , ive been adjusting the code so much ... I am trying to make a treeview that display's all the directories and files on theserver (SO FAR SO GOOD) ... Here's my code to retrieve Directories and files [code] public string[] GetFileList() { string[] downloadFiles; StringBuilder result = …

Member Avatar for LizR
0
355
Member Avatar for cVz

After a lot of testing etc, i decided to move away from the 3rd party FTP classes and use the standard Microsoft FtpWebRequest for faster speeds etc... What i want to do is list the directories in a treeview! Now here's my code : [code] try { FTPRequest = (FtpWebRequest)WebRequest.Create("ftp://iwantstringsman"); …

Member Avatar for Antenka
0
179
Member Avatar for cVz

I am using FTP to upload and download files from my server , but it is incredibly slow... When i use File Zilla it is really really fast, but for some reason my FTP program lags really badly, can anyone give me a reason or some help for this ?? …

Member Avatar for Torquai
0
167
Member Avatar for cVz

Hey there, ok i finally get my list of directories from my server , but these look like this -x 10 test mail 4096 Dec 1 12:01 users -x 10 test mail 4096 Dec 1 12:01 admin etc etc... basically i only need "users", or in the second string "admin" …

Member Avatar for cVz
0
148
Member Avatar for cVz

Hello fellow super coder people i am rtying to list all the files in a certain directory (eg. "TestDir") in a combobox [CODE] try { m_ftp.Server = txtftpServerName.Text; m_ftp.Username = txtftpUserName.Text; m_ftp.Password = txtftpPassword.Text; m_ftp.Login(); string[] The_File = m_ftp.GetFileList("TestDir"); foreach (string FILE in The_File) { cboFindFile.Items.Add(FILE); Console.Write(FILE); } m_ftp.Close(); } …

Member Avatar for LizR
0
217
Member Avatar for cVz

Hi there, I would like to know if there is any default settings one can use to test FTP settings etc, i am doing an application that does database backups , then zips the backup and FTP it to the server, i believe it is working because at the moment …

Member Avatar for LizR
0
252
Member Avatar for cVz

Hey there, i am trying to zip .bak files while making the backup , this application schedules backups and then backs up databases on the server , so now i want to zip or compres these files , can anyone give me some advise on how to do this ?? …

Member Avatar for ddanbe
0
162
Member Avatar for cVz

hey there lovely people, i am trying to make an application that makes database backups, now obviously i need to add the file / filegroup backup option too , which is not a problem except for this one little problem... How can i get the application to display a list …

Member Avatar for peter_budo
0
75
Member Avatar for cVz

Hey hey I have two tables with a lot of data, i need to insert certain column values from table one into table two - eg Table one column = First_Name Table two column = Name I need to get all the values in table one (First_Name) into table two …

Member Avatar for darkagn
0
67
Member Avatar for cVz

Hey there, i really want to break my pc by now can anyone tell me how to get around this ?? I just want to update the new database here [code] USE NGCOLLECT GO INSERT INTO dbo.Cases ( CustId , Consultant , Bank , OldAccountNo , LastAmountReceived , DateReceived , …

Member Avatar for cVz
0
132
Member Avatar for cVz

Hey can anyone give me the query to retrieve a list of databases on a server rather than this query [code]SELECT NAME FROM sysobjects[/code] which gives me a list of tables ???? Thank you

Member Avatar for cVz
0
175
Member Avatar for cVz

Sup ladies and gentlemen, please help me, i need to loop through the listbox, now here's what i have [code] foreach (ListViewItem ListItem in listView_Replacement.Items) { // finding the string in the current item rows string m_findText = listView_Replacement.Items[0].Text; string m_replaceText = listView_Replacement.Items[0].SubItems[1].Text; string m_Messagetext = txtMessage.Text; string m_MessageTextNew = …

Member Avatar for cVz
0
109
Member Avatar for cVz

Hey people , i am trying to send an email, but for some reason its just not sending ... please help me out , here's my code [code] // trying this block of code try { // Looping through the rows in the datatable foreach (DataRow Row in dt.Rows) { …

Member Avatar for cVz
0
108
Member Avatar for cVz

Can anyone please provide me with some help to over ride the web.config file in VS 2005 , i am new to the ASP scene, and it is all rather confusing! i want to create a login page with three user roles 1 - Admin 2 - Manager 3 - …

Member Avatar for Baradaran
0
111
Member Avatar for cVz

Hey people .... I am trying to dynamically load data into combo boxes on selection of the first combo box items... I am Using MySql and PHP .... i really just don't know what to do anymore ... please please please help me ... PS - i am actually a …

Member Avatar for digital-ether
0
178
Member Avatar for cVz

Hi guys, I am trying to hide 2 list boxes, then on selection changed show a new list box with JavaScript, i am very very new to web development in general, I am actually a software developer in the Pascal and C# language so this is all very new to …

Member Avatar for nikesh.yadav
0
74
Member Avatar for cVz

Hey guys i have an application where i assign values to the type of sale it would be -- here's my code -- [code] procedure TPaymentForm.OkButtonClick(Sender: TObject); begin //ID 1 - Cash Sale IF (CashRadioButton.Checked) Then BEGIN //Opening Data Source and Stuff, Setting The Columns and Stuff Data.Statement_Entries_Table.Append; Data.Statement_Entries_Table.FieldByName('customer_id').AsInteger; Data.Statement_Entries_Table.FieldByName('date_time').AsDateTime …

Member Avatar for jsosnowski
0
132
Member Avatar for cVz

Hey dudes...i am currently working for a company that codes in delphi 7... i am familliar with C# language but not that much of Pascal language...i need to make a form where i can print an added HTML page... I managed to get it to print a form but i …

0
91
Member Avatar for cVz

Good Evening (Morning to others) I would like to find how it would be possible to create a calculator with only one entry field, i have managed to make one with two entry fields resulting in a ([2LeftOperand] + [2RightOperand]) calculation...i have tried hiding the Right Text box, and even …

Member Avatar for david.crawford
0
97

The End.