Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #4K
~20.3K People Reached
Favorite Tags

61 Posted Topics

Member Avatar for newbie26

hi...can someone help me?? a program that i can print barcode from a vb6 application? once i entered data, (i have already a format for the barcode value), it will print the barcode once.. then, enter again info, then print.. i have a sato barcode printer ct400.is there any configuration …

Member Avatar for rproffitt
0
3K
Member Avatar for newbie26

hi. how can i disable past days in ajax calendar extender? user must only select one month period from the current date. so if today is march 10, 2015 when user clicks the calendar, the enabled dates should only be from feb 10 to current date. please help. thanks..

Member Avatar for BMXDad
0
83
Member Avatar for newbie26

hi. say i have two dates: @DateFrom = 03/03/2015 @DateTO = 03/05/2015 How to get records where Date_Field is between @DateFrom 2:01 PM and @DateTo 2:00 PM? Thanks.. :) :) :)

Member Avatar for diafol
0
142
Member Avatar for newbie26

hi.. how can i disable the weekends on calendar extender. i dont want to alert the user, just disable it to prevent from clicking or selecting weekends. thanks.. :)

0
81
Member Avatar for newbie26

hi. how to clear textbox when user refreshes page or clicks the refresh button on browser when the page hangs? thank you.

Member Avatar for JorgeM
0
77
Member Avatar for newbie26

hi everyone, im new to java. and i was assigned to do a project that integrates java and .net(c#). here's the scenario: 1. the .net system will create a text file (.txt) based on some conditions --> i already did this part. 2. the txt file will then be pass …

Member Avatar for mueller-bruehl
0
258
Member Avatar for newbie26

please help with the query..I want to have a conditional statement in where clause depending on the result of select Count(*) statement originally my query is: select * from StudentMaster where StudentMaster.StudId = @pStudId and exists (select * from tblFinals where tblFinals.StudId=StudentMaster.StudId) but just today, I realize that user will …

Member Avatar for h4ng4r18
0
145
Member Avatar for newbie26

hi.can someone help me. i have two running totals in my report (in group footer section) 1. first running total is the total count of record of each group (RTotalManpower) (field to summarize : Name) 2. second runnning total is the total count of each record with grades >= 70 …

0
82
Member Avatar for newbie26

hi..can somebody help me? how can i have a conditional join in my statement. i have a parameter to be passed to the SP: @pRemarks my main query: select * from MasterList if @pRemarks='ALL' then my query will be: select * from MasterList inner join tblPositionLists on tblPositionLists.Position = MasterList.Position …

Member Avatar for urtrivedi
0
176
Member Avatar for newbie26

hi..can someone help me with this...i just want an application for fixing a table header while scrolling with repeater items (not in gridview). i tested some codes (pure css, js), but i find it hard to match the width of the header to the repeater items. Also, if records are …

0
100
Member Avatar for newbie26

hi. how can i convert string format to datetime: the string is formatted like : December 01, 2010 (which is another table) tblTransactions and the datetime column format is : 2010-12-01 (another table) tblBilling how can i search my string format to my table which matches the column (datetime field). …

Member Avatar for newbie26
0
241
Member Avatar for xuexue

hi. try to check your web config. You can add your connection string there: <connectionStrings> <clear/> <add name="ConnectionString" connectionString="Provider=SQLOLEDB;Data Source=10.0.1.11;Persist Security Info=True;Password=EDITH;User ID=EDITH;Initial Catalog=ictms" providerName="System.Data.OleDb"/> </connectionStrings> then call this connection in your form: Dim SqlConnection As New Connection Dim sConSql As String = SqlConnection.GetSqlConnectionString Dim conSql As New SqlConnection(sConSql) conSql.open() …

Member Avatar for xuexue
0
2K
Member Avatar for newbie26

hi can someone help me? I have an excel file and the columns consist of : ID, Name, ContactNo, SalesOutput Sample record is: ID,Name,ContactNo,SalesOutput 123,Michelle Dela Rosa, 8437, 2 456, Anthony Diaz, 8414, 5 What I would like to achive is auto add rows depending on the value in SalesOutput …

0
79
Member Avatar for newbie26

hi..please help.. i have 2 tables tblStudents and tblGrades. in tblStudents, all details of students and in tblGrades, grades of the students. column "StudId" is their only common column.. in tblStudents: StudId LastName FirstName in tblGrades: columns are: StudId SubjectCode Grade what i want to achieve is to query on …

Member Avatar for newbie26
0
155
Member Avatar for newbie26

hi.please help me with mysql query. i have a table tblGrades with fields ID, Subject, Remarks. how can i create a stored procedure that will display the students that have subjects(user input) and Remarks='Passed'? the Subjects will depend on the user, therefore it may be one or two or three …

Member Avatar for newbie26
0
2K
Member Avatar for newbie26

hi im populating a listbox control from DB.. i have 50 records displayed. is it possible to have two columns in listbox to divide the records, so it is not that long (other that have scroll) like the first 25 will be displayed in the first column and the other …

Member Avatar for nebyas
0
96
Member Avatar for laura301019

hey.. try this: VB Dim transaction As SqlTransaction = Nothing conn.Open() transaction = conn.BeginTransaction() Dim cmd As New SqlCommand("your insert statement", conn) ''set your parameters here... cmd.Transaction = transaction cmd.Prepare() cmdExecuteNonQuery() transaction.Commit()

Member Avatar for Ranjitrathod15
0
232
Member Avatar for newbie26

hi i used global variables on page_load event of my homepage. this is because these variables are used by other pages. i tested my page like COPYING THE URL then CLOSED ALL THE IE WINDOWS. and when i re opened IE, and PASTED THE URL I COPIED, it seems that …

Member Avatar for newbie26
0
227
Member Avatar for laura301019

hey..try this.. it has examples of ADDING/EDITING/DELETING of records from gridview then pop up a MODALPOPUPEXTENDER.. [http://www.aspsnippets.com/Articles/How-to-edit-GridView-Row-using-AJAX-Modal-Popup-Extender-in-ASPNet.aspx](null)

Member Avatar for newbie26
0
157
Member Avatar for Ranjitrathod15

hi.. try this.. if condition1 then ClientScript.RegisterStartupScript(Me.GetType(), "ErrorMessage", "<script type='text/javascript'>alert('ERROR!');</script>'") exit sub elseif condition2 then ClientScript.RegisterStartupScript(Me.GetType(), "ErrorMessage", "<script type='text/javascript'>alert('ERROR2!');</script>'") exit sub else ClientScript.RegisterStartupScript(Me.GetType(), "Confirm", "<script type='text/javascript'>alert('Saved!');</script>'") end if

Member Avatar for newbie26
0
180
Member Avatar for newbie26

hey .. i have a gridview and i set allowpaging=true. in the first column, i have a check box for choosing items..when i click on the second page of the gridview, and click a button for update, it doesn't recognize the changes i made in the previous record on the …

Member Avatar for newbie26
0
126
Member Avatar for newbie26

please help ive been looking for the solution for days. i have two date pickers (dbplite) one is for start date and one is end date. also i have a dropdownlist with the list of addresses of persons records. also a grid view to display record. i also have a …

Member Avatar for dimpysanjay
0
216
Member Avatar for newbie26

hi. please help.. how can i disable other check boxes when the user already checked 5 checkboxes? i have a grid view that is filled from database with checkboxes as template filed on the first column, then, user must choose only five records through checkbox.and when its already 5, all …

Member Avatar for jhonmarvi
0
159
Member Avatar for newbie26

Hi, Can someone help me. I need to create a VBA project in excel using combo box. For example, I have in column A, combo box of ITEMSA and in column B, combo box of ITEMSB. If I choose items from ITEMSA, just the corresponding items that will match will …

Member Avatar for ss125
0
270
Member Avatar for newbie26

help. all of a sudden, UPLOADING of files in all my forms didnt work. i tried may things as i had googled it. i tested the code, $_FILES seemed to be empty. > free-up /tmp folder > check php.ini; increase post_max_size, upload_max_filesize, memory_limit > restart apache after each configuration > …

Member Avatar for newbie26
0
368
Member Avatar for newbie26

help. all of a sudden, UPLOADING of files in all my forms didnt work. i tried may things as i had googled it. i tested the code, $_FILES seemed to be empty. > free-up /tmp folder > check php.ini; increase post_max_size, upload_max_filesize, memory_limit > restart apache after each configuration > …

Member Avatar for pritaeas
0
174
Member Avatar for newbie26

hi..please help me to have code that will display list of folders from a given directory in php or javascript. for example i want to display in a page the list of folders in my c:\Program Files\. Thanks in advance.

Member Avatar for newbie26
0
319
Member Avatar for newbie26

hi please help me..how can i add checkbox in a listview? i already set the properties of listview checkboxes to TRUE. but it appears in the first column..i wanted it on the last column.. is it possible?? or the other way: programmatically move the first column (with checkbox) to the …

Member Avatar for newbie26
0
263
Member Avatar for newbie26

hi. how can i determine the work week number based on the date inputted by the user? for example, user selects May 27, 2013 (from a date picker), and when he clicked the command button, it will display the work week number. the result will be 22. thanks in advanced.

Member Avatar for rishif2
0
110
Member Avatar for newbie26

hi..i have new project. PRODUCTION TRACEABILITY SYSTEM.it will trace the materials from one process to another up to shipment.this will also uses barcode scanner and barcode printer. Do you have any idea how can i start?? Thank You.

Member Avatar for tinstaafl
0
110
Member Avatar for newbie26

is there any way i can send a notification to other pc through system tray pop up balloon using javascript? any code samples??thanks.

Member Avatar for noelthefish
0
295
Member Avatar for newbie26

hey.can someone help me? i tried executing calc.exe and notepad.exe from browser using javascript but it doens't work. like this: <script language="javascript" type="text/javascript"> function runApp() { var shell = new ActiveXObject("WScript.shell"); shell.run("notepad.exe", 1, True); } </script> or using this: System.Diagnostics.Process.Start("C:\\WINDOWS\\system32\\calc.exe"); none of the above code works. no erros were displayed …

Member Avatar for pritaeas
0
855
Member Avatar for newbie26

hey..can somebody help me? how can i make this work? one pc has a vb6 application which added a record in the database (mysql) and when he/she had already added a record, a pop up message will show to the another pc that a new record has been added to …

Member Avatar for AndreRet
0
97
Member Avatar for newbie26

hey..can someone help me?? i have a html/php file with a command button and when i clicked it, it will run the exe file of a vb6 application. how can i do this?can i have sample code?? thanks in advance.

Member Avatar for newbie26
0
474
Member Avatar for newbie26

hey..can somebody help me. how can i display the days based on the workweek inputted by the user? example..i have a textbox and user will input what work week he wants to view. and on click event of a submit button, the days will be displayed in a table starting …

Member Avatar for blocblue
0
286
Member Avatar for newbie26

hi.how can i filter dates from the database in crystal report syntax? i tried {tblname.datetimefield} >= format(text1,"yyyy-mm-dd") and (tblname.datetimefield} <= format(text2,"yyyy-mm-dd"). but this gives me error, "a date is required here". my database field is in datetime data type.with format 0000-00-00 i also tried Date({tblname.datetimefield} )>= format(text1,"yyyy-mm-dd") and Date({tblname.datetimefield} <= …

Member Avatar for newbie26
0
165
Member Avatar for newbie26

hey..how can i add a time picker in php/html??? where in i can edit or adjust the hour and minutes?? and when i already adjust the time, the succeeding text boxes will automatic increment the minutes by one. i need this urgent for my project. thanks

Member Avatar for newbie26
0
231
Member Avatar for newbie26

how to delete all files in .recycle folder in linux suse using putty? i tries using " rm -rf .local/share/Trash/* " *but it doesn't work. hoping for any response.* another question..is the .recycle folder in linux server eats up some space in the partition in the server?? tnx..

Member Avatar for newbie26
0
481
Member Avatar for newbie26

hi.. im trying to export crystal report to excel. the export toolbar already appears.the crsytal report viewer is working properly.i can generate the report i want. but when i opened the excel file being exported,it shows blank worksheet, no data is being displayed.even headers and footers. im using cr 8 …

Member Avatar for hemant3080
0
63
Member Avatar for newbie26

hi. can anyone help me on how to create a spider web graph in vb6. is it possible? my client wants a spider web graph not the usual bar/line/pie chart. thanks in advance.

Member Avatar for newbie26
0
116
Member Avatar for newbie26

[QUOTE=mb01a;1655781]Let me think about that .. How about - [code] dim sql as string sql = "select tablename.* from tablename limit 5" ' other things you'll need are defined elsewhere in your program [/code] Now, you'll need to add the code that connects to mysql, then open the recordset and …

Member Avatar for newbie26
0
355
Member Avatar for newbie26

hey everyone.i have a project that requires the use of a barcode scanner then apply it to a vb6 application i dont know how to do this. the barcode scanner will read the barcode from the id of an employee. then after reading it, all the details of that employee …

Member Avatar for newbie26
0
1K
Member Avatar for newbie26

im working on a password verification(php) form when the user wants to change his/her password. new password will be typed twice for confirmation. if the passwords didn't match, a message box will appear (javascript). it already worked but my problem is when that message box appears, all the other fields …

Member Avatar for newbie26
0
140
Member Avatar for newbie26

hi..can anyone help me to develop a simple login program before user can use the internet explorer?? this is because i want to track the name who uses the internet for that particular time span.and will be saved to the database. it may include login and logut. just for traceability …

0
55
Member Avatar for newbie26

hey..how can i add combo box in listview? it will be depending on the records that will be displayed when i ran a query from mysql. any sample codes??thanks in advance.

0
60
Member Avatar for newbie26

how can i disable printing a webpage using PHP or Javascript?? any code?? my system will go like this: the user can print the webpage (html) only once and then when he/she will attempt to print again that page, there will be an alert or message that he/she can't print …

Member Avatar for Biiim
0
2K
Member Avatar for newbie26

hey.can someone help me..??? how can i filter records from the database depending on the length of each record??? example..i only want to display records with the length of the fieldname lastname <> 5. what is the formula for this using crystal report?? im currently using this: length({tablename.fieldname}) <> 5 …

0
53
Member Avatar for newbie26

When I type in: "mysqladmin -u root -p" and enter the password I get reset I get the message: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

Member Avatar for rch1231
0
193
Member Avatar for newbie26

please help me!!! im restarting the mysql server from putty: Empty pid file /var/lib/mysql/mysqld.pid for /usr/sbin/mysqld when i checked mysql status, unused running unused running what's the problem?? im using putty in configuring mysql server thanks in advance.

Member Avatar for rch1231
0
74
Member Avatar for newbie26

how to increase my mysql databse server partitioned in /var/lib/mysql using putty?? my server is linux open suse. can i have a step by step procedure??thnks.

Member Avatar for smantscheff
0
215

The End.